
    /* ══════════════════════════════════════════════
       BRAND COLOR SCHEMA — Varadhi Hair N Glow
    ══════════════════════════════════════════════ */

    /* ══════════════════════════════════════════════
   GOTHAM FONT FAMILY — Self-hosted
══════════════════════════════════════════════ */
@font-face {
  font-family: 'Gotham';
  src: url('../../assets/fonts/gotham/Gotham-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../assets/fonts/gotham/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../assets/fonts/gotham/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../assets/fonts/gotham/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../assets/fonts/gotham/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../../assets/fonts/gotham/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
    :root {
      /* PRIMARY COLORS */
      --primary:        #1B4F8A;   /* Deep Navy Blue */
      --primary-dark:   #0F3060;   /* Darker Navy */
      --primary-light:  #2E6BAD;   /* Medium Blue */

      /* ACCENT / TEAL */
      --teal:           #2AB5A0;   /* Teal Green */
      --teal-light:     #3DD4BC;   /* Light Teal */
      --teal-dark:      #1A8A78;   /* Deep Teal */

      /* GRADIENT */
      --grad-start:     #1B4F8A;   /* Navy Blue */
      --grad-mid:       #2196A8;   /* Ocean Blue-Teal */
      --grad-end:       #2AB5A0;   /* Pure Teal */

      /* BACKGROUNDS */
      --bg-primary:     #FFFFFF;
      --bg-soft:        #ffffff;   /* Alice Blue */
      --bg-dark:        #0A1E35;   /* Deep Navy-Black */
      --bg-section:     #F0FAFA;   /* Soft Teal White */

      /* TEXT */
      --text-dark:      #0A1E35;
      --text-body:      #2C4A6E;
      --text-muted:     #2C4A6E;
      /* --text-muted:     #6A90B0; */
      --text-white:     #FFFFFF;

      /* BORDERS & SHADOWS */
      --border:         rgba(27, 79, 138, 0.15);
      --shadow:         rgba(27, 79, 138, 0.12);

      /* LAYOUT */
      --nav-h:          72px;
      --nav-h-sm:       60px;
    }

    /* ── Reset ───────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Gotham', sans-serif;
      background: var(--bg-soft);
      color: var(--text-dark);
      min-height: 200vh;
    }

    /* ══════════════════════════════════════════════
       ANNOUNCEMENT BAR
    ══════════════════════════════════════════════ */
    .announce-bar {
      /* background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark)); */
      background-color: #16436B;
      background-size: 200% 100%;
      animation: barSlide 7s linear infinite;
      color: var(--text-white);
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      text-align: center;
      padding: 7px 16px;
      position: relative;
      z-index: 1001;
    }
    .announce-bar a       { color: inherit; text-decoration: none; }
    .announce-bar a:hover { text-decoration: underline; }
    .announce-bar .hi {
      background: linear-gradient(90deg, var(--teal-light), var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }
    @keyframes barSlide {
      0%   { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    /* ══════════════════════════════════════════════
       NAVBAR WRAPPER
    ══════════════════════════════════════════════ */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 20px var(--shadow);
      transition: box-shadow 0.3s, background 0.3s;
    }
    .navbar.scrolled {
      background: #fff;
      box-shadow: 0 4px 32px rgba(27, 79, 138, 0.18);
    }

    /* ── Inner container ─────────────────────────── */
    .nav-inner {
      max-width: 1400px;
      margin: 0 auto;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      gap: 8px;
    }

    /* ══════════════════════════════════════════════
       LOGO
    ══════════════════════════════════════════════ */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-img {
      height: 65px;
      width: auto;
      object-fit: contain;
      display: block;
    }
    /* Text block — remove if logo.png contains clinic name */
    /* .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
    .logo-text .brand-main {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: -0.01em;
    }
    .logo-text .brand-sub {
      font-size: 0.61rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      background: linear-gradient(90deg, var(--teal-dark), var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .logo-text .brand-tag {
      font-size: 0.54rem;
      font-weight: 400;
      color: var(--text-muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    } */

    /* ══════════════════════════════════════════════
       DESKTOP MENU
    ══════════════════════════════════════════════ */
    .nav-menu {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
      flex: 1;
      justify-content: center;
      /* margin-left: 300px; */
    }
    .nav-menu > li { position: relative; }

    .nav-menu > li > a,
    .nav-menu > li > .nav-link-btn {
      display: flex;
      align-items: center;
      gap: 3px;
      font-family: 'Gotham', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: var(--text-body);
      text-decoration: none;
      padding: 8px 25px;
      border-radius: 8px;
      background: none;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      line-height: 1;
      transition: color 0.2s, background 0.2s;
    }
    .nav-menu > li > a:hover,
    .nav-menu > li > .nav-link-btn:hover,
    .nav-menu > li > a.active {
      color: var(--primary);
      background: var(--bg-soft);
    }
    /* active underline */
    .nav-menu > li > a.active::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 11px; right: 11px;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--primary), var(--teal));
    }

    /* chevron */
    .chevron {
      width: 12px; height: 12px;
      color: var(--text-muted);
      transition: transform 0.25s, color 0.2s;
    }
    .nav-menu > li.open > .nav-link-btn .chevron {
      transform: rotate(180deg);
      color: var(--teal);
    }

    /* ══════════════════════════════════════════════
       DROPDOWN BASE
    ══════════════════════════════════════════════ */
    .dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 16px 48px rgba(27,79,138,0.13), 0 2px 8px var(--shadow);
      list-style: none;
      padding: 8px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
      z-index: 999;
      min-width: 210px;
    }
    .nav-menu > li.open > .dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    /* arrow tip */
    .dropdown::before {
      content: '';
      position: absolute;
      top: -6px; left: 50%;
      transform: translateX(-50%);
      width: 12px; height: 6px;
      background: #fff;
      clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }

    /* section label */
    .dd-label {
      display: block;
      font-size: 0.80rem;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 6px 12px 4px;
    }
    .dd-divider { height: 1px; background: var(--border); margin: 4px 8px; }

    /* dropdown items */
    .dropdown li a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-body);
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.18s, color 0.18s;
    }
    .dropdown li a:hover { background: var(--bg-soft); color: var(--primary); }

    /* dot bullet */
    .dd-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--primary), var(--teal));
      transition: transform 0.18s;
    }
    .dropdown li a:hover .dd-dot { transform: scale(1.3); }

    /* tick */
    .dd-tick {
      font-size: 0.68rem;
      color: var(--teal-dark);
      font-weight: 800;
      flex-shrink: 0;
      width: 14px;
      text-align: center;
    }

    /* ══════════════════════════════════════════════
       MEGA DROPDOWN — HAIR (2 columns)
    ══════════════════════════════════════════════ */
    .dropdown.mega {
      min-width: 580px;
      left: 0;
      transform: translateX(0) translateY(-6px);
      padding: 16px;
    }
    .nav-menu > li.open > .dropdown.mega {
      transform: translateX(0) translateY(0);
    }
    .dropdown.mega::before { left: 36px; transform: none; }

    .mega-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 16px;
    }

    /* column heading */
    .mega-col-head {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.60rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary);
      padding: 4px 12px 8px;
      border-bottom: 1.5px solid var(--border);
      margin-bottom: 4px;
    }
    .mega-col-head .col-icon {
      width: 20px; height: 20px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
    }
    .mega-col-head .col-icon svg { width: 10px; height: 10px; }
    .mega-col-head.teal-head { color: var(--teal-dark); }
    .mega-col-head.teal-head .col-icon {
      background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    }

    /* ══════════════════════════════════════════════
       MEGA DROPDOWN — SKIN (2 columns)
    ══════════════════════════════════════════════ */
    .dropdown.mega-skin {
      min-width: 620px;
      left: 50%;
      transform: translateX(-52%) translateY(-6px);
      padding: 16px;
    }
    .nav-menu > li.open > .dropdown.mega-skin {
      transform: translateX(-52%) translateY(0);
    }
    .dropdown.mega-skin::before { left: 52%; }

    .mega-skin-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 16px;
    }
    /* spacer for right column alignment */
    .col-spacer {
      height: 33px;
      border-bottom: 1.5px solid transparent;
      margin-bottom: 4px;
    }

    /* ══════════════════════════════════════════════
       LASER DROPDOWN (simple)
    ══════════════════════════════════════════════ */
    .dropdown.laser { min-width: 250px; }

    /* ══════════════════════════════════════════════
       CTA BUTTONS
    ══════════════════════════════════════════════ */
    .nav-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .btn-call {
      display: flex;
      align-items: center;
      gap: 5px;
      font-family: 'Gotham', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--primary);
      text-decoration: none;
      padding: 7px 14px;
      border: 1.5px solid rgba(27,79,138,0.25);
      border-radius: 50px;
      background: #fff;
      white-space: nowrap;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }
    .btn-call:hover {
      background: var(--bg-soft);
      border-color: var(--primary);
      color: var(--primary-dark);
    }
    .btn-book {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Gotham', sans-serif;
      font-size: 0.82rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      padding: 9px 18px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      background: linear-gradient(135deg, var(--primary), var(--teal));
      box-shadow: 0 4px 16px rgba(27,79,138,0.28);
      transition: transform 0.18s, box-shadow 0.18s, background 0.25s;
    }
    .btn-book:hover {
      background: linear-gradient(135deg, var(--primary-dark), var(--teal-dark));
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(27,79,138,0.38);
    }

    /* ══════════════════════════════════════════════
       HAMBURGER
    ══════════════════════════════════════════════ */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 42px; height: 42px;
      background: #fff;
      border: 1.5px solid rgba(27,79,138,0.20);
      border-radius: 10px;
      cursor: pointer;
      padding: 10px;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s;
    }
    .nav-toggle:hover { background: var(--bg-soft); border-color: var(--primary); }
    .nav-toggle span {
      display: block;
      width: 100%; height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform-origin: center;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Gradient accent line ─────────────────────── */
    .nav-bar-accent {
      height: 3px;
      background: linear-gradient(90deg, var(--grad-start), var(--grad-mid), var(--grad-end));
    }

    /* ══════════════════════════════════════════════
       MOBILE OVERLAY + PANEL
    ══════════════════════════════════════════════ */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      pointer-events: none;
    }
    .mobile-menu.open { pointer-events: auto; }

    .mobile-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10, 30, 53, 0.55);
      backdrop-filter: blur(3px);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .mobile-menu.open .mobile-backdrop { opacity: 1; }

    .mobile-panel {
      position: absolute;
      top: 0; right: 0; bottom: 0;
      width: min(340px, 92vw);
      background: #fff;
      box-shadow: -8px 0 48px rgba(27,79,138,0.18);
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
      overflow-y: auto;
    }
    .mobile-menu.open .mobile-panel { transform: translateX(0); }

    /* panel header */
    .mobile-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px 14px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .mobile-panel-head .logo-img { height: 70px; }

    .mobile-close {
      width: 36px; height: 36px;
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: grid;
      place-items: center;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      color: var(--primary);
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .mobile-close:hover { background: #d6eaf8; }

    /* contact strip */
    .mob-contact-strip {
      margin: 32px 12px 0;
      padding: 10px 14px;
      background: var(--bg-soft);
      border-radius: 10px;
      /* border: 1px solid var(--border); */
      flex-shrink: 0;
    }
    .mob-contact-strip a {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--text-body);
      text-decoration: none;
      padding: 4px 0;
      transition: color 0.18s;
    }
    .mob-contact-strip a:hover { color: var(--primary); }

    /* mobile nav list */
    .mobile-nav-list {
      list-style: none;
      padding: 10px 10px 6px;
      flex: 1;
    }
    .mobile-nav-list > li { margin-bottom: 2px; }

    .mobile-nav-list > li > a,
    .mobile-nav-list > li > .mob-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      font-family: 'Gotham', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-body);
      text-decoration: none;
      border-radius: 10px;
      background: none;
      border: none;
      width: 100%;
      cursor: pointer;
      text-align: left;
      transition: background 0.18s, color 0.18s;
    }
    .mobile-nav-list > li > a:hover,
    .mobile-nav-list > li > .mob-btn:hover {
      background: var(--bg-soft);
      color: var(--primary);
    }

    .mob-chevron {
      width: 15px; height: 15px;
      color: var(--text-muted);
      flex-shrink: 0;
      transition: transform 0.25s, color 0.2s;
    }
    .mobile-nav-list > li.m-open > .mob-btn .mob-chevron {
      transform: rotate(180deg);
      color: var(--teal);
    }

    /* sub list */
    .mob-sub {
      list-style: none;
      padding: 2px 0 2px 12px;
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.35s ease;
    }
    .mobile-nav-list > li.m-open > .mob-sub { max-height: 900px; }

    .mob-sub-head {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--teal-dark);
      padding: 8px 14px 4px;
    }

    .mob-sub li a {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 8px 14px;
      font-size: 0.9rem;
      color: var(--text-body);
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.18s, color 0.18s;
    }
    .mob-sub li a:hover { background: var(--bg-soft); color: var(--primary); }

    .m-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--primary), var(--teal));
    }
    .m-tick {
      font-size: 0.68rem;
      color: var(--teal-dark);
      font-weight: 800;
      flex-shrink: 0;
      width: 12px;
    }
    .mob-divider { height: 1px; background: var(--border); margin: 6px 14px; }

    /* panel footer */
    .mobile-panel-foot {
      padding: 14px 16px 28px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-shrink: 0;
    }
    .mob-whatsapp {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 11px;
      background: #e6f9f5;
      border: 1.5px solid rgba(42,181,160,0.30);
      border-radius: 12px;
      font-size: 0.875rem; font-weight: 600;
      color: var(--teal-dark);
      text-decoration: none;
      transition: background 0.2s;
    }
    .mob-whatsapp:hover { background: #ccf2ec; }
    .mob-call-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 11px;
      background: var(--bg-soft);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      font-size: 0.875rem; font-weight: 600;
      color: var(--primary);
      text-decoration: none;
      transition: background 0.2s;
    }
    .mob-call-btn:hover { background: #d6eaf8; }
    .mob-book-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px;
      background: linear-gradient(135deg, var(--primary), var(--teal));
      border-radius: 12px;
      font-size: 0.9rem; font-weight: 700;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(27,79,138,0.28);
      transition: transform 0.18s, box-shadow 0.18s, background 0.25s;
    }
    .mob-book-btn:hover {
      background: linear-gradient(135deg, var(--primary-dark), var(--teal-dark));
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(27,79,138,0.36);
    }

    /* ══════════════════════════════════════════════
       RESPONSIVE BREAKPOINTS
    ══════════════════════════════════════════════ */
    @media (max-width: 1200px) {
      .nav-menu > li > a,
      .nav-menu > li > .nav-link-btn { font-size: 0.80rem; padding: 8px 8px; }
      .btn-call  { display: none; }
      .btn-book  { padding: 8px 14px; font-size: 0.78rem; }
      .dropdown.mega      { min-width: 460px; }
      .dropdown.mega-skin { min-width: 500px; }
    }
    @media (max-width: 900px) {
      .nav-inner   { height: var(--nav-h-sm); padding: 0 16px; }
      .nav-menu    { display: none; }
      .nav-cta     { display: none; }
      .nav-toggle  { display: flex; }
      .mobile-menu { display: block; }
      .logo-img    { height: 60px; }
    }
    @media (max-width: 380px) {
      .logo-text .brand-tag { display: none; }
      .logo-img { height: 60px; }
    }

   

    
