
  :root{
    --navy:#11ccda;
    --purple:#4f0d56;
    --teal:#11ccda;
    --ink:#1a1918;
    --muted:#6b6f76;
    --line:#e4e7eb;
    --bg:#ffffff;
  }

  *{box-sizing:border-box;}
  html,body{margin:0;padding:0;font-family:'Zen Maru Gothic','Segoe UI',Arial,Helvetica,sans-serif;background:#ffffff;}

  .topbar{
    background:var(--bg);
    border-bottom:1px solid var(--line);
    width:100%;
  }

  .topbar__inner{
    max-width:1280px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:28px;
    /* padding:10px 24px; */
    flex-wrap:wrap;
  }

  /* LOGO */
  .brand{
    display:flex;
    align-items:center;
    flex-shrink:0;
  }
  .brand img{
    height:82px;
    width:auto;
    display:block;
  }

  /* Generic item */
  .item{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
  }
  .item svg{
    flex-shrink:0;
    width:20px;
    height:20px;
    color:var(--muted);
  }
  .item__text{
    display:flex;
    flex-direction:column;
    line-height:1.15;
  }
  .item__label{
    font-size:11.5px;
    color:var(--teal);
    font-weight:700;
    letter-spacing:.2px;
  }
  .item__value{
    font-size:13.5px;
    color:var(--ink);
    font-weight:500;
  }

  .item--location .item__value{
    display:flex;
    align-items:center;
    gap:4px;
    cursor:pointer;
  }
  .item--location svg.caret{
    width:12px;
    height:12px;
    color:var(--muted);
  }

  .divider{
    width:1px;
    height:34px;
    background:var(--line);
    flex-shrink:0;
  }

  /* group that sits between logo and login, allowed to wrap/scroll on small screens */
  .info-group{
    display:flex;
    align-items:center;
    gap:22px;
    flex:1 1 auto;
    min-width:0;
    flex-wrap:wrap;
    row-gap:10px;
  }

  /* LOGIN pushed to far right */
  .login-btn{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:8px;
    padding:9px 18px;
    border-radius:999px;
    border:1.5px solid var(--navy);
    background:var(--navy);
    color:#fff;
    font-family:inherit;
    font-size:13.5px;
    font-weight:500;
    text-decoration:none;
    cursor:pointer;
    white-space:nowrap;
    flex-shrink:0;
    transition:background .15s ease, transform .15s ease;
  }
  .login-btn svg{width:18px;height:18px;color:#fff;}
  .login-btn:hover{
    background:var(--purple);
    border-color:var(--purple);
  }

  /* Responsive breakpoints */
  @media (max-width: 992px){
    .topbar__inner{gap:18px;padding:10px 16px;}
    .info-group{gap:16px;}
    .divider{height:28px;}
  }

  @media (max-width: 760px){
    .topbar__inner{
      flex-direction:column;
      align-items:stretch;
    }
    .brand{
      justify-content:space-between;
      width:100%;
    }
    .brand img{height:36px;}
    .login-btn{
      margin-left:0;
      width:100%;
      justify-content:center;
      margin-top:4px;
    }
    .brand-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      width:100%;
    }
    .info-group{
      width:100%;
      justify-content:flex-start;
      overflow-x:auto;
      padding-bottom:4px;
      -ms-overflow-style:none;
      scrollbar-width:none;
    }
    .info-group::-webkit-scrollbar{display:none;}
    .divider{display:none;}
    .item{
      background:#f7f8fa;
      border:1px solid var(--line);
      padding:8px 12px;
      border-radius:10px;
    }
  }

  @media (max-width: 420px){
    .item__label{font-size:10.5px;}
    .item__value{font-size:12.5px;}
    .brand img{height:30px;}
    .login-btn{padding:8px 14px;font-size:12.5px;}
  }



  /* ............................................ header css ............................................ */
:root{
  --header-navy:#002552;
  --header-purple:#11ccda;
  --header-teal:#11ccda;
  --header-teal-light:#e3f4f5;
  --header-ink:#1a1918;
  --header-muted:#6b6f76;
  --header-line:#e4e7eb;
  --header-bg:#ffffff;
  --header-green:#1a9c5c;
  --header-green-bg:#e6f7ee;
}

.header-bar{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--header-teal);
  border-bottom:1px solid var(--header-line);
  transition:box-shadow .2s ease;
  font-family:'Zen Maru Gothic','Segoe UI',Arial,Helvetica,sans-serif;
  color: white;
}
.header-bar.header-scrolled{
  box-shadow:0 6px 20px rgba(0,37,82,.08);
}

