:root{
  --primary:#0b8f8f;
  --accent:#f68d82;
  --dark:#0f1b2d;
  --muted:#6b7280;
  --card:#ffffff;

  --container:1200px;
  --container-wide:1400px;
  --gutter:clamp(14px, 3vw, 40px);

  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial;
}

*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  background:linear-gradient(180deg,#f7fbfb 0%, #eef7f7 100%);
  color:var(--dark);
  overflow-x:clip;
}
body{padding-top:74px;}
header{width:100% !important;max-width:100% !important;margin:0 !important;padding:0 !important;}

.container{
  width:min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline:auto;
}
.container.wide{
  width:min(var(--container-wide), calc(100% - (var(--gutter) * 2)));
}

.full-bleed{
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  width:100vw;
}

/* =========================
   ✅ NAVBAR (Premium + Eye-catching)
========================= */
.navbar-wrapper{
  position:fixed;
  top:0; left:0;
  width:100%;     /* ✅ was 100vw */
  z-index:9999;
}
.navbar{
  width:100%;     /* ✅ safe */
}

/* glass bar */
.navbar{
  position:relative;
  width:100%;
  padding:14px 0;
  background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(240,248,255,0.78), rgba(255,255,255,0.68));
  backdrop-filter:blur(22px) saturate(190%);
  -webkit-backdrop-filter:blur(22px) saturate(190%);
  border-bottom:1px solid rgba(255,255,255,0.55);
  box-shadow:0 16px 44px rgba(0,0,0,0.14), 0 6px 18px rgba(0,0,0,0.08);
  transition:background .35s ease, box-shadow .35s ease, padding .35s ease;
}

/* animated glow line */
.navbar::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  background-size:200% 100%;
  opacity:.75;
  animation:navbarGlow 4.5s linear infinite;
}
@keyframes navbarGlow{
  0%{ background-position:0% 0; }
  100%{ background-position:200% 0; }
}

/* subtle floating light */
.navbar::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 220px at 20% -20%, rgba(11,143,143,0.20), transparent 55%),
    radial-gradient(600px 220px at 80% -20%, rgba(246,141,130,0.18), transparent 55%);
  opacity:.9;
  pointer-events:none;
}

/* scrolled state */
.navbar.scrolled{
  padding:10px 0;
  background:linear-gradient(135deg, rgba(10,35,70,0.90), rgba(0,90,160,0.90));
  backdrop-filter:blur(16px) saturate(170%);
  box-shadow:0 22px 60px rgba(0,0,0,0.26), 0 10px 24px rgba(0,0,0,0.16);
}
.navbar.scrolled::before{ opacity:.55; }
.navbar.scrolled::after{ opacity:1; }

/* container */
.navbar-container{
  width:min(var(--container-wide), calc(100% - (var(--gutter) * 2)));
  margin:0 auto;
  display:grid;
  grid-template-columns:220px 1fr 190px;
  align-items:center;
  gap:16px;
  position:relative;
  z-index:2;
}

.navbar-logo{
  font-size:26px;
  font-weight:1000;
  letter-spacing:-0.02em;
  color:var(--dark);
  white-space:nowrap;
  display:flex;
  align-items:center;
  gap:10px;
}

/* Desktop menu */
.menu{
  display:flex;
  justify-content:center;
  gap:42px;
  align-items:center;
}

.menu a{
  position:relative;
  font-size:16px;
  font-weight:900;
  color:rgba(15,27,45,0.88);
  text-decoration:none;
  padding:10px 8px;
  border-radius:12px;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}

/* animated underline */
.menu a::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:6px;
  height:2px;
  border-radius:999px;
  transform:scaleX(0);
  transform-origin:left;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  transition:transform .25s ease;
  opacity:.95;
}

.menu a:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,0.55);
}
.menu a:hover::after{ transform:scaleX(1); }
.menu a:focus-visible{
  outline:3px solid rgba(11,143,143,0.25);
  outline-offset:2px;
}

/* Active state (optional) */
.menu a.active{
  background:rgba(255,255,255,0.65);
}
.menu a.active::after{ transform:scaleX(1); }

/* CTA */
.nav-cta{
  justify-self:end;
  padding:12px 16px;
  border-radius:14px;
  font-weight:1000;
  color:#fff;
  text-decoration:none;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  background-size:140% 140%;
  box-shadow:0 14px 34px rgba(11,143,143,0.26);
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
  position:relative;
  overflow:hidden;
}

/* shimmer sweep */
.nav-cta::after{
  content:"";
  position:absolute;
  top:-30%;
  left:-40%;
  width:60%;
  height:160%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform:rotate(18deg);
  animation:ctaShine 3.2s ease-in-out infinite;
  opacity:.7;
}
@keyframes ctaShine{
  0%,55%{ transform:translateX(-140%) rotate(18deg); opacity:0; }
  65%{ opacity:.75; }
  100%{ transform:translateX(260%) rotate(18deg); opacity:0; }
}

.nav-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 46px rgba(11,143,143,0.32);
  filter:saturate(1.05);
}

