@media (max-width: 768px) {


  body {
    padding-top: 90px !important;
  }




  /* =========================
     TOP STRIP (TEXT ONLY)
  ========================= */
  .top-strip-right {
    display: none;
  }

  .top-strip {
    padding: 10px 12px;
    text-align: center;
    font-size: 13px;
  }



  
  /* =========================
     HEADER
  ========================= */
  .site-header {
    top: 40px;
    height: 70px;
    
    padding-bottom: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  

  .nav-container {
    height: 70px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }


  /* =========================
     LOGO (FIXED)
  ========================= */
  .logo {
    position: static;
    
  }

  .logo img {
    height: 10px;
    width: auto;
    display: block;
    margin-left: -30px;
    margin-top: 15px;
  }

  /* =========================
     TOGGLE BUTTON
  ========================= */
  .menu-toggle {
    display: flex;
    z-index: 2000;
  }

  /* =========================
     NAV MENU (MOBILE)
  ========================= */
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 65px 0;
    z-index: 1500;
  }

  .nav-menu a {
    padding: 12px 20px;
    font-size: 16px;
  }

  /* =========================
     ICON ROW (UNDER HEADER)
  ========================= */
  .mobile-icon-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    padding: 8px 15px;
    background: #ffffff;
  }

  .mobile-icon-row a {
    color: #002046;
    font-size: 16px;
    position: relative;
    padding-right: 12px;
  }

  .mobile-icon-row a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background: #d1d5db;
  }

  .mobile-icon-divider-row {
    height: 1px;
    background: #e5e7eb;
    margin: 0 15px;
  }

}
@media (max-width: 768px) {

  .mobile-icon-row {
    display: flex !important;
    position: relative;
    z-index: 1400;
  }

}

@media (max-width: 768px) {

  .mobile-icon-row {
    margin-top: -10px;   /* pulls icons upward */
    padding-top: 2px;
  }

}

@media (max-width: 768px) {

  .mobile-icon-row {
    background: #ffffff;
  }

}

@media (max-width: 768px) {

  /* HEADER STACK CONTEXT */
  .site-header {
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 999;
  }

  /* ICON STRIP (BASE LAYER) */
  .mobile-icon-row {
    position: relative;
    z-index: 1;           /* stays underneath logo */
    width: 100%;
    padding: 6px 15px;
    background: #ffffff;
  }




}

@media (max-width: 768px) {

  /* NAV CONTAINER = POSITION CONTEXT */
  .nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* push toggle right */
    height: 64px;
    padding-right: 15px;
  }

  /* LOGO OVERLAP (LEFT) */
  .logo {
    position: absolute;
    left: 35px;
    top: -10%;
    transform: translateY(-10%);
    z-index: 5;
  }

  .logo img {
    height: 80px;
    width: auto;
  }

  /* TOGGLE FIXED TO RIGHT */
  .menu-toggle {
    position: relative;   /* IMPORTANT */
    z-index: 6;
    margin-left: auto;    /* forces right */
  }

}

 

@media (max-width: 768px) {

  /* RESET TOP-ICON INSIDE MOBILE ICON ROW ONLY */
  .mobile-icon-row .top-icon {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #002046;
    margin: 0;
    padding: 0 10px;
  }

  /* ICON ROW POSITION – STAYS BELOW HEADER */
  .mobile-icon-row {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    padding: 4px 15px;
    margin-top: -6px; /* pulls icons slightly up without breaking layout */
   
  }

 
  /* FORCE TOGGLE BUTTON RIGHT */
  .menu-toggle {
    margin-left: auto;
    position: relative;
    z-index: 3000;
    width: 55;
    
  }

}


@media (max-width: 768px) {

  /* NAV CONTAINER FIX */
  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 260px;    /* premium app-like limit */
    height: 100vh;
    background: #ffffff;
    z-index: 4000;
    transition: left 0.3s ease;
    padding-top: 110px;
  }

  nav.active {
    left: 0;
  }

  /* STACK LINKS */
  .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .nav-menu a {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 8px;
    border-bottom: 1px solid #e5e7eb;
  }

  /* OVERLAY */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 3500;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

}










/* ===============================
   DESKTOP — HIDE MOBILE FORM
================================ */
@media (min-width: 769px) {
  .mobile-form-section {
    display: none !important;
  }
}







@media (max-width: 768px) and (orientation: landscape) {
  .mobile-form-section {
    display: block !important;
  }

  .hero-form {
    display: none !important;
  }
}


  



/* ===============================
   DESKTOP VISIBILITY FIX
================================ */

/* HIDE MOBILE FORM ON DESKTOP */
@media (min-width: 769px) {
  .mobile-hero-form {
    display: none !important;
  }
}





/* ===============================
   DESKTOP CTA — FORCE RESTORE
================================ */
@media (min-width: 769px) {
  .hero-cta {
    display: inline-block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    border-radius: 6px !important;
    padding: 14px 28px !important;
    animation: none !important;
  }

  /* REMOVE MOBILE PHONE ICON */
  .hero-cta::before {
    content: none !important;
  }
}







@media (max-width: 768px) {

  /* ===========================
     AUTHORITY SECTION MOBILE
  =========================== */
  .authority-section {
    padding: 20px 15px !important;   /* reduced padding */
  }

  .authority-container {
    max-width: 120% !important;
    margin: 0 auto !important;
    padding-left: 20px !important;
    display: flex;
    flex-direction: column;          /* stack if multiple columns exist */
    align-items: left;
    text-align: left;              /* center text for mobile */
    gap: 10px;
  }

  .authority-text h2 {
    font-size: 20px !important;     /* smaller heading for mobile */
    line-height: 1.3 !important;
    font-weight: 700;
    color: #002046;                 /* maintain theme color */
    margin-bottom: 12px !important;
    
  }

  .authority-text p {
    font-size: 14px !important;     /* readable paragraph */
    line-height: 1.6 !important;
    color: #333333;
    margin: 0 auto 10px auto;
    max-width: 100%;
    text-align: left;
  }
}


@media (max-width: 768px) {

  /* ==========================
     PREMIUM STATS MOBILE
  ========================== */
  .stats-section {
    padding: 10px 0 !important;          /* less vertical space */
                /* soft background */
  }

  .stats-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;                 /* reduced gap */
    align-items: center;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
  }

  .stat-box {
  
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
   
    box-shadow: 0 12px 24px rgba(21, 36, 94, 0.80);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease forwards;
  }

  /* Animated gradient numbers */
  .stat-box h2 {
    font-size: 28px !important;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(90deg, #002046, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.6s ease forwards;
  }

  .stat-box h4 {
    font-size: 14px !important;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0b2c5d;
    animation: fadeInUp 0.8s ease forwards;
  }

  .stat-box p {
    font-size: 12px !important;
    line-height: 1.5;
    color: #5a6b82;
    max-width: 90%;
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards;
  }

  /* Thin gradient divider */
  .stat-box:not(:last-child)::after {
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, #002046, #ffcc00);
    margin: 10px auto 0 auto;
    border-radius: 2px;
    animation: growLine 0.8s ease forwards;
  }

  /* ==========================
     ANIMATION KEYFRAMES
  ========================== */
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes growLine {
    0% { width: 0; opacity: 0; }
    100% { width: 40px; opacity: 1; }
  }

  @keyframes slideInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
}