/* ══════════════════════════════════════════════════════
   FOOTER — Varadhi Hair N Glow
   All selectors prefixed: footer
   Depends on: header.css (CSS variables)
══════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   FOOTER — White Background Theme
   Varadhi Hair N Glow Hair Transplant & Skin Laser Clinic
════════════════════════════════════════════════ */

/* ── Base ─────────────────────────────────────── */
.footer {
  position: relative;
  background: #ffffff;
  color: var(--text-muted);
  font-family: 'Gotham', sans-serif;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

/* ── Top gradient accent line ─────────────────── */
.footer__wave {
  width: 100%;
  height: 4px;
  background: --bg-primary;
  /* background: linear-gradient(90deg, var(--primary-dark), var(--grad-mid), var(--teal)); */
  display: block;
  line-height: 0;
  font-size: 0;
}
.footer__wave svg { display: none; }

/* ── Container ────────────────────────────────── */
.footer__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* ════════════════════════════════════════════════
   MAIN GRID — brand + 3 columns
════════════════════════════════════════════════ */
.footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  box-sizing: border-box;
}

/* ── Brand column ─────────────────────────────── */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.footer__logo-link { display: inline-block; }
.footer__logo-img {
  height: 85px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.2s;
}
.footer__logo-img:hover { opacity: 0.80; }