/* hamburger */
.hamburger{
  display:none;
  font-size:22px;
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(15,27,45,0.08);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
  color:rgba(15,27,45,0.86);
  box-shadow:0 10px 26px rgba(0,0,0,0.08);
  transition:transform .2s ease, background .2s ease;
}
.hamburger:hover{ transform:translateY(-1px); background:rgba(255,255,255,0.7); }

/* scrolled text colors */
.navbar.scrolled .navbar-logo,
.navbar.scrolled .menu a{ color:#fff; }
.navbar.scrolled .menu a:hover{ background:rgba(255,255,255,0.10); }
.navbar.scrolled .menu a::after{ background:linear-gradient(90deg,#fff,rgba(255,255,255,0.6)); }
.navbar.scrolled .hamburger{ color:#fff; background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.18); }

/* =========================
   ✅ MOBILE MENU (Slide + Fade + Blur)
========================= */
@media (max-width: 900px){
  .navbar-container{ grid-template-columns:1fr auto; }
  .nav-cta{ display:none; }
  .hamburger{ display:inline-flex; align-items:center; justify-content:center; }

  /* turn menu into dropdown drawer */
  .menu{
    position:absolute;
    top:62px;
    left:0;
    width:100%;
    flex-direction:column;
    gap:10px;
    padding:14px;
    border-radius:16px;
    background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,250,255,0.82));
    backdrop-filter:blur(18px) saturate(180%);
    -webkit-backdrop-filter:blur(18px) saturate(180%);
    border:1px solid rgba(15,27,45,0.08);
    box-shadow:0 18px 44px rgba(0,0,0,0.18);

    /* ✅ animation-friendly (no display:none) */
    opacity:0;
    transform:translateY(-10px) scale(0.98);
    pointer-events:none;
    transition:opacity .22s ease, transform .22s ease;
  }

  .menu.active{
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
  }

  .menu a{
    width:100%;
    padding:12px 12px;
    background:rgba(255,255,255,0.55);
    border:1px solid rgba(15,27,45,0.06);
  }
  .menu a::after{ display:none; }
}

/* small phones */
@media (max-width: 520px){
  .navbar-logo{ font-size:22px; }
  .menu{ top:58px; padding:12px; }
}

/* =========================
   DT HERO
========================= */
.dt-hero{
  position:relative;
  padding:44px 0 28px;
  overflow:hidden;
  background:
    radial-gradient(1200px 420px at 10% 0%, rgba(11,143,143,0.20), transparent 60%),
    radial-gradient(900px 380px at 90% 10%, rgba(246,141,130,0.22), transparent 55%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(250,252,255,0.86));
  border-bottom:1px solid rgba(15,27,45,0.06);
  box-shadow:0 22px 60px rgba(0,0,0,0.10);
}

.dt-bg-blobs .blob{
  position:absolute;
  border-radius:999px;
  filter:blur(22px);
  opacity:.65;
  pointer-events:none;
}
.dt-bg-blobs .b1{ width:260px;height:260px; left:-60px; top:-70px; background:rgba(11,143,143,.35); }
.dt-bg-blobs .b2{ width:320px;height:320px; right:-120px; top:-90px; background:rgba(246,141,130,.32); }
.dt-bg-blobs .b3{ width:280px;height:280px; right:20%; bottom:-140px; background:rgba(0,114,255,.18); }

.dt-hero-inner{ position:relative; z-index:1; }

.dt-hero-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}
.dt-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.70);
  border:1px solid rgba(15,27,45,0.06);
  box-shadow:0 10px 26px rgba(0,0,0,0.06);
  font-weight:900;
  color:var(--dark);
  font-size:13px;
}
.dt-hero-badge .dot{
  width:9px;height:9px;border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  box-shadow:0 0 0 6px rgba(11,143,143,0.12);
}

.dt-hero-tabs{
  display:flex;
  gap:10px;
  padding:8px;
  border-radius:999px;
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(15,27,45,0.06);
  backdrop-filter:blur(10px);
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
.dt-hero-tabs::-webkit-scrollbar{height:0}
.dt-hero-tabs .tab{
  border:none;
  cursor:pointer;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  color:rgba(15,27,45,0.82);
  background:transparent;
  transition:transform .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.dt-hero-tabs .tab:hover{ transform:translateY(-1px); }
.dt-hero-tabs .tab.active{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  box-shadow:0 12px 26px rgba(11,143,143,0.25);
}

.dt-hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}

.dt-title{
  font-size:44px;
  line-height:1.06;
  margin:0 0 12px;
  letter-spacing:-0.02em;
}
.dt-title .grad{
  background:linear-gradient(135deg,var(--primary),var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.dt-sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
  max-width:58ch;
}
.dt-cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px; }
.dt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.dt-btn.primary{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  box-shadow:0 12px 26px rgba(11,143,143,0.22);
}
.dt-btn.primary:hover{ transform:translateY(-2px); box-shadow:0 18px 40px rgba(11,143,143,0.30); }
.dt-btn.ghost{
  color:var(--primary);
  background:rgba(255,255,255,0.70);
  border:1px solid rgba(11,143,143,0.22);
}
.dt-btn.ghost:hover{ transform:translateY(-2px); box-shadow:0 14px 34px rgba(0,0,0,0.08); }

.dt-pills{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
.dt-pills .pill{
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px 12px;
  border-radius:16px;
  background:rgba(255,255,255,0.65);
  border:1px solid rgba(15,27,45,0.06);
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
  transition:transform .22s ease, box-shadow .22s ease;
}
.dt-pills .pill:hover{ transform:translateY(-3px); box-shadow:0 18px 44px rgba(0,0,0,0.10); }
.dt-pills .ic{
  width:42px;height:42px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, rgba(11,143,143,0.18), rgba(246,141,130,0.16));
  font-size:18px;
}
.dt-pills b{ display:block; font-size:13px; }
.dt-pills small{ color:var(--muted); font-weight:800; }

.dt-tab-panels{
  margin-top:14px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,0.62);
  border:1px solid rgba(15,27,45,0.06);
}
.dt-tab-panels .panel{ display:none; color:rgba(15,27,45,0.86); font-weight:700; line-height:1.6; }
.dt-tab-panels .panel.active{ display:block; }