/* ==========================
   TRUST STRIP – HORIZONTAL STYLE
========================== */
.trust-strip {
  width: 100vw;                      
  margin-left: calc(-50vw + 50%);    
  background-color: #002046;         /* dark blue */
  padding: 30px 0;
}



/* TRUST ITEM */
.trust-card {
  flex: 1;                            /* equal spacing */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: default;
}

.trust-card i {
  font-size: 48px;
  margin-bottom: 8px;
  color: #ffcc00;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.trust-card span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
  max-width: 120px;                   /* keeps text neat */
}

/* HOVER ANIMATION */
.trust-card:hover i {
  transform: rotateY(180deg) scale(1.1);
  filter: drop-shadow(0 10px 20px rgba(255,204,0,0.45));
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .trust-container {
    flex-direction: column;
    gap: 16px;
  }

  .trust-card i {
    font-size: 36px;
    margin-bottom: 6px;
  }

  .trust-card span {
    font-size: 13px;
    max-width: 100%;
  }
}


@media (max-width: 768px) {

  .trust-card i {
    animation: trustFlip 8s infinite;
    transform-style: preserve-3d;
  }

  .trust-card:nth-child(2) i { animation-delay: 1s; }
  .trust-card:nth-child(3) i { animation-delay: 2s; }
  .trust-card:nth-child(4) i { animation-delay: 3s; }

  @keyframes trustFlip {
    0%   { transform: rotateY(0deg); }
    8%   { transform: rotateY(180deg); }
    16%  { transform: rotateY(0deg); }

    /* 🔒 LOCK POSITION — NO SECOND FLIP */
    100% { transform: rotateY(0deg); }
  }
}


@media (max-width: 768px) {

  /* FULL WIDTH SECTION */
  .claims-jc {
    padding: 16px 20px !important;
    width: 100vw !important;
    margin: 0 !important;            /* remove any offset */
    
  }

  /* REMOVE CONTAINER LIMITS */
  .claims-jc-container {
    max-width: 100% !important;      /* ignore desktop max-width */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* HEADING FULL WIDTH */
  .claims-jc-header {
    text-align: left;
    padding: 0 12px;
    margin: 0 0 8px 0;
    width: 100%;
  }

  .claims-jc-header h2 {
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 700;
    color: #002046;
    margin-bottom: 4px;
  }

  .claims-jc-header p {
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #4a5d73;
    margin-bottom: 8px;
  }

  /* GRID STACK FULL WIDTH */
  .claims-jc-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* CARD FULL WIDTH */
  .claims-jc-card.horizontal {
    width: 100% !important;
    flex-direction: column !important;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }

  /* IMAGE FULL WIDTH */
  .claims-jc-card.horizontal .claims-jc-image {
    width: 100% !important;
    height: 160px !important;
    overflow: hidden;
  }

  .claims-jc-card.horizontal .claims-jc-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transform: translateY(5%) scale(1.08);
    transition: transform 1.6s ease-out;
  }

  /* CONTENT FULL WIDTH */
  .claims-jc-card.horizontal .claims-jc-content {
    width: 100% !important;
    padding: 12px 20px !important;
  }

  .claims-jc-card.horizontal h3 {
    font-size: 16px !important;
    font-weight: 700;
    color: #002046;
    margin-bottom: 4px;
  }

  .claims-jc-card.horizontal p {
    font-size: 13px !important;
    color: #4a5d73;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .claims-jc-card.horizontal a {
    font-size: 14px !important;
    font-weight: 600;
    color: #002046;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }

  .claims-jc-card.horizontal a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #ffcc00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .claims-jc-card.horizontal a:hover::after {
    transform: scaleX(1);
  }

}




/* STOP MARGIN COLLAPSE BETWEEN SECTIONS */
section {
  overflow: hidden;
}



/* ======================
   MOBILE – CLEAN SINGLE CARD STYLE
====================== */
@media (max-width: 768px) {

  /* SPECIALTIES SECTION */
  :root {
        /* ⬅️ control overall width */
    --icon-size: 90px;
  /* ⬅️ icon size */
  }


  .specialties-section {
    padding: 10px 5px;      /* comfortable top/bottom and side padding */
    display: flex;
    justify-content: center; /* center the container horizontally */
    box-sizing: border-box;
  }

  .specialties-container {
    width: 100%;             /* full width inside section */
    max-width: 500px;        /* limit so text doesn’t stretch too far */
    padding: 25px;
    box-sizing: border-box;
  }

  /* HEADING */
  .specialties-title {
    font-size: 22px;          /* your style size */
    line-height: 1.3;
    margin-bottom: 15px;
    text-align: left;         /* text aligned left inside centered container */
  }

  /* SUBTITLE / PARAGRAPH */
  .specialties-subtitle {
    font-size: 15px;          /* your style size */
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
  }




  /* GRID → SINGLE COLUMN */
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CARD */
@media (max-width: 768px) {

  /* GRID stays single column */
  .specialties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CARD – NOT FULL WIDTH */
  .specialty-card {
    max-width: 160%;        /* ⬅️ makes it shorter */
    margin: 0 auto;       /* ⬅️ centers the card */
    padding: 5px 6px 5px;
    border-radius: 2px;
  }
.specialty-card img {
  margin-bottom: -30px;
}


}
}


@media (max-width: 768px) {

  /* HEADING */
  .specialties-title {
    font-family: 'Montserrat', sans-serif; /* JusticeClaims-like font */
    font-size: 20px;                        /* match Claims */
    font-weight: 700;                        /* bold */
    
    
   
    text-align: left;
  }

  /* SUBTITLE / PARAGRAPH */
  .specialties-subtitle {
    font-family: 'Montserrat', sans-serif; /* match Claims section text */
    font-size: 14px;
    font-weight: 400;                        /* normal weight */
    
   
    
    text-align: left;
  }

}


/* =====================================
   PROCESS STRIP – PREMIUM DESKTOP POLISH
===================================== */

@media (max-width: 768px) {

.process-strip {
  padding: 10px 0;
}

.process-strip-inner {
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

/* ======================
   HEADER (MATCH PREVIOUS SECTIONS)
====================== */

.process-strip-header {
  text-align: left;
  margin-bottom: 10px;
}

.process-strip-header h2 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: #002046;
  margin-bottom: 6px;
}

.process-strip-header p {
  font-size: 14px;
  line-height: 1.4;
  color: #4a5d73;
  max-width: 520px;
  margin: 0;
}

/* ======================
   PROCESS ORBS SECTION
====================== */

.process-orbs {
  position: relative;
  padding: 30px 0;
  overflow: visible;
}

/* CONNECTOR LINE (BEHIND ORBS) */
.process-orbs::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(11,44,93,0.25),
    transparent
  );
  z-index: 1;
}

/* INNER FLEX */
.process-orbs-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}

/* ======================
   INDIVIDUAL ORB
====================== */

.process-orb {
  flex: 1;
  max-width: 220px;
  text-align: center;
  cursor: pointer;
}

