/* ================================================================
   style2.css  —  ShakTide ULTIMATE UI Layer
   All glass + float effects  +  15 advanced CSS properties
   Place AFTER style.css:
     <link rel="stylesheet" href="style.css">
     <link rel="stylesheet" href="style2.css">
   ================================================================ */

/* ═══════════════════════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════════════════════ */
:root {
  --spring:       cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out:     cubic-bezier(0.19, 1, 0.22, 1);
  --plum-glow:    rgba(106, 27, 77, 0.22);
  --glass-white:  rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.55);

  --primary-08:  rgb(from var(--primary) r g b / 0.08);
  --primary-12:  rgb(from var(--primary) r g b / 0.12);
  --primary-20:  rgb(from var(--primary) r g b / 0.20);
  --primary-32:  rgb(from var(--primary) r g b / 0.32);

  accent-color: var(--primary);
  caret-color:  var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   1. BODY — aurora mesh background
═══════════════════════════════════════════════════════════════ */
html body {
  background-color: #fdf6f9 !important;
  background-image:
    radial-gradient(ellipse 80% 60% at 10%  5%,  rgba(248,215,229,0.70) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 90%  90%, rgba(237,231,246,0.65) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 55%  40%, rgba(255,228,230,0.30) 0%, transparent 60%) !important;
  background-attachment: fixed !important;
}

.section-white {
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(2px);
}

/* ═══════════════════════════════════════════════════════════════
   2. GLASS HEADER
═══════════════════════════════════════════════════════════════ */
html body .st-site-wrapper header.header {
  background: rgba(255,255,255,0.48) !important;
  backdrop-filter: blur(24px) saturate(220%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(220%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.60) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 6px 32px var(--primary-08) !important;
}
html body .st-site-wrapper header.header.scrolled {
  background: rgba(255,255,255,0.82) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 8px 40px var(--primary-12) !important;
}

/* Nav underline sweep */
.nav-desktop .nav-item {
  position: relative;
  transition: color 0.3s ease, opacity 0.3s ease !important;
}
.nav-desktop .nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), #f43f5e);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}
.nav-desktop .nav-item:hover { opacity: 1 !important; }
.nav-desktop .nav-item:hover::after { transform: scaleX(1); }

