/* ======================
   RESET
====================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* ======================
   TOP STRIP
====================== */
.top-strip {
  background-color: #002046
;
  color: #ffffff;
  min-height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  font-size: 14px;
}

.payout-text {
  font-weight: bold;
}

.call-link {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
}

.call-link:hover {
  text-decoration: underline;
}

/* ======================
   HEADER / NAVBAR
====================== */
.site-header {

  margin-top: 0;
  background-color: #ffffff;

  /* 🔥 JusticeClaims-style shadow */
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.30),
    0 2px 30px rgba(0, 0, 0, 0.08);

  z-index: 50;
}




.nav-container {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 40px;
}

/* ======================
   STICKY TOP STRIP
====================== */
.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* ======================
   STICKY HEADER
====================== */
.site-header {
  position: fixed;
  top: 40px;                 /* height of top-strip */
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 999;

  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Shadow appears on scroll */
.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
body {
  padding-top: 150px; /* top-strip + header height */
}

/* ======================
   LOGO (DESKTOP – WORKING LOGIC)
====================== */
.logo {
  position: absolute;
  left: 5px;
  top: -5px;   /* 🔥 moved DOWN */
}


.logo img {
  height: 140px;
  width: auto;
}



/* ======================
   NAV MENU (DESKTOP)
====================== */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: 20px;
  list-style: none;
}

/* Top-level nav links */
.nav-menu > a,
.nav-dropdown > .nav-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #002046;
  text-decoration: none;
  position: relative;
}

/* Underline animation */
.nav-menu > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  background-color: #1a7f5a;
  transition: width 0.3s ease;
}


/* Hover underline */
.nav-menu > a:hover::after,
.nav-dropdown:hover > .nav-link::after {
  width: 100%;
}

/* Hover color */
.nav-menu > a:hover,
/* Hover only when mouse is actually over link */
.nav-dropdown > .nav-link:hover {
  color: #1a7f5a;
}


.nav-menu,
.nav-dropdown {
  align-items: center;
}


/* Active Home link */
body.home .nav-menu > a.home-link {
  color: #1a7f5a;
}

/* ======================
   DROPDOWN
====================== */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
}

/* Dropdown container */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  min-width: 240px;
  padding: 8px 0;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}

/* Show dropdown */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 10px 20px;

  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;

  color: #002046;
  text-decoration: none;
  white-space: nowrap;
}

/* Dropdown hover */
.dropdown-menu a:hover {
  background: #f4f7fb;
  color: #1a7f5a;
}

/* Active dropdown ONLY on About page */
body.page-about .dropdown-menu a.active
{
  color: #1a7f5a;
  background: #f4f7fb;
}

/* ======================
   ACTIVE NAV STATES (BY PAGE)
====================== */

/* Home */
body.home .nav-home {
  color: #1a7f5a;
}

/* About */
body.page-about .nav-about {
  color: #1a7f5a;
}

/* Claims */
body.page-claims .nav-claims {
  color: #1a7f5a;
}



/* ======================
   DROPDOWN ACTIVE STATE
====================== */

/* Dropdown item active (used on About / Claims sections) */
.dropdown-menu a.active {
  color: #1a7f5a;
  background: #f4f7fb;
}

/* About page: top-level About label active */
body.page-about .nav-about {
  color: #1a7f5a;
}

/* Claims page: top-level Claims label active */
body.page-claims .nav-claims {
  color: #1a7f5a;
}


/* ======================
   HAMBURGER (DESKTOP HIDDEN)
====================== */

.menu-toggle {
  display: none;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: #002046;
  border-radius: 2px;
}



/* ======================
   HERO IMAGE (FULL, NO CROP)
====================== */
.hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* REAL IMAGE — NO CROPPING */
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-image {
  min-height: 80vh;          /* JusticeClaims style */
  display: flex;
  align-items: center;
}


/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 34, 61, 0.85),
    rgba(14, 34, 61, 0.55),
    rgba(14, 34, 61, 0.25)
  );
}

/* CONTENT */
.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;

max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;

  display: flex;
  align-items: center;
 justify-content: flex-start;
  gap: 40px;

  color: #ffffff;
}



/* TEXT */
.hero-inner h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-inner p {
  font-size: 22px;
  line-height: 1.90;
  max-width: 700px;
  font-weight: 400;
  letter-spacing: 0.2px;
  opacity: 0.92;
}
.hero-inner p {
  border-left: 3px solid rgba(255,255,255,0.4);
  padding-left: 18px;
}

.hero-content {
  margin-top: -450px;   /* moves heading + text + CTA UP */
}
.hero-content {
  margin-left: -130px;   /* 🔥 moves content LEFT */
}

.hero-text {
  max-width: 520px;
}




/* CTA */
.hero-cta {
  background-color: #ffcc00;
  color: #002046
;
  padding: 16px 38px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.hero-cta:hover {
  background-color: #e6b800;
}

/* ==========================
   HERO FORM – POSITION SAFE
========================== */
.hero-form h3 {
  white-space: nowrap;        /* 🔥 prevents line break */
  overflow: hidden;
  text-overflow: ellipsis;    /* safety if screen is too small */

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;

  margin-bottom: 14px;
}


.hero-form { align-self: 
  flex-start; /* move up */ 
  transform: translate(130px, 20px); /* right + up */ 
  margin-right: -50px; /* hug edge */ }

.hero-form {
  background: rgba(255, 255, 255, 0.05); /* 🔥 more transparent */
}
.hero-form {
  backdrop-filter: blur(6px); /* 🔥 was 14–16px */
}
.contact-form-box.hero-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}


.select-question {
  display: block;
  margin-bottom: 6px;          /* aligns with inputs */
  font-size: 8px;             /* matches placeholder scale */
  font-weight: 400;            /* 🔥 NOT bold */
  letter-spacing: 0.2px;

  color: rgba(255,255,255,0.65);
  line-height: 1.35;
}


/* Dropdown base */
.hero-form select {
  width: 100%;
  padding: 12px 44px 12px 12px;
  font-size: 14px;
  color: #ffffff;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 4px;

  appearance: none;
  cursor: pointer;

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.08),
    0 2px 6px rgba(0,0,0,0.15);

  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-form select:focus {
  border-color: #ffcc00;
  box-shadow:
    0 0 0 1px rgba(255,204,0,0.4),
    0 4px 12px rgba(0,0,0,0.25);
}

.hero-form {
  position: relative;
}

.hero-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, #ffcc00 50%),
    linear-gradient(135deg, #ffcc00 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 52%,
    calc(100% - 14px) 52%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}



/* ======================
   TRUST STRIP – DARK BLUE PREMIUM
====================== */

/* ======================
   TRUST STRIP – FULL WIDTH
====================== */

.trust-strip {
  width: 100vw;                  /* 🔥 force full viewport width */
  margin-left: calc(-50vw + 50%);/* 🔥 break out of parent container */
  background-color: #002046;     /* theme dark blue */
  padding: 56px 0;
}

/* CONTENT CENTERED */
.trust-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* CARD */
/* ICON – LARGE + PREMIUM FLIP */
.trust-card {
  flex: 1;
  text-align: center;

  display: flex;                /* 🔥 FIX */
  flex-direction: column;       /* icon on top, text below */
  align-items: center;
  justify-content: center;

  cursor: default;
  perspective: 1000px;
}
.trust-card i {
  font-size: 64px;
  margin-bottom: 12px;

  background: linear-gradient(
    135deg,
    #ffcc00,
    #f2b705
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  display: block;               /* 🔥 important */
  transform-style: preserve-3d;
  transition: transform 0.8s ease, filter 0.4s ease;
}


/* FLIP ON HOVER */
.trust-card:hover i {
  transform: rotateY(180deg) scale(1.08);
  filter: drop-shadow(0 14px 26px rgba(255,204,0,0.45));
}

.trust-card span {
  display: block;               /* 🔥 forces new line */
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}






/* FORM CONTAINER */
/* ======================
   HERO FORM – GLASS STYLE
====================== */





/* ======================
   AUTHORITY + STATS
====================== */
.authority-section {
  padding-top: 40px !important; 
      /* pull stats upward */
}

.authority-section {
  background: #ffffff;
  padding: 40px 0 10px;
}

.authority-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  
}

/* AUTHORITY TEXT */
.authority-text {
  max-width: 1500px;
  margin-bottom: 10px;
}

.authority-text h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 35px;
  font-weight: 700;
  color: #002046;
  line-height: 1.25;
  margin-bottom: 5px;
}

.authority-text p {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: #4a5d73;
  max-width: 1300px;
}


/* ======================
   STATS
====================== */


.stats-section {
  padding-top: 5px !important;     /* pull stats upward */
}