.header-inner{
  max-width:1320px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:20px;
  /* padding:10px 24px; */
}



.header-hamburger{
  display:none;
  margin-left:auto;
  background:none;
  border:1px solid var(--header-line);
  border-radius:8px;
  width:40px;height:40px;
  align-items:center;justify-content:center;
  color:var(--header-navy);
  cursor:pointer;
}
.header-hamburger svg{width:22px;height:22px;}

.header-nav-menu{flex:1;min-width:0;}
.header-nav-list{
  list-style:none;
  margin:0;padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex-wrap:nowrap;
  overflow-x:auto;
  scrollbar-width:none;
}
.header-nav-list::-webkit-scrollbar{display:none;}

.header-nav-link{
  display:flex;
  align-items:center;
  gap:6px;
  background:none;
  border:none;
  padding:10px 12px;
  font-size:16.5px;
  font-weight:800;
  font-family:inherit;
  color:white;
  white-space:nowrap;
  position:relative;
  border-bottom:2.5px solid transparent;
  transition:color .15s ease;
  cursor:pointer;
  text-decoration:none;
}
.header-nav-link .header-nav-ico{
  width:17px;height:17px;
  flex-shrink:0;
  color:white;
  /* filter:drop-shadow(0 0 4px rgba(79,13,86,.6)) drop-shadow(0 0 8px rgba(79,13,86,.35)); */
}
.header-nav-link:hover{color: #4f0d56;}
.header-nav-link.header-nav-active{
  color:#4f0d56;
  border-bottom-color:var(--header-purple);
}
.header-nav-link .header-chev{
  width:11px;height:11px;
  color:white;
  transition:transform .15s ease;
}
.header-nav-link.header-nav-active .header-chev{transform:rotate(180deg);color:var(--header-teal);}

.header-home-link{padding-left:6px;padding-right:6px;}
.header-home-link .header-nav-ico{width:19px;height:19px;}

.header-new-badge{
  position:absolute;
  top:8px;right:-6px;
  background:var(--header-purple);
  color:#fff;
  font-size:9px;
  font-weight:700;
  padding:1px 5px;
  border-radius:8px;
  letter-spacing:.3px;
}

/* ============ MEGA PANEL ============ */
.header-mega-panel{
  display:none;
  background:var(--header-bg);
  border-bottom:1px solid var(--header-line);
  box-shadow:0 12px 24px rgba(0,37,82,.06);
}
.header-mega-panel.header-open{display:block;}

.header-mega-inner{
  max-width:1320px;
  margin:0 auto;
  padding:28px 24px 32px;
  display:grid;
  grid-template-columns:300px 1fr;
  gap:28px;
}

.header-why-box{
  position:relative;
  overflow:hidden;
  background:linear-gradient(150deg,var(--header-teal-light) 0%,#eef1f7 100%);
  border-radius:16px;
  padding:22px 20px;
}
.header-why-box .header-watermark{
  position:absolute;
  right:-18px;bottom:-18px;
  width:120px;height:120px;
  color:var(--header-purple);
  opacity:.10;
}
.header-why-box h3{
  margin:0 0 14px;
  font-size:16px;
  font-weight:700;
  color:var(--header-navy);
  position:relative;
}
.header-why-list{
  list-style:none;margin:0 0 18px;padding:0;
  display:flex;flex-direction:column;gap:10px;
  position:relative;
}
.header-why-list li{
  display:flex;align-items:flex-start;gap:8px;
  font-size:13px;
  color:var(--header-ink);
  background:rgba(255,255,255,.65);
  border-radius:10px;
  padding:8px 10px;
}
.header-why-list li svg{
  width:16px;height:16px;flex-shrink:0;margin-top:1px;
  color:var(--header-purple);
}
.header-advisor-btn{
  position:relative;
  display:inline-flex;align-items:center;gap:8px;
  background:var(--header-purple);
  color:#fff;
  font-size:13px;font-weight:500;
  padding:10px 16px;
  border-radius:10px;
  transition:background .15s ease;
  text-decoration:none;
}
.header-advisor-btn:hover{background:var(--header-navy);}
.header-advisor-btn svg{width:15px;height:15px;}

.header-panel-title{
  margin:0 0 14px;
  font-size:15px;
  font-weight:700;
  color:var(--header-navy);
}

.header-pkg-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:16px;
}

.header-pkg-card{
  background:#fff;
  border:1px solid var(--header-line);
  border-radius:14px;
  padding:16px;
  display:flex;flex-direction:column;
  transition:box-shadow .15s ease, transform .15s ease;
}
.header-pkg-card:hover{
  box-shadow:0 10px 22px rgba(0,37,82,.09);
  transform:translateY(-2px);
  border-color:var(--header-teal);
}
.header-pkg-card h4{
  margin:0 0 10px;
  font-size:13.5px;
  font-weight:700;
  color:var(--header-ink);
  line-height:1.3;
  min-height:35px;
}
.header-pkg-meta{
  display:flex;gap:14px;
  font-size:11px;color:var(--header-muted);
  margin-bottom:10px;
}
.header-pkg-meta span{display:flex;align-items:center;gap:4px;}
.header-pkg-meta svg{width:14px;height:14px;color:var(--header-purple);}
.header-pkg-meta b{color:var(--header-ink);font-weight:700;}

.header-pkg-divider{border-top:1px dashed var(--header-line);margin:4px 0 10px;}

.header-pkg-offer-label{
  font-size:10px;color:var(--header-muted);margin-bottom:4px;
}
.header-pkg-price-row{
  display:flex;align-items:center;gap:8px;margin-bottom:12px;flex-wrap:wrap;
}
.header-pkg-price{font-size:17px;font-weight:700;color:var(--header-navy);}
.header-pkg-mrp{font-size:12px;color:var(--header-muted);text-decoration:line-through;}
.header-pkg-off{
  display:flex;align-items:center;gap:3px;
  background:var(--header-green-bg);color:var(--header-green);
  font-size:10.5px;font-weight:700;
  padding:2px 7px;border-radius:20px;
}
.header-pkg-off svg{width:11px;height:11px;}

.header-pkg-actions{
  margin-top:auto;
  display:flex;align-items:center;justify-content:space-between;
  gap:10px;
}
.header-pkg-know{font-size:12px;color:var(--header-navy);text-decoration:none;}
.header-pkg-book{
  background:var(--header-teal);color:#fff;
  font-size:12.5px;font-weight:500;
  padding:9px 16px;border:none;border-radius:8px;
  font-family:inherit;
  transition:background .15s ease;
  cursor:pointer;
}
.header-pkg-book:hover{background:var(--header-navy);}
.header-mobile-close{
  display:none;
}

.header-brand-mobile{
  display:none;
}
.header-location-mobile{
  display:none;
}
.header-login-mobile{
  display:none;
}
/* ============ MOBILE ============ */
@media (max-width:900px){

.topbar{
  display:none;
}
.header-brand-mobile{
    display:flex;
    align-items:center;
  }
  .header-brand-mobile img{
    height:36px;
    width:auto;
    display:block;
  }


  /* Naya: location display */
  .header-location-mobile{
    display:flex;
    align-items:center;
    gap:5px;
    color:var(--header-purple);
    font-size:12px;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:110px;
  }
  .header-location-mobile svg{
    width:16px;height:16px;
    flex-shrink:0;
    color:var(--header-purple);
  }
  .header-location-mobile span{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  /* Naya: mobile login button */
  .header-login-mobile{
    display:flex;
    align-items:center;
    justify-content:center;
    width:36px;height:36px;
    border-radius:50%;
    background:var(--header-purple);
    color:#fff;
    flex-shrink:0;
    margin-left:auto; /* location aur is button ko hamburger se pehle right-align karega */
  }
  .header-login-mobile svg{ width:17px;height:17px; }

  .header-hamburger{
    margin-left:10px; /* login button ke baad thoda gap */
  }

.header-inner{
  max-width:1320px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:20px;
  padding:10px 24px;
  background: white;
}
  .header-brand-mobile{
    display:flex;
    align-items:center;
  }
  .header-brand-mobile img{
    height:36px;
    width:auto;
    display:block;
  }
.header-new-badge{
  
  color:var(--header-purple);
}
.header-nav-link .header-chev{
color:var(--header-purple);
}

.header-nav-link .header-nav-ico{
color:var(--header-purple);
}

.header-nav-link{
color:var(--header-purple);
}
  .header-hamburger{display:flex;}
  .header-hamburger{display:flex;}
  .header-nav-menu{
    position:fixed;
    top:0;right:-100%;
    width:82%;max-width:340px;height:100vh;
    background:#fff;
    box-shadow:-8px 0 24px rgba(0,0,0,.12);
    transition:right .25s ease;
    z-index:1100;
    overflow-y:auto;
  }
  .header-nav-menu.header-open{right:0;}
  .header-nav-list{
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    padding:64px 16px 24px;
    gap:0;
    overflow:visible;
  }
  .header-nav-link{
  padding:14px 6px;
  border-bottom:1px solid var(--header-line);
  border-radius:0;
  justify-content:flex-start; /* space-between se change */
}
.header-nav-link .header-chev{
  margin-left:auto; /* chevron ko hamesha right end par push karega */
}
  .header-nav-link.header-nav-active{border-bottom-color:var(--header-line);}
  .header-home-link{order:-1;}
  .header-nav-overlay{
    display:none;
    position:fixed;inset:0;
    background:rgba(0,37,82,.35);
    z-index:1050;
  }
  .header-nav-overlay.header-open{display:block;}
  .header-mobile-close{
    position:absolute;top:14px;right:14px;
    width:36px;height:36px;
    border:1px solid var(--header-line);border-radius:8px;
    background:#fff;color:var(--header-navy);
    display:flex;align-items:center;justify-content:center;
    cursor:pointer;
  }
  .header-mobile-close svg{width:18px;height:18px;}

  .header-mobile-accordion{
  background:#fafbfc;
  border-bottom:1px solid var(--header-line);
}
.header-mobile-accordion .header-mega-inner{
  padding:16px 14px 22px;
}

  /* mega panel on mobile: full width, scrollable, never clipped */
  .header-mega-panel{
    max-height:calc(100vh - 56px);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
  .header-mega-inner{
    grid-template-columns:1fr;
    padding:20px 16px 28px;
  }
  .header-pkg-grid{grid-template-columns:1fr;}
}

/* ============ Mobile Bottom Navigation ============ ========================= */
.mobile-bottom-nav{
  display:none;
}

@media (max-width:900px){
  body{ padding-bottom:64px; } /* content bottom-nav ke peeche hide na ho */

  .mobile-bottom-nav{
    display:flex;
    position:fixed;
    left:0; right:0; bottom:0;
    z-index:1200;
    background:#ffffff;
    border-top:1px solid var(--header-line);
    box-shadow:0 -6px 20px rgba(0,37,82,.08);
    padding:6px 4px calc(6px + env(safe-area-inset-bottom));
    font-family:'Zen Maru Gothic','Segoe UI',Arial,Helvetica,sans-serif;
  }

  .mbn-item{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    padding:6px 2px;
    text-decoration:none;
    color:var(--header-muted);
    transition:color .15s ease, transform .15s ease;
  }
  .mbn-item svg{
    width:21px;height:21px;
    flex-shrink:0;
    transition:transform .15s ease;
  }
  .mbn-item span{
    font-size:10.5px;
    font-weight:600;
    letter-spacing:.1px;
    white-space:nowrap;
  }

  .mbn-item:active{ transform:scale(.94); }

  .mbn-item.is-active{
    color:var(--header-teal);
  }
  .mbn-item.is-active svg{ transform:translateY(-1px); }

  .mbn-item--whatsapp{
    color:#25d366;
  }
  .mbn-item--whatsapp svg{
    fill:#25d366;
    stroke:#25d366;
  }
}

@media (max-width:360px){
  .mbn-item span{ font-size:9.5px; }
  .mbn-item svg{ width:19px;height:19px; }
}

/* ============ Sticky Enquiry Button ============ */
.enquiry-btn{
  position:fixed;
  right:0;
  top:50%;
  transform:translateY(-50%);
  z-index:1150;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  border:none;
  background:#11ccda;
  color:#fff;
  padding:16px 10px;
  border-radius:12px 0 0 12px;
  cursor:pointer;
  box-shadow:-4px 4px 16px rgba(0,37,82,.25);
  font-family:'Zen Maru Gothic','Segoe UI',Arial,Helvetica,sans-serif;
  transition:padding-right .2s ease, background .2s ease;
}
.enquiry-btn i{ font-size:18px; }
.enquiry-btn span{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  font-size:13.5px;
  font-weight:700;
  letter-spacing:.5px;
}
.enquiry-btn:hover{
  padding-right:16px;
  background:linear-gradient(160deg, var(--header-navy) 0%, var(--header-purple) 100%);
}

/* ============ Sticky WhatsApp Button ============ */
.whatsapp-float-btn{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1150;
  width:56px;height:56px;
  border-radius:50%;
  /* background:#25d366; */
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  /* box-shadow:0 8px 20px rgba(37,211,102,.4); */
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease;
}
.whatsapp-float-btn i{ font-size:28px; }
.whatsapp-float-btn:hover{
  transform:scale(1.08);
  box-shadow:0 10px 26px rgba(37,211,102,.5);
}

/* ============ Enquiry Overlay + Modal ============ */
.enquiry-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,37,82,.45);
  z-index:1300;
}
.enquiry-overlay.is-open{ display:block; }

.enquiry-modal{
  display:flex;
  flex-direction:column;
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  z-index:1301;
  width:min(420px, 90%);
  height:100%;
  overflow-y:auto;
  background:#fff;
  border-radius:0;
  padding:34px 28px 28px;
  box-shadow:-12px 0 40px rgba(0,37,82,.25);
  font-family:'Zen Maru Gothic','Segoe UI',Arial,Helvetica,sans-serif;
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.25,.8,.25,1);
}
.enquiry-modal.is-open{
  transform:translateX(0);
}