.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.78;
  color: var(--text-muted);
}

/* Social row */
.footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer__social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
}
.footer__social-btn svg { width: 17px; height: 17px; }
.footer__social-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}
.footer__social-btn--wa:hover {
  background: #25D366 !important;
  border-color: transparent;
}

/* Trust badges */
.footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-body);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 12px;
  white-space: nowrap;
}

/* ── Generic nav columns ──────────────────────── */
.footer__col { min-width: 0; }

.footer__col-heading {
  font-family: 'Gotham', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}

.footer__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links li a {
  font-size: 0.845rem;
  color: var(--text-body);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, padding-left 0.2s;
}
.footer__links li a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  opacity: 0.50;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__links li a:hover            { color: var(--primary); padding-left: 4px; }
.footer__links li a:hover::before    { opacity: 1; transform: scale(1.3); }

/* ── Contact column ───────────────────────────── */
.footer__col--contact { min-width: 0; }

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  transition: opacity 0.2s;
}
.footer__contact-item:hover { opacity: 0.80; }

.footer__contact-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(27,79,138,0.08), rgba(42,181,160,0.08));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  margin-top: 1px;
}
.footer__contact-icon svg { width: 15px; height: 15px; }

.footer__contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.footer__contact-value {
  display: block;
  font-size: 0.845rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  word-break: break-word;
}