.stats-container {
  margin-top: 0px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

/* NUMBER */
.stat-box h2 {
  font-size: 56px;
  font-weight: 800;
  color: #0b2c5d;
  margin-bottom: 5px;
}

/* TITLE */
.stat-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2c5d;
  margin-bottom: 12px;
}

/* DESCRIPTION */
.stat-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6b82;
  max-width: 320px;
  margin: 0 auto;
}




/* ======================
   JUSTICECLAIMS STYLE – CLAIMS
====================== */
.claims-jc {
  padding-top: 30px !important;     /* pull stats upward */
}

.claims-jc {
  
  background: #ffffff;
  padding: 10px 0;
}

.claims-jc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HEADER */
.claims-jc-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.claims-jc-header h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #002046;
  line-height: 1.25;
  margin-bottom: 16px;
}

.claims-jc-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5d73;
}





/* ======================
   CLAIMS SECTION (PREMIUM)
====================== */

/* GRID */
.claims-jc-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;

  display: flex;
  flex-direction: column;
  gap: 50px;                 /* 🔥 space between cards */
}

/* CARD – HORIZONTAL */
.claims-jc-card.horizontal {
  display: flex;
  align-items: stretch;

  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;

  box-shadow:
    0 45px 90px rgba(11, 44, 93, 0.35),   /* 🔥 DARK */
    0 18px 40px rgba(0, 0, 0, 0.25);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.claims-jc-card.horizontal:hover {
  transform: translateY(-8px);
  box-shadow:
    0 65px 120px rgba(11, 44, 93, 0.45),
    0 25px 55px rgba(0, 0, 0, 0.35);
}

/* IMAGE */


.claims-jc-card.horizontal .claims-jc-image {
  width: 42%;
  position: relative;
  overflow: hidden;
  border-radius: 14px 0 0 14px;
}


.claims-jc-card.horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 🔥 cinematic starting position */
  transform: scale(1.25) translateX(0) translateY(0);
  transition:
    transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
}
 .claims-jc-card.horizontal:hover img {
  transform: scale(1.38) translateX(-4%) translateY(-3%);
}



/* IMAGE OVERLAY */
.claims-jc-card.horizontal .claims-jc-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 44, 93, 0.15),
    rgba(11, 44, 93, 0.45)
  );
}


/* CONTENT */
.claims-jc-card.horizontal .claims-jc-content {
  width: 58%;
  padding: 34px 38px;        /* 🔥 reduced padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.claims-jc-card.horizontal h3 {
  font-size: 28px;
  font-weight: 700;
  color: #002046;
  margin-bottom: 14px;
}

.claims-jc-card.horizontal p {
  font-size: 17px;
  line-height: 1.65;
  color: #4a5d73;
  margin-bottom: 20px;
  max-width: 520px;
}

/* LINK */
.claims-jc-card.horizontal a {
  font-size: 16px;
  font-weight: 600;
  color: #002046;
  text-decoration: none;
  position: relative;
  width: fit-content;
}

.claims-jc-card.horizontal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: #ffcc00;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.claims-jc-card.horizontal a:hover::after {
  transform: scaleX(1);
}




/* ======================
   SPECIALTIES – FULL WIDTH CONNECTED
====================== */


.specialties-section {
  width: 100vw;
  margin: 0;
  padding: 10px 0 30px;

  background-color: #002046
;

  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.specialties-section {
  padding: 10px 0 40px;   /* ⬅️ was too tall */
}

.specialties-heading {
  margin-bottom: 10px;   /* ⬅️ closer to subheading */
}

.specialties-heading h2 {
  font-size: 40px;
  margin-bottom: -5px;   /* ⬅️ reduced */
}

.specialties-heading p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 40px;   /* ⬅️ less gap before boxes */
  line-height: 1.6;
}


/* INNER CONTAINER (ONLY THIS IS LIMITED) */
.specialties-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}


/* HEADING */
.specialties-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

/* SUBHEADING */
.specialties-subtitle {
  font-size: 18px;
  color: #dbe6f6;
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* GRID */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;   /* ⬅️ reduced gap between boxes */
}


/* CARD */
.specialty-card {
  background: #ffffff;
  border-radius: 18px;

  padding: 10px 10px 15px;  /* ⬅️ shorter card */
  min-height: 280px;        /* ⬅️ controls height */

  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 50px 100px rgba(0,0,0,0.45);

  transition: transform 0.45s ease, box-shadow 0.45s ease;
}


/* IMAGE */
.specialty-card img {
  width: 200px;          /* ⬅️ slightly smaller */
  height: auto;
  margin-bottom: -10px;  /* ⬅️ less gap */
}

.specialty-card p {
  margin-top: 1px;
  font-size: 14.5px;
  line-height: 1.55;    /* ⬅️ tighter text */
  margin: 0;
  color: #4a5d73;
}

/* TITLE */
.specialty-card h4 {
  font-size: 18px;
  margin-bottom: 1px;   /* ⬅️ tighter */
  color: #002046;
}


/* TEXT */
.specialty-card p {
  font-size: 15px;
  color: #5a6b82;
  line-height: 1.7;
}

/* HOVER */
.specialty-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 70px 70px rgba(0,0,0,0.55);
}



/* =====================================
   GLOBAL SECTION BACKGROUND SYSTEM
   (ADD AT VERY END OF CSS)
===================================== */

/* Reset body edge gaps */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ALL SECTIONS DEFAULT */
section {
  width: 100%;
  position: relative;
}

/* SOFT BACKGROUND – premium faint */
.section-soft {
  width: 100%;
  background: #bfd1ef;   /* subtle premium */
  padding: 80px 0;
}

/* DARK BLUE BACKGROUND – theme */
.section-dark {
  width: 100%;
  background: #002046;
  color: #ffffff;
  padding: 80px 0;
}

/* EXTRA SOFT (OPTIONAL) */
.section-softer {
  width: 100%;
  background: #eef2f7;
  padding: 80px 0;
}

/* COMMON INNER CONTAINER – CENTERED */
.section-soft > div,
.section-dark > div,
.section-softer > div {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* REMOVE ACCIDENTAL WHITE GAPS */
.section-soft + .section-soft,
.section-dark + .section-dark,
.section-soft + .section-dark,
.section-dark + .section-soft {
  margin-top: 0;
}
/* ==============================
   FORCE FULL-WIDTH SECTIONS
   (FINAL OVERRIDE)
============================== */

.section-soft,
.section-dark,
.section-softer {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}


/* ======================
   PROCESS STRIP – PREMIUM HORIZONTAL
====================== */

.process-strip {
  padding: 5px 0;
  
}

.process-strip-inner {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.process-strip-header {
  text-align: center;
  margin-bottom: 10px;
}

.process-strip-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #002046;
  margin-bottom: 5px;
}

.process-strip-header p {
  font-size: 20px;
  color: #555;
  font-weight: 500;
}


/* ==========================
   PROCESS ORBS – PREMIUM STRIP
========================== */

.process-orbs {
  
  padding: 10px 0;
}

.process-orbs-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* ORB */
.process-orb {
  flex: 1;
  text-align: center;
  cursor: pointer;
}

/* CIRCLE */
.orb-circle {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
  background: #002046;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.orb-circle img {
  width: 80px;
  filter: brightness(0) invert(1);
  transition: transform 0.35s ease;
}

/* META */
.orb-meta {
  margin-top: 12px;
}

.orb-step {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0b2c5d;
}

.orb-meta h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 4px 0 0;
  color: #0b2c5d;
}

/* DESCRIPTION (HIDDEN INITIALLY) */
.orb-meta p {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin-top: 6px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* ==========================
   HOVER EFFECT
========================== */

.process-orb:hover .orb-circle {
  background: #1a7f5a;
  box-shadow: 0 10px 30px rgba(11,44,93,0.15);
}

.process-orb:hover .orb-circle img {
  filter: none;
  transform: scale(1.15);
}

.process-orb:hover .orb-meta p {
  opacity: 1;
  max-height: 120px;
}

/* ==========================
   SOFT GLOW PULSE – HOVER ONLY
========================== */

.process-orb:hover .orb-circle {
  animation: orbGlow 1.6s ease-in-out infinite;
}

@keyframes orbGlow {
  0% {
    box-shadow:
      0 12px 28px rgba(11,44,93,0.35),
      0 0 0 rgba(11,44,93,0.0);
  }
  100% {
    box-shadow:
      0 18px 40px rgba(250, 247, 51, 0.45),
      0 0 14px rgba(11,44,93,0.35);
  }
  100% {
    box-shadow:
      0 12px 28px rgba(11,44,93,0.35),
      0 0 0 rgba(11,44,93,0.0);
  }
}



/* ==========================
   PROCESS PAGE – STATIC DISPLAY
========================== */

.process-page {
  background-color: #bfd1ef;
}


.process-page .process-orbs-inner {
  gap: 40px;
}

/* ORB */
.process-page .process-orb {
  cursor: default;
}

/* CIRCLE – softer, flatter premium look */
.process-page .orb-circle {
  background: linear-gradient(145deg, #0b2c5d, #002046);
  box-shadow: 0 12px 28px rgba(11,44,93,0.25);
  animation: none;
}

/* ICON – always visible */
.process-page .orb-circle img {
  filter: none;
  transform: none;
}

/* META TEXT */
.process-page .orb-meta {
  margin-top: 16px;
}

/* STEP */
.process-page .orb-step {
  font-size: 12px;
  letter-spacing: 1.2px;
  opacity: 0.85;
}

/* TITLE */
.process-page .orb-meta h4 {
  font-size: 20px;
  margin-top: 6px;
}

/* DESCRIPTION – ALWAYS VISIBLE */
.process-page .orb-meta p {
  opacity: 1;
  max-height: none;
  overflow: visible;
  margin-top: 10px;
  color: #333;
}





/* ==========================
   CONTACT – FULL WIDTH GLASS
========================== */

.contact-bg {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: url("images/Claim.jpeg") center / cover no-repeat;
  padding: 80px 0;
  overflow: hidden;
}


/* DARK OVERLAY */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 36, 0.82);
}