.enquiry-close{
  position:absolute;
  top:16px; right:16px;
  width:34px;height:34px;
  border:1px solid var(--header-line);
  border-radius:50%;
  background:#fff;
  color:var(--header-navy);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:background .15s ease, color .15s ease;
}
.enquiry-close:hover{ background:var(--header-teal); color:#fff; }

.enquiry-modal-title{
  margin:0 0 6px;
  font-size:21px;
  font-weight:700;
  color:var(--header-navy);
}
.enquiry-modal-sub{
  margin:0 0 22px;
  font-size:14px;
  color:var(--header-muted);
  line-height:1.5;
}

.enquiry-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.enquiry-field{
  position:relative;
  display:flex;
  align-items:center;
  border:1.5px solid var(--header-line);
  border-radius:10px;
  padding:0 14px;
  transition:border-color .15s ease;
}
.enquiry-field i{
  color:var(--header-purple);
  font-size:15px;
  width:20px;
  flex-shrink:0;
}
.enquiry-field input,
.enquiry-field select{
  flex:1; min-width:0;
  border:none; outline:none;
  background:transparent;
  padding:13px 10px;
  font-family:inherit;
  font-size:14.5px;
  color:var(--header-ink);
}
.enquiry-field--textarea{ align-items:flex-start; padding-top:12px; }
.enquiry-field--textarea i{ margin-top:2px; }
.enquiry-field textarea{
  flex:1; min-width:0;
  border:none; outline:none;
  background:transparent;
  padding:0 10px 12px;
  font-family:inherit;
  font-size:14.5px;
  color:var(--header-ink);
  resize:none;
}
.enquiry-field:focus-within{ border-color:var(--header-teal); }

.enquiry-submit{
  margin-top:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:none;
  background:var(--header-teal);
  color:#fff;
  font-family:inherit;
  font-size:15px;
  font-weight:700;
  padding:14px;
  border-radius:10px;
  cursor:pointer;
  transition:background .15s ease;
}
.enquiry-submit:hover{ background:var(--header-navy); }

.enquiry-form-msg{
  margin:14px 0 0;
  font-size:13.5px;
  font-weight:600;
  color:var(--header-green);
  text-align:center;
  min-height:16px;
}

/* ============ RESPONSIVE ============ */
@media (max-width:900px){
  /* WhatsApp button mobile bottom-nav me already hai, isliye float button hide */
  .whatsapp-float-btn{ display:none; }
}

@media (max-width:640px){
  .enquiry-btn{
    padding:12px 8px;
    border-radius:10px 0 0 10px;
  }
  .enquiry-btn i{ font-size:16px; }
  .enquiry-btn span{ font-size:12px; }

  .enquiry-modal{
    width:100%;
    padding:28px 20px 22px;
  }
  .enquiry-modal-title{ font-size:19px; }
}

/* .................................................. footer .................................................. */
/* ============ PrimeCore Footer ============ */
.site-footer{
  position:relative;
  background:#ffffff;
  font-family:'Zen Maru Gothic','Segoe UI',Arial,Helvetica,sans-serif;
  overflow:hidden;
}

/* Optional background image layer.
   To enable: add class "footer--has-bgimg" on <footer> and set, e.g.
   style="--footer-bg-image:url('images/footer-bg.jpg')" — or set the
   variable in this stylesheet instead of inline. Stays a soft watermark
   so text on top remains fully readable. */
.site-footer.footer--has-bgimg::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:var(--footer-bg-image);
  background-size:cover;
  background-position:center;
  opacity:.05;
  pointer-events:none;
}