/* CIRCLE */
.orb-circle {
  width: 140px;
  height: 140px;
  margin: auto;
  border-radius: 50%;
  background: #002046 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  position: relative;
}

.orb-circle img {
  width: 100px !important;
  filter: brightness(0) invert(1);
  transition: transform 0.35s ease;
}

/* META */
.orb-meta {
  margin-top: 12px;
}

.orb-step {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0b2c5d;
}

.orb-meta h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 4px 0 0;
  color: #0b2c5d;
}

/* DESCRIPTION */
.orb-meta p {
  font-size: 13px;
  line-height: 1.45;
  color: #444;
  margin-top: 6px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* ======================
   HOVER EFFECTS (PREMIUM)
====================== */

.process-orb:hover .orb-circle {
  background: #1a7f5a;
  box-shadow: 0 12px 30px rgba(11,44,93,0.25);
}

.process-orb:hover .orb-circle img {
  filter: none;
  transform: scale(1.15);
}

.process-orb:hover .orb-meta p {
  opacity: 1;
  max-height: 120px;
}

/* SUBTLE GLOW */
.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);
  }
  50% {
    box-shadow: 0 18px 40px rgba(250, 247, 51, 0.45);
  }
  100% {
    box-shadow: 0 12px 28px rgba(11,44,93,0.35);
  }
}


/* =====================================
   MOBILE – COMPACT 2-STEP GRID (OVERRIDE)
===================================== */
@media (max-width: 768px) {

  /* Kill desktop zig-zag + lines */
  .process-orbs::before {
    display: none;
  }

  .process-orbs {
    padding: 12px 0;
    max-width: 100%;
  }

  /* Grid instead of vertical stack */
  .process-orbs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr; /* ⬅️ 2 per row */
    gap: 16px 12px;                 /* row / column gap */
  }

  /* Each step */
  .process-orb {
    width: 100%;
    text-align: center;
  }

  /* Smaller circle */
  .orb-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto 6px;
  }

  .orb-circle img {
    width: 34px;
  }

  /* Meta */
  .orb-meta {
    margin-top: 0;
  }

  .orb-step {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .orb-meta h4 {
    font-size: 13px;
    line-height: 1.2;
    margin: 2px 0 4px;
  }

  /* Tight description */
  .orb-meta p {
    font-size: 11px;
    line-height: 1.35;
    margin: 0;
  }

}
}




/* =========================
   MOBILE – CONTACT US
========================= */
@media (max-width: 1023px) {

  /* Container */
  .contact-bg {
    padding: 60px 20px 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: -90px;
    

  }

  /* Overlay */
  .contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 18, 36, 0.82);
    z-index: 1;
  }

  /* Inner wrapper */
  .contact-bg-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Left content */
  .contact-left {
    text-align: center;
    max-width: 100%;
  }

  .contact-eyebrow {
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffcc00;
    margin-top: 20px;
  }

  .contact-left h2 {
    font-size: 26px;
    margin: 10px 0;
    color: #ffffff;
  }

  .contact-left p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
  }

  .contact-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0 auto 16px auto;
    align-items: center;
  }

  .contact-features li {
    font-size: 13px;
    font-weight: 600;
    color: #ffcc00;
    list-style: none;
   
  }

  /* Form box */
  .contact-form-box {
    width: 100%;
    max-width: 420px;
    padding: 20px;
    margin: 0 auto;
    border-radius: 12px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-sizing: border-box;
    position: relative;
    z-index: 3; /* above overlay */
  }

  .contact-form-box h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 16px;
    color: #ffcc00;
  }

  .contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .contact-form-box input,
  .contact-form-box select,
  .contact-form-box textarea {
    font-size: 14px;
    padding: 10px;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    outline: none;
  }

  .contact-form-box input::placeholder,
  .contact-form-box textarea::placeholder {
    color: rgba(255,255,255,0.65);
  }

  .contact-form-box button {
    font-size: 15px;
    padding: 12px;
    margin-top: 8px;
    background: linear-gradient(135deg, #ffcc00, #ffb700);
    color: #081f42;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  .contact-form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,204,0,0.45);
  }
}

/* =========================
   MOBILE FIX – CONTACT US
========================= */
@media (max-width: 1023px) {

  /* REMOVE DESKTOP FULL-WIDTH HACK */
  .contact-bg {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 50px 16px 40px;
  }

  /* STACK CONTENT */
  .contact-bg-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* TEXT */
  .contact-left {
    text-align: center;
  }

  .contact-left h2 {
    font-size: 26px;
  }

  /* FORM — FORCE VISIBILITY */
  .contact-form-box {
    display: block !important;
    width: 90%;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }

  /* REMOVE EXTRA WHITE SPACE */
  .contact-bg::after {
    display: none;
  }

  .contact-bg {
    padding-bottom: 50px !important; /* creates background space below form */
  }
}






/* =====================================
   MOBILE – REMOVE ALL TOP/BOTTOM GAPS
   HERO IMAGE FLUSH FIX
===================================== */
@media (max-width: 768px) {

  /* RESET BODY & HTML */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* KILL GLOBAL SECTION PADDING */
  section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* HEADER SHOULD NOT PUSH CONTENT */
  .site-header,
  .header-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* HERO IMAGE – FULL BLEED */
  .hero-image {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
    transform: none !important;
  }

  .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
  }

  /* HIDE ALL HERO CONTENT (TEMP) */


  /* REMOVE ALL OVERLAYS */
 
 @media (max-width: 768px) {
  main {
    padding-top: 110px;
  }
}


  /* NEXT SECTION MUST START CLEAN */
  .authority-section {
    margin-top: 0 !important;
    padding-top: 16px !important; /* controlled spacing */
  }
}


/* =====================================
   MOBILE – USE TOP GAP FOR HERO TEXT (OVERRIDE)
===================================== */
@media (max-width: 768px) {

 

  /* PLACE TEXT ABOVE IMAGE */
 

  .hero-content h1 {
    font-size: 20px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
    color: #002046 !important;
    margin: 0 0 8px 0 !important;
  }

  .hero-subtext {
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: #444 !important;
    margin: 0 !important;
  }

  /* KEEP CTA HIDDEN FOR NOW */
  .hero-cta,
  .hero-subtext,
  .desktop-text,
  .mobile-text {
    display: none !important;
  }
}




/* =====================================
   MOBILE – HERO TEXT PROPER ALIGNMENT
===================================== */
@media (max-width: 768px) {

  /* Ensure hero is the positioning context */
  .hero-image {
    position: relative !important;
    overflow: hidden !important;
  }

  /* Center text block ON the image */
  .hero-inner {
    position: absolute !important;
    top: 22% !important;          /* vertical position on image */
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: 100% !important;
    max-width: 420px !important;  /* keeps it readable */
    padding: 0 16px !important;

    z-index: 6 !important;
    text-align: left !important;
  }

  .hero-content {
    margin: 0 !important;
  }

  .hero-content h1 {
    font-size: 25px !important;
    line-height: 1.25 !important;
    color: #b7d3ebcd !important;
    margin-bottom: 6px !important;
  }

  .hero-subtext {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 !important;
  }
}