.dt-hero-visual{ display:flex; }
.dt-card{
  width:100%;
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,0.62);
  border:1px solid rgba(15,27,45,0.06);
  box-shadow:0 22px 60px rgba(0,0,0,0.10);
  backdrop-filter:blur(14px);
  display:flex;
  flex-direction:column;
  min-height:420px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.dt-card:hover{ transform:translateY(-4px); box-shadow:0 28px 70px rgba(0,0,0,0.14); }
.dt-card-media{
  flex:1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55)),
    url("https://images.unsplash.com/photo-1606811971618-4486d14f3f99?auto=format&fit=crop&w=1600&q=70");
  background-size:cover;
  background-position:center;
  position:relative;
}
.dt-card-media::after{
  content:"Trusted International Care";
  position:absolute;
  left:16px; bottom:14px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.22);
  color:#fff;
  font-weight:900;
  backdrop-filter:blur(10px);
}
.dt-card-bottom{ padding:14px 14px 16px; display:grid; gap:10px; }
.dt-mini{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px; border-radius:16px;
  background:rgba(255,255,255,0.70);
  border:1px solid rgba(15,27,45,0.06);
}
.dt-mini .mini-ic{
  width:38px;height:38px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, rgba(11,143,143,0.16), rgba(246,141,130,0.12));
  font-size:16px;
}
.dt-mini b{ font-size:13px; }
.dt-mini small{ color:var(--muted); font-weight:800; }
.dt-whatsapp{
  display:flex; justify-content:center;
  padding:12px 14px; border-radius:16px;
  text-decoration:none; font-weight:1000; color:#fff;
  background:linear-gradient(135deg,#25D366,#128C7E);
  box-shadow:0 14px 34px rgba(18,140,126,0.22);
  transition:transform .2s ease;
}
.dt-whatsapp:hover{ transform:translateY(-1px); }

@media (max-width:1100px){
  .dt-pills{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width:980px){
  .dt-title{ font-size:38px; }
  .dt-hero-grid{ grid-template-columns: 1fr; }
  .dt-card{ min-height:360px; }
  .dt-pills{ grid-template-columns:1fr; }
  .dt-hero-top{ flex-direction:column; align-items:flex-start; }
  .dt-hero-tabs{ width:100%; }
}
@media (max-width:520px){
  .dt-title{ font-size:30px; }
  .dt-sub{ font-size:15px; }
}

/* =========================
   DT INFO
========================= */
.dt-info{
  width:100%;
  padding:70px 0;
  background:linear-gradient(180deg,#ffffff 0%, #f7fbfb 100%);
}
.dt-info-head{ max-width:78ch; margin:0 0 24px; text-align:left; }
.dt-info-title{ margin:0 0 10px; font-size:32px; letter-spacing:-0.02em; }
.dt-info-sub{ margin:0; color:var(--muted); line-height:1.75; font-size:16px; }
.dt-info-grid{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:16px; margin-top:20px; }
.dt-info-card{
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(15,27,45,0.06);
  border-radius:16px;
  padding:16px;
  box-shadow:0 12px 28px rgba(0,0,0,0.06);
}
.dt-info-card h3{ margin:0 0 8px; font-size:15px; }
.dt-info-card p{ margin:0; color:rgba(15,27,45,0.82); line-height:1.7; font-weight:600; font-size:14px; }
.dt-info-note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(246,141,130,0.10);
  border:1px solid rgba(246,141,130,0.22);
  color:rgba(15,27,45,0.88);
  font-weight:700;
  line-height:1.7;
}
@media (max-width:980px){
  .dt-info-title{font-size:28px;}
  .dt-info-grid{grid-template-columns:1fr;}
}

/* =========================
   BENEFITS
========================= */
.dt-benefits{
  padding:64px 0;
  background:
    radial-gradient(900px 340px at 10% 0%, rgba(11,143,143,0.12), transparent 55%),
    radial-gradient(900px 340px at 90% 10%, rgba(246,141,130,0.14), transparent 55%),
    #f9fcff;
}
.dt-benefits-head{text-align:center;margin-bottom:26px;}
.dt-benefits-title{font-size:30px;margin:0 0 10px;letter-spacing:-0.02em;}
.dt-benefits-sub{margin:0 auto;max-width:78ch;color:var(--muted);line-height:1.75;}
.dt-benefits-grid{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:16px; margin-top:18px; }
.dt-benefit{
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(15,27,45,0.08);
  border-radius:18px;
  padding:18px 16px;
  box-shadow:0 14px 36px rgba(0,0,0,0.06);
  transition:transform .22s ease, box-shadow .22s ease;
}
.dt-benefit:hover{ transform:translateY(-4px); box-shadow:0 22px 50px rgba(0,0,0,0.10); }
.dt-benefit-ic{
  width:46px;height:46px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:10px;
  background:linear-gradient(135deg, rgba(11,143,143,0.16), rgba(246,141,130,0.14));
  font-size:18px;
}
.dt-benefit h3{ margin:0 0 8px; font-size:16px; }
.dt-benefit p{ margin:0; color:rgba(15,27,45,0.82); line-height:1.75; font-size:14px; }
@media (max-width:980px){
  .dt-benefits-grid{ grid-template-columns:1fr; }
  .dt-benefits-title{ font-size:24px; }
}

/* =========================
   HERO
========================= */
.hero{
  width:min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin:24px auto 40px;
  padding:clamp(18px, 3vw, 36px);
  border-radius:20px;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:28px;
  align-items:center;
  overflow:hidden;
}
.hero-left{padding:12px}
.hero h1{font-size:38px;margin:0 0 12px}
.lead{color:var(--muted);line-height:1.5;margin:0 0 18px}
.buttons{display:flex;gap:12px;flex-wrap:wrap}
.btn{padding:12px 16px;border-radius:12px;text-decoration:none;font-weight:800}
.btn-outline{border:2px solid var(--primary);color:var(--primary);background:transparent}

.hero-card{
  background:linear-gradient(180deg,rgba(255,255,255,0.85),rgba(255,255,255,0.6));
  backdrop-filter:blur(6px);
  padding:18px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(16,24,40,0.06);
}
.card{
  background:var(--card);
  padding:18px;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(11,24,40,0.05);
  transition:transform .36s cubic-bezier(.2,.9,.3,1), box-shadow .36s;
}
.card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(11,24,40,0.09)}
.muted{color:var(--muted);font-size:14px}
.small{font-size:.85rem}
.contact-item{display:flex;align-items:center;gap:12px}

.stagger-card{display:flex;gap:12px;align-items:center;width:100%;}
.stagger-icon{
  width:44px;height:44px;border-radius:9px;background:#fff;padding:8px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 14px rgba(11,24,40,0.04);
}
.stagger-title{font-weight:800}

@media (max-width:980px){
  .hero{ grid-template-columns:1fr; }
}

/* Marquee */
.marquee marquee{
  background:#0072ff;
  color:#fff;
  padding:10px 0;
  font-size:1rem;
  font-weight:600;
}

/* =========================
   ✅ FAQ (Desktop split)
========================= */
.image-faq-section{ padding:60px 0; }
.faq-inner{
  display:flex;
  align-items:flex-start;
  gap:40px;
}
.faq-img{ flex:1; }
.faq-img img{
  width:100%;
  border-radius:12px;
  height:350px;
  object-fit:cover;
  display:block;
}
.faq-box{ flex:1; }
.image-faq-section details{
  margin-bottom:12px;
  border:1px solid #eee;
  padding:12px 16px;
  border-radius:8px;
  cursor:pointer;
  background:#fafafa;
}
.image-faq-section summary{font-weight:700}
.image-faq-section details p{margin-top:8px;color:#666}

@media (max-width:900px){
  .faq-inner{flex-direction:column; gap:22px;}
  .faq-img img{height:260px;}
}

/* =========================
   ✅ Doctor (Desktop split)
========================= */
.img-text-section{
  width:100%;
  margin:40px 0;
  padding:80px 0;
  background:linear-gradient(-45deg,#a1c4fd,#c2e9fb,#d4fc79,#96e6a1);
  background-size:400% 400%;
  animation:gradientBG 15s ease infinite;
  box-shadow:0 10px 40px rgba(0,0,0,0.10);
}
.doctor-inner{
  display:flex;
  gap:50px;
  align-items:stretch;
}
.img-left{
  flex:1;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  min-height:420px;
}
.img-left img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.img-left:hover img{transform:scale(1.06) rotate(1deg);}
.text-right{flex:2;color:#1a1a1a;display:flex;flex-direction:column;justify-content:center;}
.text-right h2{font-size:2.2rem;margin-bottom:14px;color:#0a3d62;}
.text-right p{font-size:1rem;line-height:1.8;color:#333;}
@keyframes gradientBG{0%{background-position:0% 50%;}50%{background-position:100% 50%;}100%{background-position:0% 50%;}}

@media (max-width:900px){
  .doctor-inner{flex-direction:column;}
  .img-text-section{padding:60px 0;}
  .img-left{min-height:320px;}
  .text-right h2{font-size:1.8rem;}
}

/* Premium Card */
.premium-card-section-full{
  padding:60px 0;
  width:100%;
  background:linear-gradient(180deg, #f7fbfb, #eef7f7);
}
.premium-card-full{
  width:min(1200px, calc(100% - (var(--gutter) * 2)));
  margin-inline:auto;
  background:rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 55px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
@media (max-width:700px){
  .premium-card-full{ padding:40px 18px; }
}
.glow-corners::before,
.glow-corners::after{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  border-radius:18px;
  opacity:0.75;
  filter:blur(22px);
}
.glow-corners::before{
  background:
    radial-gradient(circle at top left, rgba(11, 143, 143, 0.45), transparent 55%),
    radial-gradient(circle at bottom right, rgba(246, 141, 130, 0.42), transparent 55%);
}
.glow-corners::after{
  background:
    radial-gradient(circle at top right, rgba(246, 141, 130, 0.25), transparent 55%),
    radial-gradient(circle at bottom left, rgba(11, 143, 143, 0.25), transparent 55%);
}
.underline-animate{position:relative;display:inline-block;padding-bottom:6px;}
.underline-animate::after{
  content:'';
  position:absolute;
  width:0;
  height:3px;
  left:0;
  bottom:-5px;
  background-color:#f39c12;
  transition:width .5s ease;
}
.underline-animate:hover::after{width:100%}

/* ==========================================================
   ✅ NEW: RESPONSIVE FIXES FOR 3 SECTIONS (Video + Glass + Grid)
   - These classes are ONLY for your new 3 sections
========================================================== */

/* 1) premium-video-section (left video + right content) */
.premium-video-section{
  padding:clamp(40px, 6vw, 70px) 0;
}

.premium-video-wrap{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:clamp(18px, 3vw, 34px);
  align-items:center;
  text-align:left; /* override center in premium-card-full */
}

.video-left{ min-width:0; }
.video-frame{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(15,27,45,0.10);
  box-shadow:0 18px 55px rgba(0,0,0,0.12);
  background:rgba(255,255,255,0.35);
  position:relative;
  aspect-ratio:16/9;
}
.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.video-right{ min-width:0; }
.video-right .subheading{
  margin:0 0 6px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(15,27,45,0.60);
}
.video-right h2{
  margin:0 0 14px;
  font-size:clamp(22px, 3.2vw, 34px);
  line-height:1.12;
  letter-spacing:-0.02em;
}
.video-right .muted{
  font-size:15px;
  line-height:1.8;
  margin:0 0 14px;
}

.video-cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:14px;
}

/* The WhatsApp CTA used inside your video section */
.whatsapp-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:1000;
  color:#fff;
  background:linear-gradient(135deg,#25D366,#128C7E);
  box-shadow:0 14px 34px rgba(18,140,126,0.22);
  transition:transform .22s ease, box-shadow .22s ease;
}
.whatsapp-cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(18,140,126,0.28);
}

/* Stack video/text on tablets & mobiles */
@media (max-width:980px){
  .premium-video-wrap{
    grid-template-columns:1fr;
  }
  .video-cta-row a{
    width:100%;
    justify-content:center;
  }
}

/* 2) Gallery Glass Section (Our Trusted Clients) */
.gallery-glass-section{
  padding:clamp(44px, 6vw, 80px) 0;
  background:
    radial-gradient(900px 340px at 10% 0%, rgba(11,143,143,0.10), transparent 55%),
    radial-gradient(900px 340px at 90% 10%, rgba(246,141,130,0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  text-align:center;
}

.gallery-glass-section h4{
  margin:0 0 10px;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(15,27,45,0.60);
  font-weight:900;
}
.gallery-glass-section h2{
  margin:0 0 22px;
  font-size:clamp(22px, 3.2vw, 34px);
  letter-spacing:-0.02em;
}

.gallery-glass-grid{
  width:min(1200px, calc(100% - (var(--gutter) * 2)));
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:clamp(12px, 2vw, 18px);
}

.glass-card{
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(15,27,45,0.10);
  backdrop-filter:blur(12px);
  box-shadow:0 16px 50px rgba(0,0,0,0.10);
  transition:transform .22s ease, box-shadow .22s ease;
  transform:translateZ(0);
}
.glass-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 60px rgba(0,0,0,0.14);
}
.glass-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio:3/4;
}

/* responsive columns */
@media (max-width:1100px){
  .gallery-glass-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:560px){
  .gallery-glass-grid{ grid-template-columns:1fr; }
  .glass-card img{ aspect-ratio:4/5; }
}

/* 3) Client Diaries (4 videos grid section) */
.premium-video-grid-wrap{ text-align:center; }

.video-heading{
  margin-bottom:18px;
}
.video-heading .subheading{
  margin:0 0 8px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(15,27,45,0.60);
}
.video-heading h2{
  margin:0;
  font-size:clamp(22px, 3.2vw, 34px);
  letter-spacing:-0.02em;
}

.video-grid.four-videos{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:clamp(12px, 2vw, 18px);
  align-items:stretch;
}

.video-item{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(15,27,45,0.10);
  background:rgba(255,255,255,0.35);
  box-shadow:0 16px 50px rgba(0,0,0,0.10);
  position:relative;
  aspect-ratio:16/9;
}
.video-item iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* responsive grid */
@media (max-width:1100px){
  .video-grid.four-videos{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}
@media (max-width:560px){
  .video-grid.four-videos{ grid-template-columns:1fr; }
}

@media (max-width:520px){
  .video-right .muted{ font-size:14px; }
}

/* Gallery */
.gallery-wrap{ width:min(var(--container), calc(100% - (var(--gutter) * 2))); margin:40px auto; }
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:18px;
}
.gallery-card{
  background:#fff;
  border-radius:14px;
  box-shadow:0 8px 20px rgba(11,24,40,0.05);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .22s ease, box-shadow .22s ease;
}
.gallery-card:hover{ transform:translateY(-4px); box-shadow:0 18px 40px rgba(11,24,40,0.10); }
.gallery-img{ height:180px; overflow:hidden; }
.gallery-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-body{ padding:14px; flex:1; display:flex; flex-direction:column; gap:10px; }
.gallery-title{ font-weight:900; }
.gallery-link{ margin-top:auto; font-weight:900; color:var(--primary); text-decoration:none; }
.gallery-link:hover{ text-decoration:underline; }

/* About */
.two-col{
  width:min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  padding:60px 0;
}
.two-col .about-content{width:100%;}
.two-col aside.about-map{display:flex;flex-direction:column;gap:16px;}
.map-container{ width:100%; border-radius:12px; overflow:hidden; box-shadow:0 8px 20px rgba(0,0,0,0.08); }
.about-full{ grid-column:1 / -1; display:flex; justify-content:center; margin-top:30px; }
.about-full .premium-hours{ max-width:420px; width:100%; }

@media (max-width:900px){
  .two-col{ grid-template-columns:1fr; }
  .about-full{ margin-top:24px; }
}

/* Contact */
.contact-section{
  padding:80px 0;
  background:linear-gradient(135deg,#f7fbfb 0%,#eef7f7 50%,#e6faf9 100%);
}
.contact-container{
  width:min(800px, calc(100% - (var(--gutter) * 2)));
  margin:0 auto;
  text-align:center;
}
.contact-title{ font-size:3rem; font-weight:900; color:var(--dark); margin-bottom:16px; }
.contact-subtitle{ font-size:1.2rem; color:var(--muted); margin-bottom:40px; line-height:1.6; max-width:600px; margin-left:auto; margin-right:auto; }
.contact-form{ display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:700px; margin:0 auto; }
.form-group{ display:flex; flex-direction:column; }
.form-group input,.form-group textarea{
  padding:16px 20px;
  border:2px solid #e9eef0;
  border-radius:12px;
  font-size:1rem;
  font-family:inherit;
  background:rgba(255,255,255,0.95);
  transition:all .3s ease;
  outline:none;
}
.form-group input:focus,.form-group textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(11,143,143,0.1);
  background:#fff;
}
.full-width{ grid-column:1 / -1; }
.contact-btn{
  grid-column:1 / -1;
  padding:18px 32px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  border:none;
  border-radius:12px;
  font-size:1.1rem;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 25px rgba(11,143,143,0.3);
  text-transform:uppercase;
  letter-spacing:1px;
}
.contact-btn:hover{ transform:translateY(-3px); box-shadow:0 12px 35px rgba(11,143,143,0.4); }

@media (max-width:700px){
  .contact-form{ grid-template-columns:1fr; }
  .contact-title{ font-size:2.2rem; }
}

/* Footer */
footer{
  width:min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin:36px auto;
  padding:18px 0;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  gap:10px;
}
@media (max-width:560px){
  footer{ flex-direction:column; text-align:center; }
}

/* Scroll fade */
.scroll-fade{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease, transform .6s ease;
}
.scroll-fade.visible{ opacity:1; transform:translateY(0); }

.dt-card-media{
  transition: opacity .25s ease;
  opacity: 1;
}

/* two map css */

/* =========================
   OUR LOCATIONS SECTION
========================= */
.locations-section{
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 420px at 20% -10%, rgba(11,143,143,.14), transparent 60%),
              radial-gradient(900px 420px at 90% 0%, rgba(246,141,130,.14), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,0));
}

.locations-inner{ display:flex; flex-direction:column; gap:22px; }

/* Heading card */
.locations-head-card{
  border-radius: 18px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(15,27,45,.10);
  box-shadow: 0 18px 50px rgba(15,27,45,.10);
  backdrop-filter: blur(10px);
  position: relative;
}

.loc-badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,143,143,.10);
  border: 1px solid rgba(11,143,143,.18);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}
.loc-dot{
  width:10px;height:10px;border-radius:50%;
  background: #0b8f8f;
  box-shadow: 0 0 0 6px rgba(11,143,143,.15);
}

.loc-title{
  margin: 6px 0 8px;
  font-size: clamp(22px, 3.2vw, 36px);
  letter-spacing: -0.02em;
}
.loc-sub{
  margin: 0;
  color: rgba(15,27,45,.72);
  max-width: 78ch;
  line-height: 1.6;
}

.loc-grad{
  background: linear-gradient(90deg, #0b8f8f, #21b3b3);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.loc-grad2{
  background: linear-gradient(90deg, #f68d82, #ffb3ab);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.loc-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(15,27,45,.05);
  border: 1px solid rgba(15,27,45,.08);
  font-size: 13px;
  font-weight: 600;
}

/* grid */
.locations-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.loc-card{
  border-radius: 18px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,27,45,.10);
  box-shadow: 0 18px 50px rgba(15,27,45,.10);
  overflow: hidden;
  transform: translateZ(0);
}

.loc-card-top{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(15,27,45,.08);
}

.loc-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(11,143,143,.16), rgba(246,141,130,.10));
  border: 1px solid rgba(15,27,45,.10);
  font-size: 20px;
}

.loc-meta h3{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.loc-meta p{
  margin: 3px 0 0;
  font-size: 13px;
  color: rgba(15,27,45,.70);
}

.loc-open{
  margin-left:auto;
  font-weight: 800;
  font-size: 13px;
  color: #0b8f8f;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(11,143,143,.10);
  border: 1px solid rgba(11,143,143,.18);
}
.loc-open:hover{ filter: brightness(.98); }

/* map */
.loc-map{ position: relative; aspect-ratio: 16 / 10; }
.loc-map iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}

/* bottom minis */
.loc-card-bottom{
  display:flex;
  gap: 12px;
  padding: 12px 14px 14px;
}
.loc-mini{
  flex:1;
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15,27,45,.04);
  border: 1px solid rgba(15,27,45,.08);
}
.loc-mini b{ display:block; font-size: 13px; }
.loc-mini small{ color: rgba(15,27,45,.70); }