/* Glass mobile overlay */
html body .mobile-overlay {
  background: rgba(255,255,255,0.90) !important;
  backdrop-filter: blur(32px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(200%) !important;
  border-left: 1px solid rgba(255,255,255,0.6);
  overscroll-behavior: contain;
}

@starting-style {
  html body .mobile-overlay.open {
    opacity: 0;
    transform: translateX(60px);
  }
}
html body .mobile-overlay.open {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.5s var(--spring);
}

/* ═══════════════════════════════════════════════════════════════
   3. HERO TAG — visible glass pill
═══════════════════════════════════════════════════════════════ */
.hero .hero-tag {
  background: var(--secondary) !important;
  border: 2px solid rgba(106,27,77,0.35) !important;
  border-radius: 999px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(106,27,77,0.15);
  color: var(--primary) !important;
  font-weight: 900 !important;
  opacity: 1 !important;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
.hero .hero-tag:hover {
  background: var(--primary-12) !important;
  border-color: rgba(106,27,77,0.45) !important;
  box-shadow: 0 6px 20px rgba(106,27,77,0.2);
}

/* text-wrap: balance — hero title never orphans */
.hero-title {
  text-wrap: balance;
}

.section-header h2,
.plum-heading {
  text-wrap: balance;
}

/* ═══════════════════════════════════════════════════════════════
   4. HERO — desktop size reduction (1025px+ only)
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1025px) {
  .hero {
    min-height: unset !important;
    padding: 100px 5% 3rem !important;
  }
  .hero-grid {
    gap: 3rem !important;
  }
  .hero-tag {
    margin-bottom: 1.2rem !important;
    margin-top: 1.5rem !important;
  }
  .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
    margin-bottom: 1.2rem !important;
    line-height: 1 !important;
  }
  .hero-desc {
    font-size: 1.05rem !important;
    margin-bottom: 2rem !important;
  }
  .hero-img {
    width: 600px !important;
    height: 350px !important;
    object-fit: cover !important;
    margin-top: 40px !important;
    box-shadow:
      0 0 0 5px rgba(255,255,255,0.85),
      0 0 0 8px var(--primary-08),
      0 28px 70px var(--primary-20) !important;
    border-radius: 56px !important;
    transform: rotate(3deg) translateY(0px) !important;
    transition: transform 1.1s var(--spring), box-shadow 1.1s var(--ease-out) !important;
  }
  .hero-img:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.025) !important;
    box-shadow:
      0 0 0 5px rgba(255,255,255,0.95),
      0 0 0 9px var(--primary-12),
      0 40px 90px rgba(106,27,77,0.28) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   5. HERO — mobile fixes (max 1024px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    min-height: unset !important;
    padding: 100px 5% 2rem !important;
    overflow-x: hidden !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    text-align: center !important;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    width: 100% !important;
  }
  .hero-desc {
    font-size: 0.95rem !important;
    padding: 0 1rem !important;
  }
  .hero-img {
    width: 100% !important;
    max-width: 100% !important;
    height: 260px !important;
    border-radius: 28px !important;
    transform: rotate(3deg) !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 auto !important;
    display: block !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
  }
  .hero > .hero-grid > div:last-child {
    width: 90% !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   6. BUTTONS — pill + shimmer + spring
═══════════════════════════════════════════════════════════════ */
html body a.btn-plum,
html body button.btn-plum {
  border-radius: 999px !important;
  background: linear-gradient(135deg, #6A1B4D 0%, #a02d6e 55%, #c7406c 100%) !important;
  box-shadow:
    0 8px 24px var(--primary-32),
    0 1px 0 rgba(255,255,255,0.15) inset !important;
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease, filter 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
}
html body a.btn-plum::before,
html body button.btn-plum::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
html body a.btn-plum:hover::before,
html body button.btn-plum:hover::before { left: 160%; }
html body a.btn-plum:hover,
html body button.btn-plum:hover {
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow: 0 18px 40px rgba(106,27,77,0.40), 0 1px 0 rgba(255,255,255,0.2) inset !important;
  filter: brightness(1.08) !important;
}
html body a.btn-plum:active,
html body button.btn-plum:active { transform: translateY(-1px) scale(0.99) !important; }

/* Outlined btn */
html body a.btn-plum[style*="background: none"],
html body a.btn-plum[style*="background:none"] {
  background: rgba(255,255,255,0.55) !important;
  backdrop-filter: blur(10px);
  border: 2.5px solid var(--primary) !important;
  color: var(--primary) !important;
  box-shadow: 0 4px 16px var(--primary-08) !important;
}
html body a.btn-plum[style*="background: none"]:hover,
html body a.btn-plum[style*="background:none"]:hover {
  background: var(--primary-08) !important;
  transform: translateY(-4px) scale(1.04) !important;
  box-shadow: 0 12px 30px var(--primary-20) !important;
}

/* Desktop Login button white text */
header .btn-plum,
.nav-desktop .btn-plum,
.nav-desktop a.btn-plum {
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════
   7. CARDS — deep glass + dramatic float
═══════════════════════════════════════════════════════════════ */
.card {
  container-type: inline-size;
  container-name: card;
}

html body .card {
  background: rgba(255,255,255,0.68) !important;
  backdrop-filter: blur(16px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
  border: 1px solid rgba(255,255,255,0.70) !important;
  border-radius: 28px !important;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.02),
    0 12px 40px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.90) !important;
  transition:
    transform 0.5s var(--spring),
    box-shadow 0.5s var(--ease-out),
    border-color 0.35s ease !important;
  position: relative !important;
  overflow: hidden !important;
}
html body .card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d946ef 40%, #6A1B4D 60%, transparent);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}
html body .card:hover {
  transform: translateY(-14px) scale(1.01) !important;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.03),
    0 28px 65px rgba(106,27,77,0.16),
    0 0 0 1.5px rgba(217,70,239,0.18),
    inset 0 1px 0 rgba(255,255,255,1) !important;
  border-color: rgba(217,70,239,0.22) !important;
}
html body .card:hover::before { opacity: 1; left: 5%; right: 5%; }

html body .card:has(div[style*="color: #F59E0B"]) { border-top-color: rgba(245,158,11,0.3) !important; }
html body .card:has(div[style*="color: #10B981"]) { border-top-color: rgba(16,185,129,0.3) !important; }
html body .card:has(div[style*="color: #06B6D4"]) { border-top-color: rgba(6,182,212,0.3) !important; }

.grid-3 > .card:nth-child(1) { transition-delay: 0s; }
.grid-3 > .card:nth-child(2) { transition-delay: 0.08s; }
.grid-3 > .card:nth-child(3) { transition-delay: 0.16s; }

@container card (max-width: 280px) {
  .card { padding: 1.5rem !important; border-radius: 20px !important; }
  .card h3 { font-size: 1.2rem !important; }
}

/* ═══════════════════════════════════════════════════════════════
   8. CONDITION CARDS
═══════════════════════════════════════════════════════════════ */
html body .condition-card {
  background: rgba(255,255,255,0.65) !important;
  backdrop-filter: blur(14px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
  border: 1px solid rgba(255,255,255,0.65) !important;
  border-radius: 28px !important;
  box-shadow: 0 10px 35px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.85) !important;
  transition: transform 0.45s var(--spring), box-shadow 0.45s ease, border-color 0.3s ease !important;
}
html body .condition-card:hover {
  background: rgba(255,255,255,0.85) !important;
  transform: translateY(-12px) !important;
  box-shadow: 0 24px 60px rgba(106,27,77,0.15), inset 0 1px 0 rgba(255,255,255,1) !important;
  border-color: rgba(106,27,77,0.30) !important;
}
html body .condition-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* FAQ active highlight */
html body .faq-item:has(.faq-question[aria-expanded="true"]),
html body .faq-item.active {
  border-color: rgba(106,27,77,0.30) !important;
  box-shadow: 0 12px 36px var(--primary-12) !important;
  background: rgba(255,255,255,0.82) !important;
}

/* ═══════════════════════════════════════════════════════════════
   9. IMPACT BANNER
═══════════════════════════════════════════════════════════════ */
html body .impact-banner {
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(180,50,110,0.35) 0%, transparent 70%),
    linear-gradient(135deg, #5a1640 0%, #6A1B4D 45%, #8b2560 100%) !important;
  position: relative;
  overflow: hidden;
}
.counter-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--spring), background 0.3s ease;
}
.counter-item:hover { transform: translateY(-6px); background: rgba(255,255,255,0.14); }