/* =====================================
   MOBILE – HERO TEXT WIDTH CONTROL
===================================== */
@media (max-width: 768px) {

  /* Hero container stays centered */
  .hero-inner {
    position: absolute !important;
    top: -41% !important;           /* 🔧 EDIT vertical position */
    left: 49.5% !important;
    transform: translateX(-50%) !important;

    width: 100% !important;
    padding: 0 16px !important;
    z-index: 6 !important;
  }

  /* HEADLINE — FULL WIDTH */
  .hero-content h1 {
    width: 300% !important;        /* 🔥 FULL WIDTH */
    max-width: 300% !important;

    font-size: 16px !important;
    font-weight: 2000 !important;
    line-height: 1.25 !important;
    color: #c8dceb94 !important;
    margin: 0 0 0px 0 !important;
  }

  /* PARAGRAPH — HALF WIDTH */
  .hero-subtext {
    width: 100% !important;         /* 🔥 HALF WIDTH */
    max-width: 100% !important;

    font-size: 12px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.525) !important;
    margin: 0 !important;
  }
  
}


/* =====================================
   MOBILE – HERO PREMIUM TEXT STYLING
   (STYLE ONLY – NO SIZE / LAYOUT CHANGES)
===================================== */
@media (max-width: 768px) {

  /* PREMIUM HEADLINE LOOK */
  .hero-content h1 {
    letter-spacing: 0.3px !important;
    text-transform: uppercase;

    /* subtle premium glow */
    text-shadow:
      0 2px 6px rgba(0, 0, 0, 0.60),
      0 6px 18px rgba(0, 0, 0, 0.35);

    /* smooth rendering */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* PREMIUM PARAGRAPH LOOK */
  .hero-subtext {
    letter-spacing: 0.35px !important;

    /* glassy readability */
    text-shadow:
      0 1px 3px rgba(0, 0, 0, 0.8);

    /* elegant weight feel */
    font-weight: 300 !important;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }


}

@media (max-width: 768px) {

  .hero-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 90px;
    padding: 6px 10px;       /* tiny padding */
    font-size: 9px;          /* small font */
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;

    color: #002046;
    background: linear-gradient(135deg, #ffcc00, #ffb700);
    border-radius: 4px;       /* small round corners */

    text-decoration: none;
    box-shadow:
      0 3px 8px rgba(255, 204, 0, 0.35),
      inset 0 1px 0 rgba(255,255,255,0.3);

    white-space: nowrap;      /* single line */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .hero-mobile-cta:active {
    transform: translateY(1px);
    box-shadow:
      0 2px 5px rgba(255, 204, 0, 0.3);
  }
}

@media (max-width: 768px) {

  .hero-mobile-cta {
    animation: ctaPulse 1.2s infinite ease-in-out; /* 🔥 faster pulse */
  }

  @keyframes ctaPulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.06); /* subtle premium pulse */
    }
    100% {
      transform: scale(1);
    }
  }

  /* 🔒 Prevent shadow animation */
  .hero-mobile-cta:hover,
  .hero-mobile-cta:focus {
    box-shadow:
      0 3px 8px rgba(255, 204, 0, 0.35),
      inset 0 1px 0 rgba(255,255,255,0.3);
  }
}




/* =====================================
   MOBILE – FORCE HERO FORM BELOW IMAGE
   (NO DESKTOP IMPACT)
===================================== */
@media (max-width: 768px) {

  /* Hero stays overlay-only */
/* ONLY disable decorative hero layers */
.hero-image,
.hero-overlay {
  pointer-events: none;
}

/* Allow rest of page to work normally */
.hero-content,
.hero-mobile-cta {
  pointer-events: auto;
}


  .hero-content,
  .hero-mobile-cta {
    pointer-events: auto;
  }

  /* 🔥 REMOVE FORM FROM ABSOLUTE SYSTEM */
  .contact-form-box.hero-form {
    position: relative !important;
    top: 460px !important;
    left: -150px !important;
    right: auto !important;
    bottom: -10px !important;
    transform: none !important;

    margin: 180px auto 32px !important;
    width: 92% !important;
    max-width: 420px !important;

    display: block !important;
    z-index: 1 !important;
  }

  /* Ensure form is NOT visually tied to hero overlay */
  .hero-image {
    overflow: visible !important;
  }
}


/* =====================================
   MOBILE – EXTEND HERO GAP WITHOUT ZOOM
===================================== */
@media (max-width: 768px) {

  /* DO NOT stretch or crop image */
  .hero-image img {
    height: auto !important;
    min-height: unset !important;
    object-fit: unset !important;
  }

  /* Extend hero area instead */
  .hero-image {
    position: relative !important;
    padding-top:125px !important;
    padding-bottom: 380px !important;  /* 🔧 EDIT GAP SIZE HERE */
    overflow: visible !important;
  }

  /* Form lives in that extended hero area */
  .contact-form-box.hero-form {
    position: absolute !important;
    padding: 10px;
    left: 50% !important;
    bottom: 10px !important;           /* 🔧 vertical placement */
    transform: translateX(-50%) !important;

    width: calc(100% - 32px) !important;
    max-width: 420px !important;

    z-index: 6 !important;
  }
}
/* =====================================
   MOBILE – SHORTEN FORM HEIGHT
===================================== */
@media (max-width: 768px) {

  /* Reduce overall form padding */
  .contact-form-box.hero-form {
    padding: 2px 12px 10px !important;   /* 🔧 smaller form height */
  }

  /* Make inputs slightly shorter */
  .contact-form-box.hero-form input,
  .contact-form-box.hero-form select {
    height: 30px !important;         /* 🔧 input height */
    padding: 5px 8px !important;
    font-size: 14px !important;
  }

  /* Reduce textarea (Brief Description) */
  .contact-form-box.hero-form textarea {
    height: 56px !important;         /* 🔧 SHORT textarea */
    min-height: 56px !important;
    padding: 8px 10px !important;
    font-size: 13px !important;
    resize: none !important;
  }

  /* Slightly smaller button */
  .contact-form-box.hero-form button {
    padding: 10px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 768px) {

  .hero-form,
  .hero-form * {
    font-family: 'Montserrat', Arial, sans-serif !important;
    box-sizing: border-box;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
  }
}


@media (max-width: 768px) {

  .select-question {
    display: block;
    margin: 6px 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
  }

  .hero-form select {
    width: 100%;
    padding: 12px 40px 12px 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 4px;
    color: #ffffff;
    appearance: none;
    cursor: pointer;
  }

  /* dropdown arrow */
  .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% - 18px) 50%,
      calc(100% - 12px) 50%;
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }
}
   

@media (max-width: 768px) {

  .select-question {
    padding-left: 10px;
    display: block;
    margin: 6px 0 6px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.658);
    line-height: 1.4;
  }

  .hero-form select {
    width: 100%;
    padding: 12px 40px 12px 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 4px;
    color: #ffffff;
    appearance: none;
    cursor: pointer;
  }

  /* dropdown arrow */
  .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% - 18px) 50%,
      calc(100% - 12px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
  }
}

@media (max-width: 768px) {

  .hero-form textarea {
    margin-bottom: 12px !important;
  }

  .hero-form button {
    margin-top: 14px !important;
    position: relative;
    z-index: 2;
  }
}