/* responsive */
@media (max-width: 980px){
  .locations-grid{ grid-template-columns: 1fr; }
}

/* =========================
   ✅ FULL-WIDTH FOOTER
========================= */
.st-footer{
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;

  overflow:hidden;
  padding:70px 0 34px;
  background:linear-gradient(180deg, #f7fbfb 0%, #eef7f7 100%);
  border-top:1px solid rgba(15,27,45,0.08);
}

/* Background layer */
.st-footer-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
}
.st-orb{
  position:absolute;
  border-radius:999px;
  filter:blur(26px);
  opacity:.55;
  animation:stFloat 10s ease-in-out infinite;
}
.st-orb.o1{ width:380px; height:380px; left:-120px; top:-160px; background:rgba(11,143,143,.35); }
.st-orb.o2{ width:460px; height:460px; right:-160px; top:-220px; background:rgba(246,141,130,.32); animation-delay:-2s; }
.st-orb.o3{ width:420px; height:420px; left:35%; bottom:-240px; background:rgba(0,114,255,.18); animation-delay:-4s; }

@keyframes stFloat{
  0%,100%{ transform:translateY(0) translateX(0) scale(1); }
  50%{ transform:translateY(-18px) translateX(10px) scale(1.03); }
}
.st-grid{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.55), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.45), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,0.22), rgba(255,255,255,0));
  opacity:.8;
}