/* WRAPPER */
.contact-bg-inner {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  z-index: 2;
}

/* ==========================
   LEFT CONTENT
========================== */

.contact-left {
  color: #ffffff;
}

.contact-eyebrow {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffcc00;
  margin-bottom: 6px;
  display: inline-block;
}

.contact-left h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255,255,255,0.9);
}

.contact-features {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.contact-features li {
  font-size: 14.5px;
  color:#ffcc00;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ==========================
   GLASS FORM – PREMIUM FLAT
========================== */

.contact-form-box {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 16px;
  padding: 30px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.25);
}

/* TITLE */
.contact-form-box h3 {
  font-size: 21px;
  font-weight: 800;
  color: #ffcc00;
  margin-bottom: 16px;
}

/* FORM STACK */
.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* REMOVE BOX FEEL */
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  border-radius: 0;
  padding: 12px 4px;
  font-size: 14.5px;
  color: #ffffff;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* PLACEHOLDER */
.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

/* SELECT */
.contact-form-box select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 55%,
    calc(100% - 11px) 55%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

/* OPTION COLOR */
.contact-form-box select option {
  color: #111;
}

/* TEXTAREA */
.contact-form-box textarea {
  min-height: 90px;
  resize: none;
}

/* FOCUS – SOFT GLOW */
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border-bottom-color: #ffcc00;
  box-shadow: 0 6px 20px rgba(255,204,0,0.25);
}

/* BUTTON – SOLID PREMIUM */
.contact-form-box button {
  margin-top: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffcc00, #ffb700);
  color: #081f42;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255,204,0,0.45);
}




.section-pad {
  padding: 40px 0;
}

.authority-container,
.stats-container,
.claims-jc-container,
.specialties-container,
.process-strip-inner,
.contact-bg-inner {
  margin-bottom: 0;
}

/* ======================
   FOOTER
====================== */

/* ======================
   SITE FOOTER
====================== */
.site-footer {
  background: #002046; /* navy blue */
  color: #ffffff;
  padding: 40px 20px 40px;
  font-family: 'Arial', sans-serif;
  position: relative;
}

/* FOOTER INNER GRID */
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr; /* logo-left | headline+links-center | hours+social-right */
  align-items: start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* --------- LOGO + ADDRESS --------- */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  width: 300px; /* keep big */
  height: auto;
  max-width: none;
  margin-top: -100px;
  margin-left: -150px;
}

.footer-address {
  font-size: 15px;
  line-height: 1.5;
  color: yellow !important;
  margin-left: -120px;
  margin-top: -120px;
}

/* --------- HEADLINE --------- */
.footer-inner h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px 0;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin-top: 10px;
  margin-left: -80px;
}

/* --------- LINKS INLINE --------- */
.footer-links-inline {
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-left: -80px;
}

.footer-links-inline a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0 6px;
}

.footer-links-inline a:hover {
  color: #ffcc00;
}

/* DIVIDER LINES BETWEEN LINKS */
.footer-links-inline a:not(:last-child)::after {
  content: "|";
  color: #ffcc00;
  margin-left: 5px;
  margin-right: 5px;
}






/* --------- HOURS + FOLLOW (CENTERED CONTENT) --------- */
.footer-right {
  display: flex;
  flex-direction: row;        /* side by side */
  justify-content: center;    /* center group horizontally */
  align-items: flex-start;    /* align from top */
  gap: 40px;
  color: #fff;
  margin-top: -10px;
}

/* Each block */
.footer-right .footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;        /* 🔥 center content */
  text-align: center;         /* 🔥 center text */
}

/* Headings */
.footer-right h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

/* Text */
.footer-right p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* Phone link */
.footer-right a {
  color: #00aaff;
  text-decoration: none;
}

.footer-right a:hover {
  color: #ffcc00;
}

/* SOCIAL ICONS */
.footer-right .footer-social {
  display: flex;
  gap: 14px;
  justify-content: center;    /* 🔥 center icons */
}

.footer-right .footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-right .footer-social a:hover {
  background: #ffcc00;
  color: #002046;
}


/* --------- BOTTOM --------- */
.footer-bottom {
  margin-top: 40px;
  padding: 18px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-left: 80px;
  }

  .footer-brand {
    align-items: center;
    justify-content: center;
    margin-left: 50px;
    
  }

  .footer-right {
    align-items: center;
    margin-left: -70px;
  }

  .footer-links-inline {
   
    justify-content: center;
    gap: 6px;
  }
}










.top-strip {
  position: relative;
  background: #002046;
  color: #fff;
  padding: 8px 20px;
  height: 44px;

  display: flex;
  align-items: center;
}

/* CENTER TEXT – TRUE CENTER */
.top-strip-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* RIGHT ICONS */
.top-strip-right {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.top-strip {
  background: #002046;
  color: #fff;
  padding: 8px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-strip-right {
  display: flex;
  gap: 10px;
}

/* ICON STYLE – SAME AS FOOTER */
.top-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 14px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.top-icon:hover {
  background: #ffcc00;
  color: #0b2c5d;
}




/* ======================
   PAGE DIVIDER STRIP
====================== */
.page-divider-strip {
  height: 1px;
  background: #ffffff;
  box-shadow: 50 10px 25px rgba(0,0,0,0.12);
  position: relative;
  z-index: 5;
}

/* ======================
   ABOUT – JUSTICE STYLE
====================== */
.about-jc {
  background: #bfd1ef;
  padding: 60px 0;
}

.about-jc-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.about-jc-text {
  color: #002046;
}

.about-eyebrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #1a7f5a;
  margin-bottom: 14px;
}

.about-jc-text h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #2f3e55;
  margin-bottom: 18px;
  font-weight: 500;
}

.about-jc-text p {
  font-size: 18px;
  line-height: 1.75;
  color: #4a5d73;
}

/* RIGHT IMAGE */
.about-jc-image {
  position: relative;
}

.about-jc-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  display: block;
}

/* subtle overlay depth */
.about-jc-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  pointer-events: none;
}








/* ======================
   ABOUT – OUR MISSION
====================== */
.about-mission {
  background: #cad6eb;
  padding: 60px 0;
}

.about-mission-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.about-mission-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 28px 55px rgba(0,0,0,0.22);
}

/* TEXT */
.about-mission-text {
  color: #002046;
}

.about-mission-text h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-mission-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #2f3e55;
  margin-bottom: 16px;
  font-weight: 500;
}

.about-mission-text p {
  font-size: 18px;
  line-height: 1.50;
  color: #002046;
  margin-bottom: 10px;
}


/* ======================
   ABOUT – OUR COMMITMENT
====================== */
.about-commitment {
  background: #aac6eb;
  padding: 60px 0;
}

.about-commitment-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr; /* 🔥 content left, image right */
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.about-commitment-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 28px 55px rgba(0,0,0,0.22);
}

/* TEXT */
.about-commitment-text {
  color: #002046;
}

.about-commitment-text h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-commitment-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #2f3e55;
  margin-bottom: 22px;
  font-weight: 500;
}

/* COMMITMENT POINTS – CLEAN TEXT BLOCK */
.commitment-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.commitment-points li {
  padding-left: 0;           /* 🔥 no indent */
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.55;
  color: #002046;
}

/* REMOVE custom bullets completely */
.commitment-points li::before {
  content: none;
}

/* Strong headings inside text */
.commitment-points strong {
  font-weight: 700;
  display: inline;           /* inline so text flows naturally */
}


/* ======================
   WHY FAMILIES TRUST US
====================== */
.trust-section {
  background: #becde7;
  padding: 65px 0;
}