/* ==========================
   HERO FORM – DROPDOWN FIX
========================== */
@media (max-width: 768px) {

  /* wrapper same width as inputs */
  .contact-form-box.hero-form .select-wrap {
    width: 100%;
    margin-bottom: 14px;
  }

  /* heading — SAME font as inputs */
  .contact-form-box.hero-form .select-title {
    margin-bottom: 6px;
    padding-left: 2px;

    font-family: inherit;        /* 🔥 force same font */
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;

    color: rgba(255, 255, 255, 0.655);
    max-width: 92%;              /* natural 2-line break */
  }

  /* select — visually identical to inputs */
  .contact-form-box.hero-form select {
    width: 100%;
    height: auto;

    padding: 12px 42px 12px 12px;
    margin: 0;

    font-family: inherit;        /* 🔥 CRITICAL */
    font-size: 14px;
    font-weight: 500;

    color: #ffffffa7;
    background: rgba(255, 255, 255, 0);

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 4px;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;
  }

  /* arrow — clear dropdown affordance */
  .contact-form-box.hero-form select {
    background-image:
      linear-gradient(45deg, transparent 50%, #ffcc00 50%),
      linear-gradient(135deg, #ffcc00 50%, transparent 50%);
    background-position:
      calc(100% - 18px) 50%,
      calc(100% - 12px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
  }
}





/* =====================================
   MOBILE – FIX FORM CLICK (NO LAYOUT TOUCH)
===================================== */
@media (max-width: 768px) {

  /* Stop hero layers from stealing clicks */
  .hero-image img {
    pointer-events: none;
  }

  .hero-overlay {
    pointer-events: none;
  }

  /* Put form above hero visually AND interactively */
  .contact-form-box.hero-form {
    position: relative;
    z-index: 50;
  }

  /* Enable clicks ONLY on actual inputs */
  .contact-form-box.hero-form input,
  .contact-form-box.hero-form textarea,
  .contact-form-box.hero-form select,
  .contact-form-box.hero-form button {
    pointer-events: auto;
  }
}



/* =====================================
   DESKTOP – HERO CTA (MATCH MOBILE STYLE)
===================================== */
@media (min-width: 769px) {

  .hero-desktop-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 22px;
    padding: 12px 22px;          /* desktop-friendly */
    font-size: 14px;             /* readable, premium */
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;

    color: #002046;
    background: linear-gradient(135deg, #ffcc00, #ffb700);
    border-radius: 6px;

    text-decoration: none;
    white-space: nowrap;

    box-shadow:
      0 6px 18px rgba(255, 204, 0, 0.35),
      inset 0 1px 0 rgba(255,255,255,0.35);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .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);
  }
}

/* =====================================
   CTA VISIBILITY CONTROL (FINAL FIX)
===================================== */

/* Default: hide both (safe baseline) */
.hero-mobile-subheading,
.hero-mobile-cta,
.hero-desktop-cta {
  display: none !important;
}

/* 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;
  }
}

/* =====================================
   MOBILE HERO – MICRO SUBTEXT (FINAL)
===================================== */
@media (max-width: 768px) {

  .hero-mobile-subheading {
    margin-top: 1px !important;
    margin-bottom: 0 !important;
    max-width: 88% !important;

    font-size: 14px !important;      /* 🔥 very small */
    line-height: 1.45 !important;
    font-weight: 400 !important;
    letter-spacing: 0.15px !important;

    color: rgba(186, 195, 201, 0.785) !important;

    background: none !important;
    padding: 0 !important;
    border: none !important;

    text-shadow: 0 1px 1px rgba(0,0,0,0.4) !important;
  }

}
/* Hide mobile subheading by default (desktop & tablet) */
.hero-mobile-subheading {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .hero-mobile-subheading {
    display: block;
  }
}



/* ======================
   FOOTER FORM – LABEL SCALE FIX
====================== */
/* =====================================
   MOBILE – FOOTER CONTACT FORM FIX
===================================== */
@media (max-width: 768px) {

  /* FORM BOX */
  .contact-form-box {
    width: 100%;
    padding: 26px 18px;
    border-radius: 14px;
    box-sizing: border-box;
  }

  /* TITLE */
  .contact-form-box h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  /* FORM */
  .contact-form-box .claim-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  /* INPUTS & SELECT */
  .contact-form-box input,
  .contact-form-box select,
  .contact-form-box textarea {
    width: 100%;
    height: 34px;
    font-size: 14.5px;
    padding: 10px;
    border-radius: 10px;
    box-sizing: border-box;
  }


/* INPUTS & SELECT – SHORTER HEIGHT */
.contact-form-box input,
.contact-form-box select {
  height: 34px;
  padding: 0 14px;
  font-size: 14.5px;
}



  /* TEXTAREA */
  .contact-form-box textarea {
    height: 90px;
    padding-top: 12px;
    resize: none;
  }

  /* LABEL QUESTION */
  .contact-form-box .select-question {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 8px 0 4px;
  }

  /* SELECT – LOOK SELECTABLE */
  .contact-form-box select {
    appearance: none;
    background-image:
      linear-gradient(45deg, transparent 50%, #ffc400 50%),
      linear-gradient(135deg, #ffc400 50%, transparent 50%);
    background-position:
      calc(100% - 18px) 20px,
      calc(100% - 12px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
  }

  /* SUBMIT BUTTON */
  .contact-form-box button {
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    border-radius: 12px;
  }
}








/* =====================================
   FOOTER CONTACT FORM – COMPACT FIX
===================================== */
@media (max-width: 768px) {
.contact-form-box:not(.hero-form) {
  padding: 24px 22px;   /* reduce outer area */
}

/* CENTER HEADING */
.contact-form-box:not(.hero-form) h3 {
  text-align: center;
  margin-bottom: 16px;
}

/* FORM STACK – TIGHTER */
.contact-form-box:not(.hero-form) .claim-form {
  display: flex;
  flex-direction: column;
  gap: 10px; /* was too large */
}

/* INPUTS & SELECT – SHORTER HEIGHT */
.contact-form-box:not(.hero-form) input,
.contact-form-box:not(.hero-form) select {
  height: 34px;
  padding: 0 14px;
  font-size: 14.5px;
}

/* TEXTAREA – REDUCE HEIGHT */
.contact-form-box:not(.hero-form) textarea {
  min-height: 80px;
  padding: 10px 14px;
  font-size: 14.5px;
}

/* FIX MICRO QUESTION TEXT */
.contact-form-box:not(.hero-form) .select-question {
  font-size: 14.5px;     /* match inputs */
  font-weight: 500;
  line-height: 1.4;
  margin: 0px 0 0px;     /* align with fields */
  padding-left: 10px;    /* visual left alignment */
  
}

/* BUTTON – LESS TALL */
.contact-form-box:not(.hero-form) button {
  height: 46px;
  margin-top: 10px;
  font-size: 15px;
}


}





@media (max-width: 768px) {
  .nav-dropdown .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}



/* =========================
   ABOUT – MOBILE RESET
========================= */
@media (max-width: 768px) {

  section.section-soft {
    padding: -20px !important;
  }

  /* GLOBAL CONTAINERS */
  .about-jc-inner,
  .about-mission-inner,
  .about-commitment-inner,
  .trust-grid,
  .why-choose-inner {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding: 0 18px;
    
  }

  /* STACK IMAGE BELOW TEXT */
  .about-jc-image,
  .about-mission-image,
  .about-commitment-image,
  .trust-image,
  .why-right {
    order: 2;

  }

  .about-jc-text,
  .about-mission-text,
  .about-commitment-text,
  .trust-content,
  .why-left {
    order: 1;
  }

  /* =========================
     TYPOGRAPHY SCALE
  ========================= */
  .about-jc-text h1 {
    font-size: 25px;
    line-height: 1.25;
    
  }

  .about-mission-text h2,
  .about-commitment-text h2,
  .trust-title,
  .why-left h2 {
    font-size: 25px;
    line-height: 1.25;
    
  }

  .about-lead,
  .about-mission-lead,
  .about-jc-text p,
  .about-mission-text p,
  .trust-text,
  .why-desc {
    font-size: 16px;
    line-height: 1.65;
    
    
  }

  .about-eyebrow,
  .values-eyebrow,
  .why-eyebrow {
    font-size: 13px;
    letter-spacing: 1.4px;
    margin-top: 30px;
   
  }

  /* =========================
     IMAGES – MOBILE SAFE
  ========================= */
  .about-jc-image img,
  .about-mission-image img,
  .about-commitment-image img,
  .trust-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
  }

  /* REMOVE OFFSET IMAGE PUSH */
  .about-commitment-image img {
    margin-left: 0;
    width: 100%;
  }

  /* =========================
     COMMITMENT LIST
  ========================= */
  .commitment-points li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  /* =========================
     VALUES SECTION
  ========================= */
  .values-section {
    padding: 40px 0;
  }

  .values-title {
    font-size: 25px;
  }

  .values-intro {
    font-size: 16px;
    margin-bottom: 26px;
  }

  .values-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .value-item {
    max-width: 100%;
  }

  .value-icon img {
    width: 72px;
  }

  .value-item h4 {
    font-size: 22px;
  }

  .value-item p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* REMOVE HOVER FLOAT ON MOBILE */
  .value-item:hover {
    transform: none;
  }

  /* =========================
     WHY CHOOSE US
  ========================= */
  .why-desc {
    width: 100%;
    margin-bottom: 18px;
  }

  .why-points li {
    font-size: 16px;
    margin-bottom: 8px;
  }

}





@media (max-width: 768px) {

  .about-jc {
    padding: 24px 0 40px;
  }

  .about-jc-inner {
    padding: 0 8px;
    gap: 22px;
  }

  .about-jc-text {
    text-align: left;
  }

  .about-eyebrow {
    display: block;
    margin-bottom: 10px;
  }

  .about-jc-text h1 {
    margin-top: 0;
  }

}


@media (max-width: 768px) {

  section.section-soft {
    padding: 40px 0;
  }

  .values-section {
    padding: 42px 0;
    
  }

  .trust-section {
    padding: 40px 0;
  }

}


@media (max-width: 768px) {

  .about-jc-image img,
  .about-mission-image img,
  .about-commitment-image img,
  .trust-image img {
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }

}

@media (max-width: 768px) {

  .page-content {
    padding-top: 110px; /* same as header height */
  }

}


@media (max-width: 768px) {

  #overview,
  #who-we-are,
  #why-choose-us {
    scroll-margin-top: 140px;
  }

}

@media (max-width: 768px) {

  /* ABOUT PAGE SECTION SPACING FIX */
  #overview,
  #who-we-are,
  #why-choose-us {
    padding-top: 20px !important;
    margin-top: 0 !important;
  }

  /* EYEBROW / SECTION LABEL SPACING */
  #overview .section-eyebrow,
  #who-we-are .section-eyebrow,
  #why-choose-us .section-eyebrow {
    margin-top: 0 !important;
    margin-bottom: 16px !important;
    padding-top: 0 !important;
  }

}

@media (max-width: 768px) {

  /* WHY FAMILIES TRUST US – FORCE TOP SPACE */
  .trust-section,
  #trust,
  .why-trust-us {
    padding-top: 20px !important;
    margin-top: 0 !important;
  }

  /* EYEBROW FIX – TRUST SECTION */
  .trust-section .section-eyebrow,
  #trust .section-eyebrow,
  .why-trust-us .section-eyebrow {
    display: block;
    margin-top: 24px !important;
    margin-bottom: 16px !important;
  }

}



@media (max-width: 768px) {

  /* WHY CHOOSE US IMAGE – PREMIUM CARD */
  .why-choose-us img:last-child,
  #why-choose-us img:last-child {
    border-radius: 16px;
   box-shadow: none;
   margin-top: -50px;
   
    
    padding: 6px;
  }

}