/* Inner aligned */
.st-footer-inner{ position:relative; z-index:1; }

/* Top layout */
.st-footer-top{
  display:grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap:34px;
  align-items:start;
}

/* Brand */
.st-logo{
  font-size:28px;
  font-weight:1000;
  letter-spacing:-0.02em;
  color:var(--dark);
}
.st-tagline{
  margin:10px 0 16px;
  color:rgba(15,27,45,0.70);
  font-weight:700;
  line-height:1.7;
  max-width:44ch;
}
.st-badges{ display:flex; gap:10px; flex-wrap:wrap; }
.st-badge{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.65);
  border:1px solid rgba(15,27,45,0.08);
  box-shadow:0 10px 26px rgba(0,0,0,0.06);
  font-weight:900;
  color:rgba(15,27,45,0.74);
}

/* Links grid */
.st-links{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:22px;
}
.st-col h4{
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:13px;
  font-weight:1000;
  color:rgba(15,27,45,0.65);
}
.st-col a{
  display:block;
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  font-weight:900;
  color:rgba(15,27,45,0.82);
  transition:transform .2s ease, background .2s ease;
}
.st-col a:hover{
  transform:translateX(4px);
  background:rgba(255,255,255,0.55);
}

/* CTA strip */
.st-footer-cta{
  margin-top:28px;
  padding:18px 18px;
  border-radius:18px;
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(15,27,45,0.08);
  box-shadow:0 18px 45px rgba(0,0,0,0.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.st-cta-title{ font-weight:1000; font-size:20px; color:var(--dark); }
.st-cta-sub{ margin-top:4px; color:rgba(15,27,45,0.70); font-weight:800; }
.st-cta-right{ display:flex; gap:12px; flex-wrap:wrap; }

.st-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  text-decoration:none;
  font-weight:1000;
  transition:transform .22s ease, box-shadow .22s ease;
}
.st-btn:hover{ transform:translateY(-2px); }
.st-btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  box-shadow:0 14px 34px rgba(11,143,143,0.22);
}
.st-btn-whatsapp{
  color:#fff;
  background:linear-gradient(135deg,#25D366,#128C7E);
  box-shadow:0 14px 34px rgba(18,140,126,0.22);
}

/* Bottom */
.st-footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(15,27,45,0.10);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.st-copy{ font-weight:900; color:rgba(15,27,45,0.65); }

/* Social */
.st-social{ display:flex; gap:10px; flex-wrap:wrap; }
.st-social-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(15,27,45,0.08);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  color:rgba(15,27,45,0.78);
  font-weight:1000;
  transition:transform .22s ease;
}
.st-social-link:hover{ transform:translateY(-2px); }
.st-social-link .ic{
  width:34px; height:34px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(11,143,143,0.16), rgba(246,141,130,0.12));
}