.trust-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr; /* 🔥 image left, text right */
  gap: 70px;
  align-items: center;
}

/* IMAGE */
.trust-image img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 28px 55px rgba(0,0,0,0.22);
}

/* CONTENT */
.trust-content {
  color: #002046;
}

.trust-title {
  font-size: 42px;
  font-weight: 700;
  margin: 6px 0 14px;
}

.trust-text {
  font-size: 18px;
  line-height: 1.6;
  color: #002046;
  max-width: 820px;
}




.values-section {
  background: #002046;
  color: #ffffff;
  
  
  padding: 50px 0 55px;   /* 🔥 tighter */
}



.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}



/* HEADINGS */
.values-eyebrow {
  
  font-size: 18px;
  color: #1a7f5a;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 4px;
}

.values-title {
  font-size: 44px;
  
 margin: 6px 0 10px;   /* 🔥 was large */
}

.values-intro {
  max-width: 1200px;
 
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0 auto 30px; 
}

/* ROW */
.values-row {
  display: flex;
  justify-content: center;
  gap: 60px;
}

/* ITEM */
.value-item {
  max-width: 500px;
  position: relative;
  transition: transform 0.35s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

/* ICON */
.value-icon {
  position: relative;
  margin-bottom: 12px;
}

.value-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 2px;
  height: 28px;
  background: rgba(255,255,255,0.35);
  transform: translateX(-50%);
}

.value-icon img {
  width: 90px;                 /* 🔥 BIG ICON */
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.value-item:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

/* TEXT */
.value-item h4 {
  font-size: 25px;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 18px;
  line-height: 1.75;
  opacity: 0.85;
}



.why-choose {
  background: #bfd1ef;   /* light background */
  padding: 40px 0;
}

.why-choose-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.why-eyebrow {
  font-size: 16px;
  letter-spacing: 2px;
  color: #1a7f5a;
  font-weight: 700;
}

.why-left h2 {
  font-size: 42px;
  margin: 10px 0 18px;
  color: #002046;
}

.why-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #425b78;
  margin-bottom: 22px;
  width: 740px;
}

.why-points {
  list-style: none;
  padding: 0;
}

.why-points li {
  font-size: 18px;
  margin-bottom: 10px;
  color: #002046;
  font-weight: 500;
}



/* IMAGE CARD */

/* IMAGE */
.about-commitment-image img {
  width: 90%;
  box-shadow: none;
  display: block;
  margin-left: 50px;
 
}



html {
  scroll-behavior: smooth;
}
#overview,
#who-we-are,
#why-choose-us {
  scroll-margin-top: 140px; /* match header height */
}


/* active dropdown item */
.dropdown-menu a.active {
  color: #1a7f5a;
  background: #f4f7fb;
}



.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 1000;
}

.site-header {
  position: fixed;
  top: 40px; /* exact height of top-strip */
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 999;

  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
body {
  padding-top: 150px; /* top-strip + header */
}
.site-header {
  height: 110px;
}

.top-strip {
  height: 40px;
}

/* ======================
   FIX HOME PAGE SHRINK
====================== */

.hero-image,
.hero-image * {
  font-size: initial;
}

html, body {
  font-size: 16px !important;
  transform: none !important;
  
  overflow-x: hidden;
}
.hero-image {
  overflow: hidden;
}
body {
  font-size: 16px;
}

body * {
  font-size: inherit;
}

/* ======================
   HARD DROPDOWN COLOR RESET
   (Stops scroll bleed 100%)
====================== */

/* Dropdown links NEVER inherit scroll colors */
/* Dropdown base */
.dropdown-menu a {
  color: #002046;
}

/* Hover */
.dropdown-menu a:hover {
  color: #2bb673;
  background: #f4f7fb;
}

/* Active (ALL pages: About + Claims) */
.dropdown-menu a.active {
  color: #2bb673;
  background: #f4f7fb;
}



/* ======================
   CLAIM PROCESS SECTION
====================== */

.claim-process-section {
  background: #cad6eb;
  padding: 45px 0;
}

.claim-process-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;

  align-items: flex-start; /* 🔥 important fix */
}

/* Eyebrow */
.eyebrow {
  display: block;
  margin-bottom: 10px;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a7f5a;
}

/* LEFT TEXT */
.claim-process-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0b2c5d;
  margin-bottom: 22px;
}

.claim-process-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #5a6b82;
  margin-bottom: 18px;
  max-width: 660px;
}

/* CTA */
.btn-primary {
  display: inline-block;
  margin-top: -45px;
  padding: 14px 36px;
  margin-left: 140px;

  background: #1a7f5a;
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-primary:hover {
  background: #14694a;
  transform: translateY(-2px);
}

/* RIGHT IMAGE */
.claim-process-image {
  margin-top: 40px; /* optical alignment */
}

.claim-process-image img {
  width: 100%;
  max-width: 520px;

}
#claim-process,
#commercial-claims,
#residential-claims {
  scroll-margin-top: 150px; /* header + top-strip height */
}


/* ======================
   HARD DROPDOWN COLOR RESET
   (Stops scroll bleed 100%)
====================== */

/* Base dropdown link color — ALWAYS blue */
.dropdown-menu a {
  color: #002046 !important;
  background: transparent;
}

/* Hover ONLY (all pages) */
.dropdown-menu a:hover {
  color: #2bb673 !important;
  background: #f4f7fb;
}

/* ======================
   ACTIVE STATES (PAGE SCOPED)
====================== */

/* About page active dropdown */
body.page-about .dropdown-menu a.active {
  color: #2bb673 !important;
  background: #f4f7fb;
}

/* Claims page active dropdown */
body.page-claims .dropdown-menu a.active {
  color: #2bb673 !important;
  background: #f4f7fb;
}


/* ======================
   HOME PAGE DROPDOWN RULES
====================== */

/* Home page: ignore ACTIVE state */
body.home .dropdown-menu a.active:not(:hover) {
  color: #002046 !important;
  background: transparent !important;
}

/* Home page: hover MUST still work */
body.home .dropdown-menu a:hover {
  color: #2bb673 !important;
  background: #f4f7fb;
}

/* Commercial Claims dropdown active */
body.page-commercial .dropdown-menu a[href="commercial-claims.html"] {
  color: #2bb673 !important;
  background: #f4f7fb;
}


/* ======================
   CLAIMS HERO
====================== */

.claims-hero {
  background: #cad6eb;
}

.claims-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.claims-hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  color: #0b2c5d;
  margin-bottom: 20px;
}

.claims-hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #5a6b82;
  margin-bottom: 16px;
}

.claims-hero-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 90px rgba(0,0,0,0.40);
}
/* ======================
   COMMERCIAL SERVICES
====================== */

.commercial-services {
  background: #002046;
  padding: 90px 20px;
  color: #ffffff;
}

.services-inner {
  max-width: 1100px;
  margin: auto;
}

.services-eyebrow {
  color: #2bb673;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.commercial-services h2 {
  font-size: 40px;
  margin: 12px 0;
}

.services-sub {
  color: #cfd8e3;
  max-width: 520px;
  margin-bottom: 50px;
}

/* ======================
   ACCORDION
====================== */

.services-accordion {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.accordion-header i {
  font-size: 18px;
  color: #2bb673;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.accordion-content p {
  color: #dbe4ef;
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 24px;
  max-width: 800px;
}

/* ACTIVE STATE */
.accordion-item.active .accordion-content {
  max-height: 300px;
  opacity: 1;
}

.accordion-item.active .accordion-header i::before {
  content: "\f068"; /* minus icon */
}



.service-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.service-header {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-icon {
  font-size: 26px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.service-content p {
  color: #d7e3f3;
  padding-bottom: 20px;
  line-height: 1.6;
}

/* ACTIVE STATE */
.service-item.active .service-content {
  max-height: 300px;
}

.service-item.active .toggle-icon {
  transform: rotate(45deg); /* + becomes × */
}



/* ======================
   FIX RESIDENTIAL ALIGNMENT
   (MATCH COMMERCIAL EXACTLY)
====================== */

.res-help-dark .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 120px;
  padding-right: 20px;
}

/* Prevent accordion from stretching */
.res-accordion {
  max-width: 900px;   /* SAME as Commercial */
}



/* ======================
   COMMERCIAL CLAIMS – CLEAN ICON STYLE
====================== */

.cc-services {
  background: #bfd1ef;
  padding: 60px 0;
}

.cc-services-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.cc-image-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 90px rgba(0,0,0,0.40);
}

/* CONTENT */
.cc-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: #1a7f5a;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  display: inline-block;
}

.cc-content h2 {
  font-size: 36px;
  color: #002046;
  margin-bottom: 18px;
}

.cc-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5d73;
  max-width: 520px;
  margin-bottom: 36px;
}

/* ICON LIST */
.cc-icon-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
}