@media (max-width: 768px) {

  /* FEATURE IMAGE CARD STYLE */
  .feature-image img,
  .section-image img {
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
  }

}


@media (max-width: 768px) {

  /* WHO WE ARE – KEEP IMAGE CENTERED */
  #who-we-are img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
  }

}

@media (max-width: 768px) {

  /* REMOVE DOUBLE SIDE PADDING — ABOUT PAGE */
  body.page-about .about-jc-inner,
  body.page-about .about-mission-inner,
  body.page-about .about-commitment-inner,
  body.page-about .trust-grid,
  body.page-about .why-choose-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}
@media (max-width: 768px) {

  body.page-about section.section-soft {
    padding-left: 26px;
    padding-right: 28px;
  }

}





@media (max-width: 768px) {

  /* ==========================
     ABOUT PAGE – PREMIUM IMAGES
  ========================== */

  .page-about section img {
    display: block;
  
    height: auto;

    margin-bottom: 28px;        /* spacing below images */
    border-radius: 16px;

    box-shadow: 0 40px 100px rgba(0,0,0,0.80);
  }

}


@media (max-width: 768px) {
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 3000;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  nav {
    z-index: 3100;
  }
}


.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 3000;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

nav {
  position: fixed; /* or absolute if you already had it */
  z-index: 3100;
}



@media (max-width: 768px) {

  /* PAGE OFFSET */
  body.page-claims .page-content {
    padding-top: 10px;
  }

  /* CLAIM PROCESS SECTION */
  .claim-process-section {
    padding: 40px 16px;
    min-height: auto !important;
  }

  /* STACK GRID TO SINGLE COLUMN */
  .claim-process-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px;
    padding: 0 16px;
  }

  /* STACK IMAGE BELOW TEXT */
  .claim-process-image {
    order: 2;
    margin-top: 20px;
  }

  .claim-process-content {
    order: 1;
    text-align: left;
    margin-top: 140px;

  }

  .claim-process-content h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .claim-process-content p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .claim-process-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: -40px; /* remove negative margin */
  }

  /* CTA BUTTON */
  .claim-process-image .btn-primary {
    margin-left: 40px;
    display: inline-block;
  }

  /* =====================
     PROCESS ORBS
  ===================== */
  .process-orbs {
    padding: 30px 0;
  }

  .process-strip-inner {
    padding: 0 16px;
  }

  .process-strip-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .process-strip-header h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .process-strip-header p {
    font-size: 16px;
    line-height: 1.65;
  }

  /* STACK ORBS CENTER */
  .process-orbs-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .process-orb {
    text-align: center;
    max-width: 100%;
  }

  /* ORB CIRCLE */
  .orb-circle {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #f2f6fc;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .orb-circle img {
    width: 40px;
    height: auto;
  }

  /* ORB META */
  .orb-step {
    font-size: 12px;
    letter-spacing: 1.4px;
    margin-top: 20px;
    display: block;
  }

  .process-orb h4 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .process-orb p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* REMOVE VERTICAL GAPS BETWEEN SECTIONS */
  body.page-claims .claim-process-section,
  body.page-claims .process-orbs {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}