@supports (animation-timeline: scroll()) {
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .counter-item {
    animation: fadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
  .section-header {
    animation: fadeUp linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
  html body .card.reveal,
  html body .condition-card.reveal {
    animation: fadeUp linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 45%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   10. TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
html body .testimonials-section {
  background: rgba(255,250,251,0.60) !important;
  backdrop-filter: blur(4px);
}
html body .testimonial-card {
  background: rgba(255,255,255,0.72) !important;
  backdrop-filter: blur(14px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(160%) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255,255,255,0.65) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.85) !important;
  transition: transform 0.4s var(--spring), box-shadow 0.4s ease !important;
}
html body .testimonial-card:hover {
  transform: translateY(-8px) scale(1.015) !important;
  box-shadow: 0 22px 55px rgba(106,27,77,0.14), inset 0 1px 0 rgba(255,255,255,1) !important;
}
html body .client-img {
  padding: 3px;
  background: linear-gradient(135deg, #d946ef, #6A1B4D) !important;
  box-shadow: 0 4px 18px var(--primary-20) !important;
  border: none !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: drop-shadow(0 4px 12px rgba(106,27,77,0.25));
}
html body .client-quote {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══════════════════════════════════════════════════════════════
   11. PHOTO RUNNER — fade edges + scroll snap on mobile
═══════════════════════════════════════════════════════════════ */
html body .runner-track img {
  border-radius: 28px !important;
  border: 2px solid rgba(106,27,77,0.12) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
  transition: transform 0.45s var(--spring), box-shadow 0.45s ease, border-color 0.3s ease !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  scroll-snap-align: center;
}
html body .runner-track img:hover {
  transform: scale(1.07) translateY(-6px) !important;
  box-shadow: 0 22px 48px rgba(106,27,77,0.20) !important;
  border-color: rgba(106,27,77,0.45) !important;
}
html body .runner-container {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
@media (max-width: 768px) {
  html body .runner-container {
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  html body .runner-track {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   12. MARQUEE
═══════════════════════════════════════════════════════════════ */
html body .marquee-section {
  background: rgba(248,215,229,0.55) !important;
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.55) !important;
  border-bottom: 1px solid rgba(106,27,77,0.08) !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════════
   13. FAQ ITEMS
═══════════════════════════════════════════════════════════════ */
html body .faq-item {
  background: rgba(255,255,255,0.62) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,0.60) !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease, border-color 0.3s ease !important;
  overflow: hidden !important;
}
html body .faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px var(--primary-12) !important;
  border-color: rgba(106,27,77,0.20) !important;
}

/* ═══════════════════════════════════════════════════════════════
   14. TEAM IMAGES
═══════════════════════════════════════════════════════════════ */
html body .team-img {
  filter: grayscale(1) drop-shadow(0 8px 20px rgba(106,27,77,0.15));
  aspect-ratio: 4 / 5;
  transition: filter 0.4s ease, transform 0.4s var(--spring) !important;
}
html body .team-item:hover .team-img {
  filter: grayscale(0) drop-shadow(0 12px 28px rgba(106,27,77,0.25));
  transform: translateY(-8px);
}

/* ═══════════════════════════════════════════════════════════════
   15. DONATION SECTION
═══════════════════════════════════════════════════════════════ */
html body section#contact {
  background: linear-gradient(135deg, #5a1640 0%, #6A1B4D 50%, #8a2462 100%) !important;
}
html body section#contact .card {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: none !important;
  border-radius: 28px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18) !important;
  border: 1px solid rgba(255,255,255,0.9) !important;
}
html body section#contact .card:hover { transform: translateY(-8px) !important; }
html body section#contact h2 {
  mix-blend-mode: overlay;
  opacity: 0.95;
}

/* ═══════════════════════════════════════════════════════════════
   16. FOOTER
═══════════════════════════════════════════════════════════════ */
html body footer {
  background: linear-gradient(160deg, #4e1238 0%, #6A1B4D 50%, #7e2260 100%) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: hidden;
  position: relative;
}
html body footer::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
}

/* Desktop footer grid */
html body .footer-desktop {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
  gap: 3rem !important;
  padding: 5rem 5% 4rem !important;
  background: transparent !important;
  color: #fff;
  align-items: start;
}
html body .footer-desktop .footer-col:first-child .logo-img {
  height: 48px;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}
html body .footer-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 260px;
}
html body .footer-col h4 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 1.5rem !important;
  color: var(--secondary) !important;
  opacity: 0.9;
}
html body .footer-links {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}
html body .footer-link,
html body .footer-link a {
  color: rgba(255,255,255,0.70) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.25s ease, padding-left 0.25s ease !important;
  display: inline-block;
}
html body .footer-link:hover,
html body .footer-link a:hover {
  color: #fff !important;
  padding-left: 4px;
}
html body .footer-col:last-child .footer-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.70);
  font-size: 0.9rem;
  margin-bottom: 0.6rem !important;
}