.cc-icon-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cc-icon-item i {
  font-size: 22px;
  color: #1a7f5a;
  min-width: 22px;
}

.cc-icon-item span {
  font-size: 16px;
  font-weight: 600;
  color: #002046;
}



/* ======================
   COMMERCIAL TESTIMONIAL
====================== */

.cc-testimonial {
  padding: 10px 0;
  background: #ffffff;
}

.cc-testimonial-inner {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
}

/* IMAGE */
.cc-testimonial-image {
  position: relative;
}

.cc-testimonial-image img {
  width: 160%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.40);
}

/* CARD */
.cc-testimonial-card {
  position: absolute;
  left: -120px;           /* breaks outside image */
  top: 50%;
  transform: translateY(-50%);

  background: #ffffff;
  padding: 15px 20px;
  max-width: 420px;

  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.40);
}

/* TEXT */
.cc-quote {
  font-size: 20px;
  font-weight: 600;
  color: #002046;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cc-author {
  font-size: 14px;
  font-weight: 600;
  color: #1a7f5a;
  letter-spacing: 0.4px;
}

/* ======================
   COMMERCIAL TESTIMONIAL – FIXED BALANCE
====================== */

.cc-testimonial {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden; /* allows right overflow */
}

.cc-testimonial-inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* IMAGE */
.cc-testimonial-image {
  position: relative;
  width: 220%;
  transform: translateX(120px); /* shift image right */
}

.cc-testimonial-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.18);
}

/* CARD */
.cc-testimonial-card {
  position: absolute;
  left: -120px; /* overlaps outside image */
  top: 50%;
  transform: translateY(-50%);

  background: #ffffff;
  padding: 20px 20px;
  max-width: 420px;

  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* TEXT */
.cc-quote {
  font-size: 21px;
  font-weight: 600;
  color: #002046;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cc-author {
  font-size: 14px;
  font-weight: 600;
  color: #1a7f5a;
  letter-spacing: 0.4px;
}
/* ======================
   RESIDENTIAL HERO
====================== */

.rc-hero {
  padding: 60px 0;
  background: #bfd1ef;
}

.rc-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.rc-eyebrow {
  font-size: 18px;
  font-weight: 700;
  color: #1a7f5a;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  display: inline-block;
}

.rc-hero-content h1 {
  font-size: 42px;
  color: #002046;
  margin-bottom: 18px;
}

.rc-hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5d73;
  margin-bottom: 16px;
  max-width: 520px;
}

.rc-hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.40);
}



/* ======================
   RESIDENTIAL HELP (DARK)
====================== */

.res-help-dark {
  background: #002046;
  padding: 90px 0;
  color: #ffffff;
}

.res-help-dark .eyebrow {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.res-help-dark h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}

.res-help-dark .intro {
  max-width: 720px;
  color: #d7e3f3;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* Accordion */
.res-accordion {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.res-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.res-header {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;

  font-size: 20px;
  font-weight: 600;
}


.res-icon {
  font-size: 28px;
  color: #2bb673;
  transition: transform 0.3s ease;
}

.res-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.res-content p {
  color: #dbe4ef;
  padding-bottom: 24px;
  line-height: 1.7;
  max-width: 820px;
}

/* Active */
.res-item.active .res-content {
  max-height: 300px;
}

.res-item.active .res-icon {
  transform: rotate(45deg); /* + → × */
}


/* ======================
   RESIDENTIAL TYPES
====================== */

.res-types-section {
  padding: 40px 0;
  background: #cad6eb;
}

.res-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}
/* IMAGE FIX */
.res-types-image {
  position: relative;
  left: 60px;   /* 👈 pulls image toward center */
}

/* IMAGE */
.res-types-image img {
  width: 80%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.40);
 
}

/* CONTENT */
.res-types-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #002046;
  margin-bottom: 18px;
}

.res-types-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5d73;
  max-width: 520px;
  margin-bottom: 36px;
}

/* ICON ROW */
.res-types-icons {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.res-type {
  display: flex;
  align-items: center;
  gap: 14px;
}

.res-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef6f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.res-icon i {
  font-size: 22px;
  color: #2bb673;
}

.res-type span {
  font-size: 16px;
  font-weight: 600;
  color: #002046;
}


/* ======================
   COMMERCIAL QUOTE SECTION
====================== */

.commercial-quote-section {
  padding: 40px 0;
  background: #f4f7fb;
}

.commercial-quote-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr; /* 👈 image MORE, content LESS */
  align-items: center;
  position: relative;
}

/* LEFT IMAGE */
.commercial-quote-image {
  position: relative;
}

.commercial-quote-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.40);
}

/* RIGHT CONTENT */
.commercial-quote-content {
  padding-left: 80px;
  position: relative;
}

/* QUOTE STYLE */
.commercial-quote-content blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  color: #002046;
  margin: 0 0 24px;
}

/* AUTHOR */
.quote-author {
  font-size: 15px;
  font-weight: 600;
  color: #1a7f5a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* OVERLAP EFFECT (KEY PART) */
.commercial-quote-content {
  margin-left: -120px; /* 👈 pulls text INTO image */
  background: #ffffff;
  padding: 30px 30px 30px 50px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.40);
}

/* ======================
   BLOG SUBSCRIBE SECTION
====================== */

.blog-subscribe {
  background: #bfd1ef;
  padding: 50px 0;
}

.blog-subscribe-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT */
.blog-subscribe-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #002046;
  margin-bottom: 20px;
}

.blog-subscribe-content p {
  font-size: 18px;
  color: #4a5d73;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 750px;
}

.subscribe-form {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  max-width: 460px;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #d5deea;
  border-radius: 6px;
  font-size: 15px;
}

/* SUBSCRIBE BUTTON */
.subscribe-btn,
.blog-subscribe button {
  background-color: #2bb673; /* default green */
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;

  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

/* ON HOVER → COLOR CHANGE */
.subscribe-btn:hover,
.blog-subscribe button:hover {
  background-color: #1a7f5a; /* darker green */
  box-shadow: 0 10px 24px rgba(26, 127, 90, 0.35);
}


/* RIGHT IMAGE */
.blog-subscribe-image img {
  width: 135%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  margin-left: -60px;


 
}

/* ======================
   FEATURED BLOGS
====================== */

.featured-blogs {
  background: #cad6eb;
  padding: 80px 0;
}

.featured-blogs .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.featured-header {
  margin-bottom: 50px;
}

.featured-header .eyebrow {
  color: #2bb673;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.featured-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #002046;
}

/* Stack */
.blogs-stack {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Blog Row */
.blog-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;

  background: #ffffff;
  border-radius: 18px;
 

  box-shadow:
    0 18px 45px rgba(0, 32, 70, 0.25);
}

/* Image */
.blog-row .blog-image {
  height: 100%;
}

.blog-row .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.blog-row .blog-content {
  padding: 40px;
}

.blog-row h3 {
  font-size: 24px;
  font-weight: 700;
  color: #002046;
  margin-bottom: 14px;
}

.blog-row p {
  font-size: 16px;
  line-height: 1.7;
  color: #5f6f85;
  margin-bottom: 20px;
  max-width: 560px;
}

.read-more {
  font-weight: 600;
  color: #1a7f5a;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* READ MORE */
.blog-more {
  display: none;
  margin-top: 12px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: #1a7f5a;
  text-decoration: none;
  cursor: pointer;
}

.read-more:hover {
  text-decoration: underline;
}
.blog-more {
  display: none;
  margin-top: 12px;
}

.blog-more.open {
  display: block;
}

.read-more {
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
  color: #1a7f5a;
  cursor: pointer;
}

.read-more:hover {
  text-decoration: underline;
}
.blog-row .blog-content {
  position: relative;
  z-index: 2;
}
.blog-row .blog-image {
  position: relative;
  z-index: 1;
}
.read-more {
  pointer-events: auto;
}
.blog-row .blog-image,
.blog-row .blog-image img {
  pointer-events: none;
}
.blog-row .blog-content {
  position: relative;
  z-index: 5;
}
.read-more {
  margin-top: 12px;
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a7f5a;
  cursor: pointer;
}

.read-more:hover {
  text-decoration: underline;
}
.blog-more {
  display: none;
  margin-top: 16px;
}

.blog-more.open {
  display: block;
}



.site-footer {
  clear: both;
}

.read-more {
  position: relative !important;
  z-index: 9999 !important;
  pointer-events: auto !important;
}
.blog-row,
.blog-content {
  position: relative;
  z-index: 1;
}
.blog-row::before,
.blog-row::after {
  display: none !important;
}
.blog-image,
.blog-image * {
  pointer-events: none !important;
}





/* ======================
   FAQS PAGE FIX (ISOLATED)
====================== */


/* FAQ wrapper */
.faqs-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 20px 20px;
  background-color: #002046;
}

/* FAQ heading */
.faqs-header {
  text-align: center;
  margin-bottom: 60px;
}

.faqs-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.faqs-header p {
  font-size: 18px;
  color: #c0d2ecd3;
  max-width: 720px;
  margin: auto;
}

/* FAQ section block */
.faq-group {
  margin-bottom: 70px;
  max-width: 1000px;  /* keeps content narrow */
  margin-left: auto;   /* center horizontally */
  margin-right: auto;
}


.faq-group h2 {
  font-size: 28px;
  font-weight: 700;
  color: #f2b705;
  margin-bottom: 25px;
}

/* FAQ item */
.faq-item {
  background: #c6d4e8;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.20);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: #0b2c5d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 26px;
  color: #1a7f5a;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 16px 0 22px;
  font-size: 16px;
  color: #0b2c5d;
  line-height: 1.7;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}


/* ======================
   HARD HEADER FIX
====================== */

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}