@media (max-width: 768px) {

  /* FORCE CLAIM SECTIONS INTO VIEW */
  body.page-claims section {
    position: relative !important;
    top: 0 !important;
    margin-top: 0 !important;
  }

  body.page-claims .claim-process-section {
    
    min-height: 300px !important;
    padding-top: 120px !important;
    z-index: 1 !important;
  }

  body.page-claims .claim-process-content h2 {
    
    font-size: 26px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

}
@media (max-width: 768px) {

  /* REMOVE ALL VERTICAL GAPS BETWEEN CLAIM SECTIONS */
  body.page-claims .claim-process-section,
  body.page-claims .process-orbs {
    margin: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  body.page-claims .process-orbs {
    padding-top: 20px !important;
  }

}



/* =====================================
   MOBILE BLOG RESET & FIX (FINAL)
===================================== */

@media (max-width: 768px) {

  /* ===== GLOBAL SAFETY RESET FOR BLOG ===== */
  .blog-subscribe,
  .featured-blogs {
    position: relative;
    overflow: visible;
  }

  .blog-subscribe *,
  .featured-blogs * {
    transform: none !important;
  }

  /* =====================================
     BLOG SUBSCRIBE (TOP SECTION)
  ===================================== */

  .blog-subscribe {
    padding: 40px 0;
  }

  .blog-subscribe-inner {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
    padding: 0 18px;
  }

  /* IMAGE FIRST ON MOBILE */
  .blog-subscribe-image {
    order: 1;
    text-align: center;
  }

  .blog-subscribe-image img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: block;
    margin-top: 140px;
  }

  /* CONTENT */
  .blog-subscribe-content {
    order: 2;
    text-align: center;
  }

  .blog-subscribe-content h2 {
    position: static !important;
    margin-top: 0 !important;
    font-size: 24px;
    line-height: 1.3;
    text-align: left;
    padding-left: 10px;
  }

  .blog-subscribe-content p {
    font-size: 15px;
    line-height: 1.6;
     text-align: left;
    padding-left: 10px;
  }

  /* FORM */
  .subscribe-form {
    flex-direction: column;
    gap: 12px;
    margin: 20px auto 0;
    width: 100%;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }

  /* =====================================
     FEATURED BLOGS
  ===================================== */

  .featured-blogs {
    padding: 50px 0;
  }

  .featured-header {
    padding-top: 30px;
    text-align: center;
    margin-bottom: 30px;
  }

  .featured-header h2 {
    position: static !important;
    margin-top: 0 !important;
    font-size: 26px;
  }

  /* STACK */
  .blogs-stack {
    gap: 30px;
  }

  /* =====================================
     BLOG CARD
  ===================================== */

  .blog-row {
    display: flex !important;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
     margin-bottom: 20px;
     
  }

  /* IMAGE */
  .blog-row .blog-image {
    width: 100%;
    height: auto;
  }

  .blog-row .blog-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* CONTENT */
  .blog-row .blog-content {
    padding: 22px;
    position: relative
    
  }

  .blog-row h3 {
    position: static !important;
    margin-top: -50px !important;
    font-size: 20px;
    line-height: 1.35;
  }

  .blog-row p {
    font-size: 15px;
    line-height: 1.6;
    
   
  }

  /* READ MORE */
  .read-more {
    margin-top: 14px;
    font-size: 15px;
    
  }

}




.blog-more {
  display: none;
}

.blog-more.open {
  display: block;
}
.blog-more {
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.blog-more.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}



/* ======================
   FAQS – MOBILE POLISH
====================== */
@media (max-width: 768px) {

  /* Wrapper spacing */
  .faqs-wrapper {
    padding: 16px 14px 40px;
  }

  /* Header */
  .faqs-header {
    margin-top: 140px;
    margin-bottom: 36px;
  }

  .faqs-header h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .faqs-header p {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 6px;
  }

  /* FAQ groups */
  .faq-group {
    margin: 0 auto 42px;
    max-width: 100%;
  }

  .faq-group h2 {
    font-size: 20px;
    margin-bottom: 18px;
    padding-left: 4px;
  }

  /* FAQ card */
  .faq-item {
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  }

  /* Question button */
  .faq-question {
    padding: 16px 16px;
    font-size: 15px;
    line-height: 1.45;
    gap: 12px;
  }

  /* Plus / minus icon */
  .faq-question span {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .faq-question span::before {
    height: 2px;
  }

  .faq-question span::after {
    width: 2px;
  }

  /* Answer */
  .faq-answer {
    padding: 0 16px;
  }

  .faq-answer p {
    font-size: 14.5px;
    line-height: 1.7;
    padding: 12px 0 18px;
  }

  /* Active state – calmer glow */
  .faq-item.active {
    box-shadow: 0 20px 50px rgba(26, 127, 90, 0.22);
  }

  /* Accent bar thinner on mobile */
  .faq-item::before {
    width: 3px;
  }

  /* Remove hover lift on touch devices */
  .faq-item:hover {
    transform: none;
  }

  .faq-question:hover {
    background: none;
  }
}
/* ======================
   FAQ → FOOTER DIVIDER
====================== */

.faqs-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 80px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
}



/* =====================================
   CONTACT PAGE – MOBILE (≤768px)
===================================== */
@media (max-width: 768px) {

  /* --------------------
     GLOBAL SPACING RESET
  -------------------- */
  .page-contact {
    overflow-x: hidden;
  }

  /* --------------------
     HERO / FORM SECTION
  -------------------- */
  .contact-bg {
    padding: 80px 16px 60px;
  }

  .contact-bg-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* LEFT CONTENT */
  .contact-left {
    text-align: center;
  }

  .contact-eyebrow {
    margin-top: 150px;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
  }

  .contact-left h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .contact-left p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 20px;
  }

  .contact-features {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .contact-features li {
    font-size: 15px;
    margin-bottom: 8px;
  }

  /* --------------------
     FORM BOX
  -------------------- */
  .contact-form-box {
    padding: 28px 22px;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
  }

  .contact-form-box h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 18px;
  }

  .claim-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .claim-form input,
  .claim-form select,
  .claim-form textarea {
    font-size: 15px;
    padding: 14px 14px;
    border-radius: 10px;
  }

  .claim-form textarea {
    min-height: 120px;
  }

  .claim-form button {
    margin-top: 10px;
    padding: 15px;
    font-size: 16px;
    border-radius: 12px;
  }

  /* --------------------
     SECTION DIVIDER
  -------------------- */
  .section-divider {
    height: 24px;
    margin: 0px 0;
    opacity: 0.4;
  }

  /* --------------------
     CONTACT STRIP
  -------------------- */
  .contact-strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 16px;
  }

  .contact-strip-item {
    justify-content: flex-start;
    font-size: 15px;
  }

  .contact-strip-item img {
    width: 42px;
  }

  /* --------------------
     CONTACT MAIN
  -------------------- */
  .contact-main {
    padding: 50px 16px 70px;
  }

  .contact-main-inner {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .contact-content {
    text-align: center;
  }

  .contact-content h1 {
    margin-top: 30px;
    font-size: 27px;
    line-height: 1.25;
    margin-bottom: 24px;
  }

  .contact-hours-box {
    margin: 0 auto;
    padding: 2px 2px;
    max-width: 60%;
  }

  .contact-hours-box h3 {
    font-size: 22px;
  }

  .contact-hours-box p {
    font-size: 18px;
  }

  .contact-hours-box strong {
    font-size: 19px;
  }

  /* MAP */
  .contact-map img {
    max-width: 100%;
    margin: auto;
  }
}