/* =========================
   ✅ CONTACT (kept)
========================= */
.st-contact-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin: 2px 0 14px;
}

.st-contact-link{
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  color:rgba(15,27,45,0.82);
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,0.45);
  border:1px solid rgba(15,27,45,0.08);
  box-shadow:0 12px 30px rgba(0,0,0,0.07);
  transition:transform .2s ease, background .2s ease;
}
.st-contact-link:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.60);
}
.st-ci{
  width:34px; height:34px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(11,143,143,0.16), rgba(246,141,130,0.12));
}

/* =========================
   ✅ LOCATIONS (FINAL UPDATED)
   - Desktop left/right
   - Equal height
   - Button always bottom aligned
========================= */

/* Locations container (same CTA feel) */
.st-locations{
  margin-top: 10px;
  padding: 14px;
  border-radius:18px;
  background:rgba(255,255,255,0.55);
  border:1px solid rgba(15,27,45,0.08);
  box-shadow:0 18px 45px rgba(0,0,0,0.10);
}

.st-locations-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.st-locations-title{
  font-weight:1000;
  letter-spacing:.02em;
  font-size:13px;
  text-transform:uppercase;
  color:rgba(15,27,45,0.72);
  display:flex;
  align-items:center;
  gap:8px;
}
.st-locations-title::before{ content:"📍"; font-size:14px; }
.st-locations-sub{
  margin-top:2px;
  font-size:12px;
  font-weight:800;
  color:rgba(15,27,45,0.60);
  line-height:1.3;
}