/* Map thumbnail */
.footer__map-thumb {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.footer__map-thumb:hover {
  border-color: rgba(42,181,160,0.40);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow);
}
.footer__map-inner {
  height: 90px;
  background: linear-gradient(135deg, #e8f4fd 0%, #e0f5f2 40%, #edf7f5 100%);
  position: relative;
  overflow: hidden;
}
.footer__map-road {
  position: absolute;
  background: rgba(27,79,138,0.10);
  border-radius: 2px;
}
.footer__map-road--h { height: 2px; width: 100%; top: 42%; }
.footer__map-road--v { width: 2px; height: 100%; left: 40%; top: 0; }
.footer__map-road--d { width: 150%; height: 2px; top: 70%; left: -20%; transform: rotate(-15deg); }
.footer__map-pin {
  position: absolute;
  top: 50%; left: 40%;
  width: 32px; height: 32px;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -60%) rotate(-45deg);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(42,181,160,0.35);
  animation: footer_pin_pulse 2.5s ease-in-out infinite;
}
.footer__map-pin svg { transform: rotate(45deg); width: 16px; height: 16px; color: #fff; }
@keyframes footer_pin_pulse {
  0%,100% { box-shadow: 0 4px 16px rgba(42,181,160,0.35), 0 0 0 0 rgba(42,181,160,0.35); }
  50%      { box-shadow: 0 4px 16px rgba(42,181,160,0.35), 0 0 0 8px rgba(42,181,160,0); }
}
.footer__map-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 9px 14px;
  transition: background 0.2s, color 0.2s;
}
.footer__map-thumb:hover .footer__map-label {
  background: rgba(42,181,160,0.08);
  color: var(--teal-dark);
}
.footer__map-label svg { stroke: currentColor; }