/* ======================
   FAQ ACCORDION – + / − PRO
====================== */

/* Card hover lift */
.faq-item {
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.12);
}

/* Question hover */
.faq-question {
  position: relative;
  transition: background 0.25s ease;
}

.faq-question:hover {
  background: rgba(0, 32, 70, 0.03);
}

/* ======================
   PLUS / MINUS ICON
====================== */

.faq-question span {
  position: relative;
  width: 26px;
  height: 26px;
  min-width: 26px;
}

/* horizontal bar */
.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  background: #1a7f5a;
  border-radius: 2px;
  transition: all 0.35s ease;
}

/* horizontal line */
.faq-question span::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  transform: translateY(-50%);
}

/* vertical line */
.faq-question span::after {
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  transform: translateX(-50%);
}

/* ACTIVE → MINUS */
.faq-item.active .faq-question span::after {
  opacity: 0;
  transform: scaleY(0);
}

/* ======================
   ANSWER ANIMATION
====================== */

.faq-answer {
  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

/* ======================
   ACTIVE CARD ACCENT
====================== */

.faq-item.active {
  box-shadow: 0 24px 70px rgba(26, 127, 90, 0.18);
}

/* left accent bar */
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: background 0.35s ease;
}

.faq-item.active::before {
  background: linear-gradient(
    to bottom,
    #1a7f5a,
    #34c28a
  );
}

/* ======================
   TEXT POLISH
====================== */

.faq-question {
  letter-spacing: 0.2px;
}

.faq-answer p {
  animation: fadeSlide 0.45s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ======================
   CONTACT STRIP
====================== */

.page-contact .contact-strip {
  width: 100%;
  background: #cad6eb;
  border-bottom: 1px solid #dde3ea;
}

.contact-strip-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 20px;
  gap: 20px;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #002046;
  font-weight: 600;
}

.contact-strip-item img {
  width: 60px;
  height: auto;
}


/* ======================
   CONTACT MAIN
====================== */

.page-contact .contact-main {
  padding: 2px 20px;
  background: #bfd1ef;
}

.contact-main-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.contact-content h1 {
  font-size: 46px;
  font-weight: 700;
  color: #002046;
  margin-bottom: 30px;
}

.contact-hours-box {
  background: #bfd1ef;
  border-left: 5px solid #1a7f5a;
  padding: 25px 30px;
  max-width: 420px;
}

.contact-hours-box h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #002046;
}

.contact-hours-box p {
  font-size: 16px;
  color: #5f6f85;
  margin-bottom: 6px;
}

.contact-hours-box strong {
  font-size: 18px;
  color: #1a7f5a;
}

/* MAP */
.contact-map img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin-left: auto;
}


.section-divider {
  width: 100%;
  height: 30px;
  background: linear-gradient(
    to right,
    transparent,
    #002046,
    transparent
  );
 
}


/* ======================
   TESTIMONIALS PAGE
====================== */

/* ==========================
   TESTIMONIALS PAGE BG
========================== */

.page-testimonials {
  background: #c5d4eddc; /* soft light gray-blue */
}


.page-testimonials .testimonials-wrapper {
  max-width: 900px;
  margin: 40px auto 20px;
  padding: 0 20px;
}

/* HEADER */
.testimonials-header {
  text-align: center;
  margin-bottom: 15px;
}

.testimonials-header .eyebrow {
  color: #2bb673;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 18px;
}

.testimonials-header h1 {
  font-size: 42px;
  color: #002046;
  margin: 12px 0;
   
}

.testimonials-header p {
  font-size: 18px;
  color: #5f6f85;
  max-width: 720px;
  margin: 0 auto -12px;
}

/* GOOGLE CTA */
/* ================================
   GOOGLE REVIEWS CTA — NON-CLICKABLE PREMIUM
================================= */
.google-review-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;

  /* Remove button appearance */
  background: none;
  border: none;
  cursor: default;       /* not clickable */
  pointer-events: none;  /* completely disable clicks */

  /* Premium look */
  font-size: 20px;
  font-weight: 700;
  color: #c9a227;        /* gold accent */
  text-transform: uppercase;
  letter-spacing: 1px;

  /* Optional subtle text effect */
  text-shadow: 0 1px 2px rgba(0,0,0,0.10);
}


.google-review-cta img {
  height: 150px;
  
}

.write-review-btn {
  background: #1a73e8;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.write-review-btn:hover {
  background: #1558b0;
}

/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 35px;
}

/* CARD */
.testimonial-card {
  background: #ffffff6f;
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow:
    0 15px 40px rgba(0, 32, 70, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 25px 60px rgba(0, 32, 70, 0.40);
}

/* TOP */
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.google-icon {
  width: 55px;
  height: 55px;
}

.stars {
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 2px;
}

/* TEXT */
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5a70;
  margin-bottom: 24px;
}

/* USER */
.testimonial-user strong {
  display: block;
  color: #002046;
  font-weight: 700;
}

.testimonial-user span {
  font-size: 14px;
  color: #7a8aa0;
}




/* ============================
   HERO FORM – HARD LOCK FIX
============================ */

.hero .contact-form-box {
  opacity: 1 !important;
  position: relative;
  transform: none !important;
  top: auto;
  left: auto;
}

/* Ensure hero form inputs stay as designed */
.hero .contact-form-box input,
.hero .contact-form-box select,
.hero .contact-form-box textarea {
  opacity: 1;
}

/* Prevent global form rules from breaking hero */


/* ======================
   FOOTER FORM – LABEL SCALE FIX
====================== */

.contact-form-box:not(.hero-form) .select-question {
  font-size: 15px;          /* ⬅️ match hero */
  font-weight: 300;
  line-height: 0.5;
  color: #dadfe6e7;
padding: 7px 2px 2px;
  display: block;
  margin-bottom: 1pxs;       /* breathing space */
}


/* ======================
   FOOTER FORM – CENTER TITLE
====================== */

.contact-form-box:not(.hero-form) h3 {
  text-align: center;
  margin-bottom: 18px;
}







/* =========================
   SUCCESS POPUP – PREMIUM
========================= */

.success-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99999;
}

.success-popup.active {
  opacity: 1;
  pointer-events: all;
}

/* CARD */
.success-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 32px;
  width: 90%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0,0,0,0.35);
  animation: popIn 0.35s ease;
}

/* ICON */
.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28c76f, #20b263);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.success-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: #081f42;
  margin-bottom: 6px;
}

.success-card p {
  font-size: 14.5px;
  color: #5f6f85;
  line-height: 1.5;
}

/* ANIMATION */
@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* MOBILE ICON ROW — DESKTOP HIDE */
/* FORCE HIDE MOBILE ICONS ON DESKTOP */
.mobile-icon-row,
.mobile-icon-divider-row {
  display: none !important;
}


@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.55);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 204, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}




/* MOBILE ONLY */
@media (max-width: 768px) {
  .hero-mobile-cta {
    display: inline-flex !important;
  }
}

/* DESKTOP ONLY */
@media (min-width: 769px) {
  .hero-desktop-cta {
    display: inline-flex !important;
  }
}

@media (min-width: 769px) {
  .hero-desktop-cta {
    position: relative;
    overflow: hidden;
  }

  .hero-desktop-cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.45),
      transparent
    );
    animation: ctaReflect 2.6s infinite;
    pointer-events: none;
  }
}
@keyframes ctaReflect {
  0% { left: -60%; }
  100% { left: 120%; }
}
@media (min-width: 769px) {
  .hero-desktop-cta:hover {
    transform: translateY(-2px);
    box-shadow:
      0 10px 26px rgba(255, 204, 0, 0.45),
      inset 0 1px 0 rgba(255,255,255,0.4);
  }

  .hero-desktop-cta:active {
    transform: translateY(0);
    box-shadow:
      0 6px 18px rgba(255, 204, 0, 0.35);
  }
}
/* FORCE ACTIVE NAV LINK */
/* ACTIVE NAV LINK – CLEAN (NO UNDERLINE) */
a[aria-current="page"] {
  color: #1a7f5a !important;
  font-weight: 600;
}