/* ✅ ROW WRAPPER */
.st-loc-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
  margin-top:14px;
}

/* ✅ CARD */
.st-loc{
  display:flex;
  gap:14px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,0.65);
  border:1px solid rgba(15,27,45,0.08);
  box-shadow:0 18px 45px rgba(0,0,0,0.10);
  transition:transform .2s ease, background .2s ease;
  height:100%;
}
.st-loc:hover{
  transform: translateY(-2px);
  background:rgba(255,255,255,0.75);
}

/* icon */
.st-loc-ic{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(11,143,143,.18), rgba(246,141,130,.14));
  font-weight:1000;
  color:#1f2937;
  flex-shrink:0;
}

/* body */
.st-loc-body{
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;            /* take remaining space */
  min-width:0;
}
.st-loc-name{
  font-weight:1000;
  font-size:15px;
  color:#0f1b2d;
}
.st-loc-addr{
  font-size:14px;
  line-height:1.5;
  color:rgba(15,27,45,0.65);
}

/* ✅ button always bottom */
.st-loc-map{
  margin-top:auto;   /* KEY FIX */
  align-self:flex-start;
  font-weight:900;
  font-size:14px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  background:#e6f6f5;
  color:#0f1b2d;
  border:1px solid rgba(11,143,143,.25);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.st-loc-map:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(11,143,143,.25);
  filter:brightness(1.02);
}

/* =========================
   ✅ Responsive
========================= */
@media (max-width: 980px){
  .st-footer-top{ grid-template-columns: 1fr; }
  .st-links{ grid-template-columns: 1fr; }

  .st-footer-cta{
    flex-direction:column;
    align-items:flex-start;
  }
  .st-cta-title{ font-size:18px; }

  .st-locations-head{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* ✅ Locations stack on mobile/tablet */
@media (max-width: 768px){
  .st-loc-row{ grid-template-columns: 1fr; }
  .st-loc{ padding:16px; }
  .st-loc-map{ width:100%; }
}

@media (max-width: 520px){
  .st-footer{ padding:54px 0 26px; }
  .st-logo{ font-size:24px; }
  .st-badge{ padding:9px 12px; }

  .st-footer-cta{ padding:14px 14px; }
  .st-btn{ width:100%; }
  .st-cta-right{ width:100%; }

  .st-social-link{ width:100%; justify-content:center; }

  .st-contact-link{ width:100%; }
}