/* Disclaimer */
html body .disclaimer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 2rem 5%;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.15);
}
html body .disclaimer span {
  color: #fff !important;
  font-weight: 900 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}
html body .disclaimer p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.82rem !important;
  line-height: 1.6;
  margin: 0 !important;
  flex: 1;
  min-width: 200px;
}

/* Mobile footer */
html body .footer-mobile {
  display: none;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2.5rem !important;
  padding: 4rem 6% 3rem !important;
  background: transparent !important;
  text-align: center !important;
}
html body .footer-mobile .logo-img {
  height: 44px;
  filter: brightness(0) invert(1);
}
html body .footer-mobile .logo-box {
  background: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.2);
}
html body .footer-mobile .logo-text { color: #fff !important; }
html body .footer-mobile > p.footer-text {
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.6;
}
html body .footer-mobile > div {
  display: flex !important;
  gap: 1.5rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}
html body .footer-mobile .footer-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease !important;
}
html body .footer-mobile .footer-link:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,0.3);
}
html body .footer-mobile [data-lucide] {
  opacity: 0.70;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
html body .footer-mobile [data-lucide]:hover {
  opacity: 1;
  transform: translateY(-2px);
}
html body .footer-mobile > p:last-of-type {
  color: rgba(255,255,255,0.40) !important;
  font-size: 0.78rem !important;
  margin-top: 0.5rem !important;
}

/* ═══════════════════════════════════════════════════════════════
   17. FOOTER RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (min-width: 1025px) and (max-width: 1280px) {
  html body .footer-desktop {
    gap: 2rem !important;
    padding: 4rem 4% 3rem !important;
  }
}

@media (max-width: 1024px) {
  html body .footer-desktop { display: none !important; }
  html body .footer-mobile  { display: flex !important; }
  html body .disclaimer {
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 1.2rem 6% 2rem !important;
    background: rgba(0,0,0,0.15) !important;
    margin: 0 !important;
    text-align: left !important;
  }
}

@media (max-width: 480px) {
  html body .footer-mobile {
    padding: 2.5rem 5% 2.5rem !important;
    gap: 1.5rem !important;
  }
  html body .disclaimer {
    padding: 1rem 5% 1.8rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   18. ABOUT PAGE + MOBILE HEADER FIXES
═══════════════════════════════════════════════════════════════ */
@media screen and (max-width: 768px) {
  header.about-header {
    padding: 0.9rem 1rem !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.8rem !important;
    height: auto !important;
  }
  .about-nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.8rem !important;
    width: 100% !important;
  }
  .about-nav-links a {
    font-size: 0.7rem !important;
    white-space: nowrap !important;
  }
  .team-grid-about {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  .team-card {
    width: 100% !important;
    padding: 1.2rem 0.8rem !important;
  }
  .team-card-img {
    width: 70px !important;
    height: 70px !important;
  }
  .about-hero-inner,
  .story-section,
  .pillars-grid,
  .mvv-grid,
  .stat-strip-inner {
    grid-template-columns: 1fr !important;
  }
  .about-hero {
    padding-top: 180px !important;
  }
}

@media screen and (max-width: 480px) {
  .team-grid-about {
    grid-template-columns: 1fr !important;
  }
  .about-hero h1 {
    font-size: 2.2rem !important;
  }
  .about-hero p {
    font-size: 0.95rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   19. MOBILE CLOSE BUTTON FIX
═══════════════════════════════════════════════════════════════ */
#menuClose {
  z-index: 9999 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute !important;
}

/* ─── Hero Medical Guidance Tagline Fix ─── */
.hero-desc.medical-guidance {
  font-family: 'Georgia', 'Times New Roman', serif; /* Changes the font variant */
  font-size: 1.15rem !important;                    /* Reduces the size slightly */
  font-style: italic;                               /* Adds an elegant, authoritative look */
  letter-spacing: 0.02em;
  opacity: 0.85;
  margin-top: -0.5rem;                              /* Pulls it slightly closer to the title */
}

/* Responsive adjustment for mobile screens */
@media (max-width: 1024px) {
  .hero-desc.medical-guidance {
    font-size: 1rem !important;
    padding: 0 1rem;
  }
}