/* remove any underline or pseudo effects */
a[aria-current="page"]::after,
a[aria-current="page"]::before {
  display: none !important;
}






/* =====================================
   HERO FIX — DESKTOP SITE MODE ON MOBILE ONLY
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  section.hero-image {
    height: auto !important;
    min-height: unset !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin-top: 0px !important;
  }

  .hero-inner {
    height: auto !important;
    min-height: unset !important;
  }

  .hero-image  {
    transform: none !important;
  }
}





/* =====================================
   HERO RESTORE VISIBILITY — DESKTOP SITE MODE
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  .hero-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .hero-content,
  .hero-form {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .hero-content {
    max-width: 720px !important;
    width: 100% !important;
  }
}


@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  .hero-inner {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .hero-form {
    width: 100% !important;
    max-width: 520px !important;
  }
}


@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* HERO CONTENT CONTROL */
  .hero-content {
    text-align: left !important;
    margin-top: -140px !important;   /* MOVE ALL CONTENT DOWN */
    padding-top: 40px !important;
  
  }

  .hero-content h1 {
    font-size: 30px !important;
    margin-bottom: 16px !important;
  }

  .hero-content p {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  /* FORM CONTROL */
  .hero-form {
    margin-top: -200px !important;
    margin-left: 650px !important;
    width: 30% !important;
    position: relative;
  }
}




/* =====================================
   HEADER FIX — DESKTOP SITE MODE ON MOBILE
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  header,
  nav {
    position: static !important;
    transform: none !important;
  }

  .header-inner,
  .nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 12px 20px !important;
    box-sizing: border-box;
  }

  /* LOGO */
  .logo,
  .site-logo,
  .header-logo {
    flex-shrink: 0 !important;
    max-width: 180px !important;
  }

  /* NAV LINKS */
  .nav-links,
  .menu,
  .nav-menu {
    display: flex !important;
    gap: 20px !important;
    margin-left: auto !important;
    position: static !important;
    transform: none !important;
  }
}




@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  .nav-links li:first-child,
  .nav-menu li:first-child {
    margin-left: 24px !important;
  }
}



@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  .nav-links a {
    font-size: 16px !important;
    padding: 8px 6px !important;
  }

  .logo img {
    max-height: 80px !important;
    margin-top: 42px !important;
    margin-left: 10px !important;
  }
}





/* =====================================
   SPECIALTIES ANCHOR RESET — DESKTOP SITE MODE
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: 1024px) {

  /* KILL CENTER-ANCHORING ON ALL PARENTS */
  section.specialties-section,
  .specialties-container,
  .specialties-grid {
    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* FORCE NORMAL FLOW WIDTH */
  section.specialties-section {
    width: 80% !important;
    overflow-x: hidden !important;
  }

  .specialties-container {
    width: 100% !important;
    max-width: 900px !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }

  /* GRID SAFETY */
  .specialties-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    justify-content: center !important;
  }
}


/* =====================================
   SPECIALTY CARD OVERFLOW FIX
   (DESKTOP SITE MODE ON MOBILE ONLY)
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* HARD STOP: no card can exceed grid */
  .specialty-card,
  .specialty-card * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* REMOVE CARD WIDTH FORCE */
  .specialty-card {
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    transform: none !important;
  }

  /* GRID SAFETY NET */
  .specialties-grid {
    overflow-x: hidden !important;
  }
}


/* =========================
   SPECIALTY CARD IMAGE FIX
========================= */
.specialty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.specialty-card img {
  width: 100%;
  max-width: 180px;  /* constrain image width */
  height: 140px;     /* fix image height for consistency */
  object-fit: cover; /* scale & crop images evenly */
  margin-bottom: 16px; /* consistent space between image & heading */
  border-radius: 8px;  /* optional: make images look nicer */
}

.specialty-card h4 {
  margin-bottom: 8px; /* consistent spacing below heading */
  font-size: 18px;
  line-height: 1.3;
}

.specialty-card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}



/* =====================================
   FOOTER OVERLAP FIX (GLOBAL SAFE)
===================================== */

.footer-spacer {
  width: 100%;
  height: 80px;
  background: transparent;
  clear: both;
}
footer {
  position: relative !important;
  z-index: 1;
}


/* =====================================
   FOOTER FIX — DESKTOP SITE MODE MOBILE
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  footer {
    position: relative !important;
    margin-top: -60px !important;
  }

  .contact-main,
  .contact-strip,
  .contact-bg {
    margin-bottom: 60px !important;
  }
}

/* =====================================
   FOOTER LAYOUT HARD FIX
   (DESKTOP SITE MODE ON MOBILE)
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* STOP HORIZONTAL SCROLL */
  footer {
    overflow-x: hidden !important;
  }

  /* FOOTER CONTAINER SAFETY */
  footer .footer-inner,
  footer .footer-container {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  /* LOGO FIX */
  footer .footer-logo,
  footer .footer-logo img {
    max-width: 180px !important;
    width: 100% !important;
    margin-left: 0px !important;
    transform: none !important;
  }

  /* COLUMN GRID RESET */
  footer .footer-columns,
  footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* ADDRESS WRAP FIX */
  footer address,
  footer .footer-address,
  footer .footer-address * {
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
}





  
/* =====================================
   FOOTER LOGO FIX ONLY
   DESKTOP SITE MODE ON MOBILE
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* Logo wrapper */
  footer .footer-logo {
    margin-left: 30px !important;
    padding-left: 0 !important;
    transform: none !important;
    display: flex !important;
    justify-content: right !important;
  }

  /* Logo image */
  footer .footer-logo img {
    margin-left: 100px !important;
    margin-right: auto !important;
    display: block !important;
    transform: none !important;
  }

}

/* =====================================
   FOOTER COLUMN GAP FIX ONLY
   DESKTOP SITE MODE ON MOBILE
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: px) {

  /* Kill horizontal gap between footer columns */
  footer .footer-inner,
  footer .footer-container,
  footer .footer-grid {
    column-gap: 2px !important; /* reduce, not zero */
  }

  /* If flex is used */
  footer .footer-left,
  footer .footer-logo {
    margin-right: 0 !important;
  }

  footer .footer-right {
    margin-left: 0 !important;
  }
}


/* =====================================
   ABOUT – WHY CHOOSE US
   DESKTOP SITE MODE ON MOBILE
===================================== */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* Reduce excessive gap between columns */
  .why-choose-inner {
    gap: 24px !important;
  }

  /* Make image readable (not micro) */
  .why-right img {
    max-width: 140% !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  /* Prevent right-side push */
  .why-right {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Prevent left content from stealing width */
  .why-left {
    margin: 0 !important;
  }
}


/* =========================================================
   FAQ FIX — DESKTOP SITE MODE ON MOBILE ONLY
   (Does NOT affect real desktop or real mobile)
========================================================= */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* Lock overall width */
  .faqs-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  /* Center header properly */
  .faqs-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
  }

  /* Each FAQ group */
  .faq-group {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
  }

  /* Fix question buttons pushing right */
  .faq-question {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    box-sizing: border-box;
    white-space: normal !important;
  }

  /* Prevent internal span from expanding width */
  .faq-question span {
    flex-shrink: 0;
    margin-left: 12px;
  }

  /* Answers stay inside */
  .faq-answer {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}


/* =========================================================
   REMOVE WHITE GAP BELOW FOOTER — Desktop Site Mode Mobile
========================================================= */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* Make sure html/body are flush */
  html, body {
    margin-top: 50px !important;
    padding: 0 !important;
    overflow-x: hidden !important;
  }

  /* Force faqs wrapper and last section to not add extra space */
  .faqs-wrapper,
  .faq-group:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Footer should start exactly after last section */
  footer, .footer-wrapper {
    margin-top: -70px !important;
    padding-top: 0 !important;
  }
}


/* =========================================================
   REMOVE WHITE GAP BELOW FAQS — Desktop Site Mode Mobile Only
========================================================= */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* Only target FAQs page wrapper */
  .faqs-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Last FAQ group should not push extra space */
  .faqs-wrapper .faq-group:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Footer immediately after FAQs wrapper */
  .faqs-wrapper + footer,
  .faqs-wrapper + .footer-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* =========================================================
   FAQS PAGE FULL HEIGHT — Desktop Site Mode Mobile Only
========================================================= */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* Target only FAQs page */
  .faqs-wrapper {
    min-height: calc(80vh - 80px); /* 100% viewport minus header/footer height estimate */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Content stays at top */
  }

  /* Optional: keep footer at natural position */
  .faqs-wrapper + footer,
  .faqs-wrapper + .footer-wrapper {
    margin-top: 0 !important;
  }
}