/* Signature: pulse-line divider */
/* Signature: live ECG / cardiac monitor pulse */
.footer-pulse{
  width:100%;
  height:40px;
  background:transparent; /* no color box — sits directly on footer white bg */
  overflow:hidden;
  line-height:0;
}
.footer-pulse svg{
  width:100%;
  height:100%;
  display:block;
}

/* resting trace — subtle, always visible */
.footer-pulse-base{
  fill:none;
  stroke:var(--header-line);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* bright glowing pulse that travels left → right along the same wave */
.footer-pulse-bright{
  fill:none;
  stroke:url(#footerPulseGrad);
  stroke-width:2.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:
    drop-shadow(0 0 2px rgba(9,152,163,.9))
    drop-shadow(0 0 7px rgba(9,152,163,.55));
}

@media (prefers-reduced-motion:reduce){
  .footer-pulse-bright{ display:none; }
}

@media (max-width:640px){
  .footer-pulse{ height:30px; }
}

.footer-main{
  position:relative;
  padding:56px 24px 44px;
}
.footer-inner{
  max-width:1320px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.1fr;
  gap:44px;
}

.footer-col{ min-width:0; }

.footer-logo{ height:52px; width:auto; display:block; margin-bottom:16px; }

.footer-tagline{
  font-size:15px;
  line-height:1.7;
  color:var(--header-muted);
  margin:0 0 20px;
  max-width:320px;
}

.footer-address{
  list-style:none; margin:0 0 22px; padding:0;
  display:flex; flex-direction:column; gap:12px;
}
.footer-address li{
  display:flex; align-items:flex-start; gap:10px;
  font-size:14.5px; color:var(--header-ink);
}
.footer-address li svg{
  width:18px;height:18px;flex-shrink:0;margin-top:1px;
  color:var(--header-purple);
}

.footer-social{ display:flex; gap:10px; }
.footer-social a{
  position:relative;
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  border:1.5px solid var(--header-line);
  color:var(--header-navy);
  transition:background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.footer-social a svg{ width:18px;height:18px; }
.footer-social a:hover{
  background:var(--header-teal);
  border-color:var(--header-teal);
  color:#fff;
  transform:translateY(-2px);
}
/* Tooltip */
.footer-social a::after{
  content:attr(data-tooltip);
  position:absolute;
  bottom:120%; left:50%;
  transform:translateX(-50%) translateY(4px);
  background:var(--header-navy);
  color:#fff;
  font-size:11.5px;
  font-weight:500;
  padding:5px 10px;
  border-radius:6px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .15s ease, transform .15s ease;
}
.footer-social a::before{
  content:'';
  position:absolute;
  bottom:110%; left:50%;
  transform:translateX(-50%);
  border:5px solid transparent;
  border-top-color:var(--header-navy);
  opacity:0;
  transition:opacity .15s ease;
}
.footer-social a:hover::after,
.footer-social a:focus::after{ opacity:1; transform:translateX(-50%) translateY(0); }
.footer-social a:hover::before,
.footer-social a:focus::before{ opacity:1; }

.footer-heading{
  font-size:17px;
  font-weight:700;
  color:var(--header-navy);
  margin:0 0 20px;
  letter-spacing:.2px;
}

.footer-links{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:13px; }
.footer-links a{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14.5px;
  color:var(--header-muted);
  text-decoration:none;
  transition:color .15s ease, gap .15s ease, padding-left .15s ease;
}
.footer-links a svg{
  width:14px;height:14px;flex-shrink:0;
  color:var(--header-teal);
  transition:transform .15s ease;
}
.footer-links a:hover{ color:var(--header-teal); padding-left:2px; }
.footer-links a:hover svg{ transform:translateX(3px); }

.footer-news-text{
  font-size:14.5px; line-height:1.65; color:var(--header-muted);
  margin:0 0 18px; max-width:280px;
}
.footer-news-form{
  display:flex; gap:0;
  border:1.5px solid var(--header-line);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}
.footer-news-form input{
  flex:1; min-width:0;
  border:none; outline:none;
  padding:13px 14px;
  font-family:inherit;
  font-size:14px;
  color:var(--header-ink);
  background:transparent;
}
.footer-news-form input::placeholder{ color:var(--header-muted); }
.footer-news-form button{
  border:none;
  background:var(--header-purple);
  color:#fff;
  width:48px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
  transition:background .15s ease;
}
.footer-news-form button svg{ width:19px;height:19px; }
.footer-news-form button:hover{ background:var(--header-navy); }
.footer-news-form:focus-within{ border-color:var(--header-teal); }
.footer-news-msg{
  font-size:13px; color:var(--header-green); font-weight:600;
  margin:12px 0 0; min-height:16px;
}

.footer-bottom{
  border-top:1px solid var(--header-line);
  background:#fafbfc;
}
.footer-bottom-inner{
  max-width:1320px; margin:0 auto;
  padding:18px 24px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.footer-bottom-inner p{
  margin:0; font-size:13.5px; color:var(--header-muted);
}
.footer-bottom-links{
  display:flex; align-items:center; gap:10px;
  font-size:13.5px;
}
.footer-bottom-links a{ color:var(--header-muted); text-decoration:none; }
.footer-bottom-links a:hover{ color:var(--header-teal); }
.footer-bottom-links span{ color:var(--header-line); }

/* ============ RESPONSIVE ============ */
@media (max-width:1100px){
  .footer-inner{ grid-template-columns:1fr 1fr; gap:40px 32px; }
  .footer-col--brand{ grid-column:1 / -1; }
}

@media (max-width:640px){
  .footer-main{ padding:44px 20px 36px; text-align:center; }
  .footer-inner{ grid-template-columns:1fr; gap:38px; }
  .footer-logo{ margin:0 auto 16px; }
  .footer-tagline{ margin:0 auto 20px; }
  .footer-address{ align-items:center; }
  .footer-address li{ text-align:left; }
  .footer-social{ justify-content:center; }
  .footer-links{ align-items:center; }
  .footer-news-text{ margin:0 auto 18px; }
  .footer-news-form{ max-width:340px; margin:0 auto; }
  .footer-bottom-inner{ flex-direction:column; text-align:center; }
}

@media (max-width:420px){
  .footer-heading{ font-size:16px; }
  .footer-tagline, .footer-news-text{ font-size:14px; }
  .footer-address li, .footer-links a{ font-size:14px; }
}