/* =====================================
   TESTIMONIALS – MOBILE ONLY
===================================== */
@media (max-width: 768px) {

  /* PAGE WRAPPER */
  .page-testimonials {
    padding: 40px 0 60px;
  }

  .page-testimonials .testimonials-wrapper {
    margin: 0 auto;
    padding: 0 16px;
  }

  /* ======================
     HEADER
  ====================== */
  .testimonials-header {
    margin-bottom: 28px;
  }

  .testimonials-header .eyebrow {
    margin-top: 140px;
    font-size: 12px;
    letter-spacing: 2.5px;
  }

  .testimonials-header h1 {
    font-size: 27px;
    line-height: 1.25;
    margin: 10px 0;
  }

  .testimonials-header p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  /* ======================
     GOOGLE CTA
  ====================== */
  .google-review-cta {
    flex-direction: column;
    gap: 0px;
    margin-top: -40px;
    
  }

  .google-review-cta img {
    height: 120px;
    margin-bottom: -30px;
  }

  .write-review-btn {
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 8px;
  }

  /* ======================
     GRID
  ====================== */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* ======================
     CARD
  ====================== */
  .testimonial-card {
    padding: 22px 20px;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0,32,70,0.14);
  }

  .testimonial-card:hover {
    transform: none;
    box-shadow: 0 14px 40px rgba(0,32,70,0.14);
  }

  /* ======================
     TOP
  ====================== */
  .testimonial-top {
    justify-content: space-between;
    margin-bottom: 14px;
  }

  .google-icon {
    width: 42px;
    height: 42px;
  }

  .stars {
    font-size: 15px;
    letter-spacing: 1px;
  }

  /* ======================
     TITLE
  ====================== */
  .testimonial-card h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #002046;
  }

  /* ======================
     TEXT
  ====================== */
  .testimonial-text,
  .testimonial-card p {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 16px;
    color: #4a5a70;
  }

  /* ======================
     USER
  ====================== */
  .testimonial-user strong,
  .testimonial-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #002046;
    margin-bottom: 2px;
  }

  .testimonial-user span {
    font-size: 13px;
    color: #7a8aa0;
  }

}


@media (max-width: 768px) {

/* Hamburger button */
.menu-toggle {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 4500;
}

/* Lines */
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #002046;   /* default color */
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.menu-toggle:hover span {
  background: #1a7f5a;   /* premium green on hover */
}

/* Active / clicked effect */
.menu-toggle.active span {
  background: #1a7f5a;   /* premium green when menu open */
}

}






@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 260px;
    height: 100vh;
  
    z-index: 4000;
    padding-top: 100px;
    padding-left: 20px;
    box-sizing: border-box;

    display: none; /* HIDDEN BY DEFAULT */
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;

    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  nav.active {
    display: flex;       /* SHOW WHEN ACTIVE */
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 18px;
    font-weight: 600;
  
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .nav-menu a:hover {
    color: #1a7f5a;
    transform: translateX(4px);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 3500;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}




@media (max-width: 768px) {

  /* =========================
     PROCESS STRIP – PURE STATIC
  ========================= */

  /* No section background */
 

  /* Disable ALL interaction */
  .process-orb,
  .orb-circle,
  .orb-circle img {
    pointer-events: none !important;
    cursor: default !important;
  
  }

  /* Remove circle background completely */
  .orb-circle {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }

  /* Keep images original */
  .orb-circle img {
    filter: none !important;
    transform: none !important;
    width: 100px !important; /* clean mobile size */
  }

  /* Always show descriptions */
  .orb-meta p {
    opacity: 1 !important;
    max-height: none !important;
    overflow: visible !important;
    transition: none !important;
  }

  /* Kill hover / animations entirely */
  .process-orb:hover *,
  .process-orb * {
    animation: none !important;
    transform: none !important;
    box-shadow: none !important;
  }

  /* Remove connector line */
  .process-orbs::before {
    display: none !important;
  }

  /* Premium spacing */
  .process-orb {
    padding: 0px 0px;
  }

}


@media (max-width: 768px) {

  /* =========================
     SECTION SPACING (TIGHT)
  ========================= */
  .process-strip {
    padding: 12px 0 16px;
  }

  .process-strip-inner {
    padding: 0 16px;
    text-align: left;
  }

  /* =========================
     HEADER – PREMIUM EDITORIAL
  ========================= */
  .process-strip-header {
    margin-bottom: 14px;
    text-align: left;
  }

  .process-strip-header h2 {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 6px;
    color: #002046;
  }

  .process-strip-header p {
    font-size: 18px;
    line-height: 1.45;
    color: #5b6f86;
    margin: 0;
    max-width: 100%;
  }

  /* =========================
     ORBS GRID – COMPACT
  ========================= */
  .process-orbs {
    padding: 4px 0 0;
  }

  .process-orbs-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2px 1px; /* reduced row & column gap */
  }

}


@media (max-width: 768px) {

  /* Make sure contact form never overlaps */
  .contact-section .contact-form-box {
    position: relative !important;
    margin-top: 30px !important;
    z-index: 1 !important;
  }

}





/* ===========================
   Mobile Nav Dropdown Styles
=========================== */

/* Base dropdown menu */
.nav-dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
  background: #ffffff; /* clean white */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12); /* subtle premium shadow */
  margin: 8px 0;
  padding: 12px 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 16px;
}

/* Show dropdown when parent has .open */
.nav-dropdown.open .dropdown-menu {
  display: flex;
}

/* Dropdown links */
.nav-dropdown .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #1f1f1f; /* dark text */
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

/* Hover effect */
.nav-dropdown .dropdown-menu li a:hover {
  background: #f0f0f0; /* subtle hover bg */
  color: #0071f3; /* premium accent color */
  border-radius: 8px;
}

/* Arrow styling */
.nav-dropdown > a .dropdown-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.nav-dropdown.open > a .dropdown-arrow {
  transform: rotate(180deg);
}

/* Optional: smooth expand animation */
.nav-dropdown .dropdown-menu {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.35s ease;
}

.nav-dropdown.open .dropdown-menu {
  max-height: 500px; /* large enough for all items */
  opacity: 1;
  transform: translateY(0);
}

/* Make the text slightly premium */
.nav-dropdown .dropdown-menu li a {
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}