/* =========================================================
   CONTACT PAGE SPACING FIX — Desktop Site Mode Mobile Only
========================================================= */
@media (hover: none) and (pointer: coarse) and (min-width: 900px) {

  /* Target Contact page wrapper sections */
  .page-contact .contact-bg,
  .page-contact .contact-strip,
  .page-contact .contact-main {
    min-height: auto !important;   /* Remove any forced height issues */
    padding-top: 60px;             /* Adjust top padding if needed */
    padding-bottom: 60px;          /* Adjust bottom padding if needed */
  }

  /* Optional: shrink excessive gaps */
  .page-contact .contact-strip-inner,
  .page-contact .contact-main-inner {
    gap: 20px !important;          /* Reduce large grid gaps */
  }

  /* Force the page wrapper to fill viewport */
  .page-contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}





/* ==================================================
   REMOVE BLUE TAP HIGHLIGHT ON MOBILE
================================================== */

/* Remove highlight for all clickable elements */
button,
a,
input,
textarea,
select,
label {
  -webkit-tap-highlight-color: transparent; /* iOS / Chrome */
  tap-highlight-color: transparent;         /* Standard */
}


/* ==========================================
   TOUCH DEVICES – DISABLE INTERACTION ONLY
   (Mobile + Desktop Site Mode)
========================================== */
@media (hover: none) and (pointer: coarse) {

  /* Disable interaction */
  .process-orb,
  .orb-circle,
  .orb-circle img {
    pointer-events: none;
    cursor: default;
  }

  /* Keep images in original state */
  .orb-circle img {
    filter: none !important;
    transform: none !important;
  }

  /* Always show text */
  .orb-meta p {
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* Disable hover visuals without changing layout */
  .process-orb:hover .orb-circle,
  .process-orb:hover .orb-circle img,
  .process-orb:hover .orb-meta p {
    background: inherit !important;
    box-shadow: none !important;
    transform: none !important;
  }

  /* Stop animations only */
  .process-orb *,
  .process-orb:hover * {
    animation: none !important;
    transition: none !important;
  }
}
/* CONTACT SECTION FORM WIDTH FIX */
.contact-section .contact-form-box,
.contact-form-box.hero-form {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
/* FORM QUESTION LABEL FIX */
.claim-form .select-question {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  color: #dce3ea;
  margin: 12px 0 6px;
  display: block;
}

/* TEXTAREA FIX – BOTH FORMS */
.claim-form textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px;
  font-size: 14px;
  border-radius: 4px;
  resize: vertical;
  display: block;
  margin-top: 8px;
  box-sizing: border-box;
}


.claim-form textarea {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  color: #333;
}


/* HERO SECTION – COMPACT FORM */
.hero-image .contact-form-box.hero-form {
  max-width: 380px;   /* smaller width */
  padding: 20px;      /* reduce padding */
}

/* Smaller inputs inside hero only */
.hero-image .claim-form input,
.hero-image .claim-form select,
.hero-image .claim-form textarea {
  padding: 9px 10px;
  font-size: 13px;
  margin-bottom: 10px;
}

/* Smaller heading in hero */
.hero-image .hero-form h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

/* Slightly smaller button */
.hero-image .claim-form button {
  padding: 10px;
  font-size: 14px;
}

.hero-image .contact-form-box.hero-form {
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* HERO CONTENT SPACING FIX */
.hero-image .hero-content h1 {
  margin-bottom: 10px;
}

.hero-image .hero-content p {
  margin-bottom: 8px;
}

.hero-image .hero-content {
  margin-bottom: 18px;
}

/* HERO FORM COMPACT SPACING */
.hero-image .claim-form input,
.hero-image .claim-form select,
.hero-image .claim-form textarea {
  margin-bottom: 8px;
}

.hero-image .select-question {
  margin: 6px 0 4px;
}

.hero-image .roblox-section,
.hero-image .rideshare-section {
  margin-top: 6px;
}

.hero-image .hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-image .hero-inner {
  gap: 25px;
}
/* FORCE ALL SELECTS SAME STYLE */
.claim-form select {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 4px;
  box-sizing: border-box;
  appearance: none;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
}
.contact-section .claim-form select {
 
  border: 1px solid #dcdcdc;
  color: #333;
}
/* CENTER FORM TITLE FOR ALL FORMS */
.contact-form-box h3 {
  text-align: center;
  margin-bottom: 18px;
}
.hero-image .contact-form-box h3 {
  text-align: center;
}
.claim-form .select-question {
  display: block;
  font-size: 13px;
  font-weight: 100;
  margin: 05px 0 6px;
  text-align: left;
  margin-left: 10px;
}
/* PREMIUM SELECT BASE */
.claim-form select {
  width: 100%;
  padding: 10px 44px 10px 14px; /* space for arrow */
  font-size: 14px;
  border-radius: 6px;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;

  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  color: #ffffff;

  transition: all 0.25s ease;
}
.claim-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, #ffcc00 50%),
    linear-gradient(135deg, #ffcc00 50%, transparent 50%),
    linear-gradient(to right, rgba(255,204,0,0.15), rgba(255,204,0,0.15));
  
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%,
    calc(100% - 38px) 0;

  background-size:
    6px 6px,
    6px 6px,
    38px 100%;

  background-repeat: no-repeat;
}
/* PREMIUM SELECT WITH CLEAN YELLOW ARROW */
.claim-form select {
  width: 100%;
  padding: 10px 42px 10px 14px;
  font-size: 14px;
  border-radius: 6px;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;

  border: 1px solid rgba(255,255,255,0.35);
  background-color: rgba(255,255,255,0.06);
  color: #ffffff;

  /* Single clean arrow */
  background-image: linear-gradient(45deg, transparent 50%, #ffcc00 50%),
                    linear-gradient(135deg, #ffcc00 50%, transparent 50%);
  background-position: calc(100% - 16px) 55%, calc(100% - 10px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;

  transition: all 0.25s ease;
}
/* HERO TEXTAREA FIX */
.hero-image .claim-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
}
.hero-image .claim-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

/* REMOVE GAP BETWEEN CLAIM TYPE AND CONDITIONAL SECTION */
.claim-type-select {
  margin-bottom: 4px !important;
}

.roblox-section,
.rideshare-section {
  margin-top: 0 !important;
}

.roblox-section .select-question,
.rideshare-section .select-question {
  margin-top: 6px !important;
}
.roblox-section,
.rideshare-section {
  display: block;
  padding: 0;
  margin: 0;
}
.hero-image .claim-form > * {
  margin-top: 0;
}




.claims-jc-content h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.claims-jc-content h4 {
  font-size: 16px;
  margin-top: 14px;
  margin-bottom: 4px;
  font-weight: 600;
}

.claims-jc-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}
/* ======================================
   ROBLOX VICTIMS – COMPACT LAYOUT
====================================== */
.claims-jc-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 30px !important;
}


.claims-jc-card.horizontal {
  display: flex;
  align-items: stretch;
  gap: 34px;
  padding: 0px;
}

/* Make image more horizontal */
.claims-jc-card.horizontal .claims-jc-image {
  flex: 0 0 48%;   /* increase width */
}

.claims-jc-card.horizontal .claims-jc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Content takes remaining width */
.claims-jc-card.horizontal .claims-jc-content {
  flex: 1;
}

/* Compact headings */
.claims-jc-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.claims-jc-content h4 {
  font-size: 15px;
  margin: 10px 0 2px;
  font-weight: 600;
}

/* Compact paragraph spacing */
.claims-jc-content p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.claims-jc-card {
  margin-bottom: 30px;
}

.claims-jc-card:last-child {
  margin-bottom: 0;
}



.privacy-commitment {
  background-color: #c3d4f5; /* subtle, light background */
  padding: 80px 15px;
  color: #0b2c5d; /* deep navy text for elegance */
  text-align: center;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.privacy-commitment h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #002046;
  letter-spacing: 0.5px;
  
}

.privacy-commitment .intro {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: #33475b;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
   text-align: center;
}

.privacy-commitment .privacy-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.privacy-commitment .privacy-points li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  position: relative;
  padding-left: 28px;
  color: #0b2c5d;
}

/* subtle elegant bullet */
.privacy-commitment .privacy-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #f2b705; /* golden accent */
  font-size: 24px;
  line-height: 1;
}




/* ===============================
   CLAIMS DROPDOWN
================================ */
.nav-dropdown {
  position: relative;
}

/* Make sure dropdown touches the parent */
.dropdown-menu {
  position: absolute;
  top: 100%; /* directly below */
  left: 0;
  margin-top: 0; /* remove gaps */

  background: #0f172a;
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 999;
}

/* Add invisible hover buffer */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 15px; /* buffer area */
}

/* Show dropdown */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}












.dropdown-menu {
  background: #ffffff;  /* clean white */
  border: 1px solid #e5e7eb;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