/* ════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════ */
.footer__cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(100deg, rgba(27,79,138,0.05) 0%, rgba(42,181,160,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-sizing: border-box;
}
.footer__cta-band-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.footer__cta-band-title {
  font-family: 'Gotham', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.footer__cta-band-sub {
  font-size: 0.845rem;
  color: var(--text-muted);
}
.footer__cta-band-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.footer__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(27,79,138,0.22);
  transition: transform 0.2s, box-shadow 0.2s, background 0.25s;
}
.footer__cta-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--teal-dark));
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(27,79,138,0.30);
}
.footer__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.footer__cta-secondary:hover {
  background: var(--bg-soft);
  color: var(--primary);
  border-color: rgba(27,79,138,0.30);
}

/* ════════════════════════════════════════════════
   BOTTOM BAR
════════════════════════════════════════════════ */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px 0 28px;
  box-sizing: border-box;
}
.footer__bottom-left { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.footer__copyright   { font-size: 0.80rem; color: var(--text-muted); }
.footer__copyright a { color: var(--text-body); text-decoration: none; transition: color 0.2s; }
.footer__copyright a:hover { color: var(--primary); }

.footer__legal-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer__legal-links a {
  font-size: 0.77rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal-links a:hover { color: var(--primary); }
.footer__legal-links span    { color: var(--border); font-size: 0.70rem; }

.footer__powered {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer__powered-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
.footer__powered-link:hover { color: var(--teal); opacity: 0.85; }

/* ════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
════════════════════════════════════════════════ */
.footer__wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: footer_wa_pop 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
.footer__wa-float:hover {
  transform: scale(1.10) translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.58);
}
.footer__wa-float svg { width: 56px; height: 56px; }
@keyframes footer_wa_pop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.footer__wa-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(-50%) translateX(6px);
}
.footer__wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text-dark);
  border-right: none;
}
.footer__wa-float:hover .footer__wa-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════════ */

/* ── 1100px: 2×2 grid, brand full-width ── */
@media (max-width: 1100px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
  .footer__brand        { grid-column: 1 / -1; }
  .footer__col--contact { grid-column: 1 / -1; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .footer__container { padding: 44px 20px 0; }

  .footer__cta-band {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    text-align: center;
  }
  .footer__cta-band-text   { align-items: center; }
  .footer__cta-band-btns   { flex-direction: column; }
  .footer__cta-primary,
  .footer__cta-secondary   { justify-content: center; }

  .footer__bottom          { flex-direction: column; align-items: center; text-align: center; }
  .footer__bottom-left     { align-items: center; }
  .footer__legal-links     { justify-content: center; }
  .footer__powered         { justify-content: center; }

  .footer__wa-float        { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .footer__wa-float svg    { width: 50px; height: 50px; }
}

/* ── 500px: single column ── */
@media (max-width: 500px) {
  .footer__container { padding: 36px 16px 0; }
  .footer__main      { grid-template-columns: 1fr; gap: 28px; }
  .footer__cta-band  { padding: 20px 16px; }

  .footer__wa-float  { bottom: 16px; right: 16px; }
}