:root {
  --primary: #0f766e;
  --primary-dark: #0b4f4a;
  --secondary: #7c3aed;
  --accent: #14b8a6;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --soft-bg: #f4fbfa;
  --border: rgba(15, 118, 110, 0.12);
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --radius: 24px;
  --container: 1200px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(20, 184, 166, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at top right,
      rgba(124, 58, 237, 0.12),
      transparent 25%
    ),
    linear-gradient(135deg, #eef9f8, #f8fcff);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-main {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--primary-dark);
  transition: 0.3s ease;
}

.nav-dropdown-main i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-main i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;

  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(15, 118, 110, 0.08);

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);

  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);

  transition: all 0.25s ease;
  z-index: 1000;
}
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 10px;
  }

  .nav-dropdown-main i {
    display: none;
  }
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--primary-dark);
  transition: 0.25s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(20, 184, 166, 0.08);
  color: var(--secondary);
}
/* Top Ribbon */
.top-ribbon {
  background: linear-gradient(90deg, #0f766e, #14b8a6);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-ribbon-text {
  opacity: 0.9;
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--secondary);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
}
.home-testimonials-section {
  padding: 80px 0;
  background: #f8fbff;
}

.testimonial-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: white;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card p {
  margin: 15px 0;
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-card h4 {
  font-size: 14px;
  color: #666;
}

.stars {
  color: #ffb400;
}
/* Hero */
.hero-section {
  padding: 48px 0 70px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-lg);
}

.hero-left {
  padding: 20px;
  border-radius: var(--radius);
}

.section-badge {
  display: inline-block;
  background: rgba(20, 184, 166, 0.12);
  color: var(--primary);
  border: 1px solid rgba(20, 184, 166, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-left h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.subtitle {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 26px;
  max-width: 620px;
}

.features {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  gap: 12px;
}

.features li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
  color: #334155;
}

.features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.tagline {
  color: var(--primary-dark);
  font-size: 1.15rem;
  margin-bottom: 28px;
}

/* Appointment Box */
.appointment-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  background: var(--white);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 118, 110, 0.08);
}

.appointment-box select,
.appointment-box input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #dbe3ea;
  outline: none;
  font-size: 15px;
  color: var(--text);
  background: #fff;
}

.appointment-box select:focus,
.appointment-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.appointment-box button {
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #5b21b6);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.appointment-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.28);
}

/* Hero Right */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.doctor-card {
  width: 100%;
  min-height: 620px;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 12px 12px 0;
}

.doctor-card::before {
  content: "";
  position: absolute;
  inset: auto auto 60px -50px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.doctor-card::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.doctor-card img {
  position: relative;
  z-index: 2;
  width: 360px;
  max-width: 100%;
  border-radius: 26px 26px 0 0;
  object-fit: cover;
}

.mini-trust {
  margin-top: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #2f4858;
  font-weight: 500;
  line-height: 1.7;
}

.badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.experience {
  top: 50px;
  left: 24px;
}

.patients {
  top: 120px;
  right: 24px;
}

/* Inner Pages */
.inner-page {
  padding: 60px 0 80px;
}

.page-banner {
  background: linear-gradient(
    135deg,
    rgba(15, 118, 110, 0.95),
    rgba(20, 184, 166, 0.9)
  );
  color: var(--white);
  padding: 48px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}

.page-banner h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.page-banner p {
  max-width: 750px;
  opacity: 0.95;
}

.content-card {
  background: rgba(255, 255, 255, 0.88);
  padding: 32px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 118, 110, 0.08);
}

/* Footer */
.site-footer {
  margin-top: 40px;
  background: #062f2c;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 56px 0 32px;
}

.footer-brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  max-width: 340px;
}

.footer-logo {
  height: 56px;
  width: auto;
}

.site-footer h4 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 17px;
}

.site-footer ul {
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  transition: 0.3s ease;
}

.site-footer a:hover {
  color: #a7f3d0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #5b21b6);
  color: #fff;
  cursor: pointer;
  min-height: 52px;
  min-width: 56px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.28);
}

.search-btn svg {
  width: 20px;
  height: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 40px;
  }

  .doctor-card {
    min-height: 500px;
  }

  .appointment-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    width: min(320px, calc(100% - 40px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-menu.show {
    display: flex;
  }

  .hero-section {
    padding: 28px 0 50px;
  }

  .hero-left {
    padding: 28px 20px;
  }

  .subtitle {
    font-size: 15px;
  }

  .appointment-box {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    min-height: 400px;
    padding: 20px 20px 0;
  }

  .doctor-card img {
    width: 250px;
  }

  .badge {
    font-size: 12px;
    padding: 10px 14px;
  }

  .experience {
    top: 20px;
    left: 14px;
  }

  .patients {
    bottom: 80px;
    right: 14px;
  }

  .page-banner,
  .content-card {
    padding: 24px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 42px 0 24px;
  }

  .top-ribbon {
    font-size: 13px;
  }
}

/* Hero */
.service-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
}

.service-hero-content {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  padding: 46px;
}

.service-hero-content h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.12;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.service-hero-content p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 640px;
}

.hero-feature-points {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--primary-dark);
  font-weight: 600;
}

.hero-point-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  font-size: 18px;
}

.service-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--secondary), #5b21b6);
  color: #fff;
  box-shadow: 0 16px 28px rgba(124, 58, 237, 0.22);
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid rgba(15, 118, 110, 0.12);
}

.secondary-btn:hover {
  background: #f7fbfb;
}

/* Right image */
.service-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image-card {
  position: relative;
  width: 100%;
  min-height: 580px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.service-image-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: 28px;
  right: -40px;
}

.service-image-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: 40px;
  left: -40px;
}

.service-image-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 370px;
  border-radius: 28px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.floating-badge.top-left {
  top: 24px;
  left: 24px;
}

.floating-badge.bottom-right {
  right: 24px;
  bottom: 110px;
}

/* Highlight strip */
.services-highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.highlight-strip-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 118, 110, 0.08);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
  border-radius: 22px;
  padding: 22px;
}

.strip-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.14)
  );
  font-size: 22px;
}

.highlight-strip-card h3 {
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.highlight-strip-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Intro */
.modern-intro-card {
  margin-top: 0;
  margin-bottom: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(245, 252, 252, 0.92)
  );
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 34px;
}

.modern-intro-card h2 {
  font-size: 31px;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.modern-intro-card p {
  color: var(--muted);
  font-size: 16px;
  max-width: 900px;
}

/* Services */
.modern-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.modern-service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.modern-service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
}

.modern-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.1);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  font-size: 26px;
  margin-bottom: 18px;
}

.modern-service-card h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.modern-service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

/* Bottom CTA panel */
.service-cta-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.service-cta-content {
  padding: 42px;
  color: #fff;
}

.service-cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin: 14px 0;
}

.service-cta-content p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 24px;
  max-width: 600px;
}

.service-cta-image {
  height: 100%;
  min-height: 340px;
}

.service-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 1024px) {
  .service-hero,
  .service-cta-panel {
    grid-template-columns: 1fr;
  }

  .services-highlight-strip,
  .modern-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-image-card {
    min-height: 460px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service-hero-content {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .service-image-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .service-image-card img {
    max-width: 240px;
  }

  .floating-badge {
    font-size: 12px;
    padding: 10px 14px;
  }

  .floating-badge.top-left {
    top: 16px;
    left: 16px;
  }

  .floating-badge.bottom-right {
    right: 16px;
    bottom: 80px;
  }

  .services-highlight-strip,
  .modern-services-grid {
    grid-template-columns: 1fr;
  }

  .highlight-strip-card,
  .modern-intro-card,
  .modern-service-card {
    border-radius: 20px;
  }

  .modern-intro-card {
    padding: 24px 20px;
  }

  .modern-intro-card h2 {
    font-size: 24px;
  }

  .service-cta-content {
    padding: 28px 20px;
  }

  .service-cta-image {
    min-height: 240px;
  }
}
.parent-education-page {
  padding: 10px 0 80px;
}

/* Hero */
.parent-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.parent-hero-content {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  padding: 46px;
}

.parent-hero-content h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.12;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.parent-hero-content p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 640px;
}

.parent-hero-points {
  display: grid;
  gap: 12px;
}

.parent-point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--primary-dark);
  font-weight: 600;
}

.parent-point-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.parent-point-icon i {
  color: var(--primary-dark);
  font-size: 18px;
}

/* Right image */
.parent-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.parent-image-card {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.parent-image-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: 32px;
  right: -42px;
}

.parent-image-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: 35px;
  left: -35px;
}

.parent-image-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 365px;
  border-radius: 28px;
  object-fit: cover;
}

/* Info cards */
.parent-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.parent-info-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.parent-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.09);
}

.parent-info-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  margin-bottom: 16px;
}

.parent-info-icon i {
  color: var(--primary-dark);
  font-size: 24px;
}

.parent-info-card h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.parent-info-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Strip */
.parent-strip-card {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(11, 79, 74, 0.98),
    rgba(15, 118, 110, 0.95)
  );
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.parent-strip-content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 14px 0 12px;
  max-width: 760px;
}

.parent-strip-content p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
}

.parent-strip-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ */
.faq-section-modern {
  margin-top: 10px;
}

.faq-header {
  margin-bottom: 22px;
}

.faq-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--primary-dark);
  margin-top: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

.faq-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  margin-bottom: 16px;
}

.faq-icon i {
  color: var(--primary-dark);
  font-size: 24px;
}

.faq-card h3 {
  color: var(--primary-dark);
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.faq-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
  .parent-hero,
  .parent-strip-card {
    grid-template-columns: 1fr;
  }

  .parent-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .parent-image-card {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .parent-hero-content {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .parent-image-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .parent-image-card img {
    max-width: 240px;
  }

  .parent-info-grid {
    grid-template-columns: 1fr;
  }

  .parent-strip-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .parent-strip-content h2 {
    font-size: 24px;
  }

  .faq-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .faq-card h3 {
    font-size: 18px;
  }
}
.feedback-page {
  padding: 10px 0 80px;
}

/* Hero */
.feedback-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.feedback-hero-content {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  padding: 46px;
}

.feedback-hero-content h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.feedback-hero-content p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 650px;
}

.feedback-hero-points {
  display: grid;
  gap: 12px;
}

.feedback-point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--primary-dark);
  font-weight: 600;
}

.feedback-point-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.feedback-point-icon i {
  font-size: 18px;
  color: var(--primary-dark);
}

/* Hero image */
.feedback-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-image-card {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.feedback-image-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: 32px;
  right: -42px;
}

.feedback-image-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: 35px;
  left: -35px;
}

.feedback-image-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 365px;
  border-radius: 28px;
  object-fit: cover;
}

/* Stats strip */
.feedback-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feedback-stat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.feedback-stat-card h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.feedback-stat-card p {
  color: var(--muted);
  font-weight: 600;
}

/* Section header */
.feedback-section-header {
  margin-bottom: 22px;
}

.feedback-section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--primary-dark);
  margin-top: 10px;
}

/* Testimonials */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.feedback-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

.feedback-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.feedback-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 20px;
}

.feedback-user h3 {
  color: var(--primary-dark);
  font-size: 18px;
  margin-bottom: 2px;
}

.feedback-user p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.feedback-stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
  font-size: 14px;
  margin-top: 4px;
}

.feedback-card > p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* Highlight panel */
.feedback-highlight-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(245, 252, 252, 0.92)
  );
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 34px;
}

.feedback-highlight-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 12px 0 14px;
}

.feedback-highlight-content p {
  color: var(--muted);
  font-size: 16px;
}

.feedback-highlight-boxes {
  display: grid;
  gap: 16px;
}

.mini-highlight-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  color: var(--primary-dark);
  font-weight: 600;
}

.mini-highlight-box i {
  color: var(--secondary);
  font-size: 18px;
}

/* CTA */
.feedback-cta-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.feedback-cta-content {
  padding: 42px;
  color: #fff;
}

.feedback-cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin: 14px 0;
}

.feedback-cta-content p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 24px;
  max-width: 600px;
}

.feedback-cta-image {
  height: 100%;
  min-height: 340px;
}

.feedback-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shared tweaks */
.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-badge i {
  color: var(--primary-dark);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .feedback-hero,
  .feedback-highlight-panel,
  .feedback-cta-panel {
    grid-template-columns: 1fr;
  }

  .feedback-stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .feedback-image-card {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .feedback-hero-content {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .feedback-image-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .feedback-image-card img {
    max-width: 240px;
  }

  .feedback-stats-strip {
    grid-template-columns: 1fr;
  }

  .feedback-highlight-panel {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .feedback-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .feedback-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .feedback-cta-content {
    padding: 28px 20px;
  }

  .feedback-cta-image {
    min-height: 240px;
  }
}
.contact-modern-page {
  padding: 10px 0 80px;
}

/* Hero */
.contact-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.contact-hero-content {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  padding: 46px;
}

.contact-hero-content h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.contact-hero-content p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 650px;
}

.contact-hero-points {
  display: grid;
  gap: 12px;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--primary-dark);
  font-weight: 600;
}

.contact-point-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.contact-point-icon i {
  font-size: 18px;
  color: var(--primary-dark);
}

.contact-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image-card {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.contact-image-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: 32px;
  right: -42px;
}

.contact-image-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: 35px;
  left: -35px;
}

.contact-image-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 365px;
  border-radius: 28px;
  object-fit: cover;
}

/* Quick cards */
.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.contact-quick-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  color: inherit;
}

.contact-quick-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

.contact-quick-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-quick-icon i {
  color: var(--primary-dark);
  font-size: 22px;
}

.contact-quick-card h3 {
  color: var(--primary-dark);
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-quick-card p {
  color: var(--muted);
  font-size: 14px;
}

/* Form + info */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  margin-bottom: 34px;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.contact-form-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 12px 0 14px;
}

.contact-form-card > p {
  color: var(--muted);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.form-group-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-modern.full-width {
  grid-column: 1 / -1;
}

.form-group-modern label {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
}

.form-group-modern input,
.form-group-modern textarea {
  width: 100%;
  border: 1px solid #d9e4e8;
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

/* info column */
.contact-info-column {
  display: grid;
  gap: 18px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.contact-info-head {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: center;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon i {
  color: var(--primary-dark);
  font-size: 22px;
}

.contact-info-head h3 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 4px;
}

.contact-info-head p {
  color: var(--muted);
  font-size: 14px;
}

.contact-info-body > p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--primary-dark);
  font-weight: 600;
  margin: 0 10px 10px 0;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.info-pill i {
  color: var(--secondary);
}

.large-pill {
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
}

.compact-contact-card {
  display: grid;
  gap: 12px;
}

/* Map */
.contact-map-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.map-card-header {
  margin-bottom: 20px;
}

.map-card-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-dark);
  margin: 12px 0 10px;
}

.map-card-header p {
  color: var(--muted);
}

.map-frame-modern {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-hero,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-image-card {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .contact-hero-content,
  .contact-form-card,
  .contact-map-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .contact-image-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .contact-image-card img {
    max-width: 240px;
  }

  .contact-quick-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    border-radius: 20px;
    padding: 20px;
  }

  .map-frame-modern {
    border-radius: 18px;
  }
}
body.modal-open {
  overflow: hidden;
}

.appointment-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.appointment-modal.show {
  display: block;
}

.appointment-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
}

.appointment-modal-box {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 30px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  margin: 20px auto;
  background: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
}

.appointment-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.appointment-modal-header {
  margin-bottom: 24px;
  padding-right: 40px;
}

.appointment-modal-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary-dark);
  margin: 12px 0 10px;
}

.appointment-modal-header p {
  color: var(--muted);
}

.appointment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.appointment-submit-btn {
  margin-top: 22px;
}

@media (max-width: 768px) {
  .appointment-modal-box {
    width: calc(100% - 20px);
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    padding: 24px 18px;
    border-radius: 22px;
  }

  .appointment-form-grid {
    grid-template-columns: 1fr;
  }
}
.hero-credentials {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.home-core-services-section,
.home-services-section,
.home-strip-section,
.home-faq-section,
.home-bottom-links-section {
  padding: 0 0 34px;
}

.home-bottom-links-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.home-contact-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-contact-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
}

.home-contact-left,
.contact-form-card {
  height: 100%;
  border-radius: 24px;
}

.home-contact-left {
  padding: 38px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 45px rgba(22, 34, 66, 0.08);
}

.home-contact-left h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 14px 0 14px;
  color: #102542;
}

.home-contact-left > p {
  font-size: 1rem;
  line-height: 1.75;
  color: #5a6473;
  margin-bottom: 28px;
}

.contact-info-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 24px rgba(16, 37, 66, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(16, 37, 66, 0.08);
}

.contact-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f2ff, #f4f8ff);
  color: #1f6bff;
  font-size: 1.1rem;
}

.contact-info-card h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #102542;
}

.contact-info-card p {
  margin: 0;
  color: #5a6473;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info-card a {
  color: #5a6473;
  text-decoration: none;
}

.contact-info-card a:hover {
  color: #1f6bff;
}

.contact-form-card {
  background: #ffffff;
  padding: 34px;
  border: 1px solid #edf1f7;
  box-shadow: 0 18px 45px rgba(22, 34, 66, 0.08);
}

.contact-form-header h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  color: #102542;
}

.contact-form-header p {
  margin: 0 0 24px;
  color: #667085;
  line-height: 1.7;
}

.modern-contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.modern-contact-form .form-group {
  margin-bottom: 18px;
}

.modern-contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #24364d;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
  width: 100%;
  border: 1px solid #dde5ef;
  background: #fbfdff;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.96rem;
  color: #24364d;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
  border-color: #7aa7ff;
  box-shadow: 0 0 0 4px rgba(31, 107, 255, 0.08);
  background: #ffffff;
}

.modern-contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .home-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .home-contact-section {
    padding: 70px 0;
  }

  .home-contact-left,
  .contact-form-card {
    padding: 24px;
    border-radius: 20px;
  }

  .home-contact-left h2 {
    font-size: 1.65rem;
  }

  .contact-info-list,
  .modern-contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

.home-link-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  color: inherit;
}

.home-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

.home-link-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  margin-bottom: 18px;
}

.home-link-icon i {
  color: var(--primary-dark);
  font-size: 24px;
}

.home-link-card h3 {
  color: var(--primary-dark);
  font-size: 24px;
  margin-bottom: 10px;
}

.home-link-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.home-link-card span {
  color: var(--secondary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge i {
  margin-right: 8px;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #5b21b6);
  color: #fff;
  cursor: pointer;
  min-height: 52px;
  min-width: 56px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.28);
}

.search-btn i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .home-bottom-links-grid {
    grid-template-columns: 1fr;
  }

  .home-link-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .home-link-card h3 {
    font-size: 20px;
  }
}
.vaccination-modern-v2 {
  padding: 10px 0 80px;
}

/* hero */
.vaccination-hero-v2 {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.vaccination-hero-copy {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  padding: 46px;
}

.vaccination-hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.08;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 650px;
}

.vaccination-hero-highlights {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.vaccination-highlight-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.08);
}

.vaccination-highlight-pill-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.vaccination-highlight-pill-icon i {
  color: var(--primary-dark);
  font-size: 21px;
}

.vaccination-highlight-pill strong {
  display: block;
  color: var(--primary-dark);
  font-size: 16px;
  margin-bottom: 3px;
}

.vaccination-highlight-pill span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.vaccination-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vaccination-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vaccination-hero-card {
  position: relative;
  width: 100%;
  min-height: 600px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.vaccination-hero-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: 32px;
  right: -42px;
}

.vaccination-hero-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: 35px;
  left: -35px;
}

.vaccination-hero-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

/* story panel */
.vaccination-story-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(245, 252, 252, 0.92)
  );
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.vaccination-story-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 12px 0 14px;
}

.vaccination-story-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.vaccination-story-mini-stats {
  display: grid;
  gap: 16px;
}

.story-stat-card {
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.story-stat-card h3 {
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.story-stat-card p {
  color: var(--muted);
  margin: 0;
}

/* benefits */
.vaccination-benefits-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.vaccination-benefit-v2 {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.vaccination-benefit-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

.vaccination-benefit-v2.featured {
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  color: #fff;
  border: none;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.vaccination-benefit-v2.featured h3,
.vaccination-benefit-v2.featured p {
  color: #fff;
}

.vaccination-benefit-v2.featured .vaccination-benefit-v2-icon {
  background: rgba(255, 255, 255, 0.14);
}

.vaccination-benefit-v2.featured .vaccination-benefit-v2-icon i {
  color: #fff;
}

.vaccination-benefit-v2-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  margin-bottom: 16px;
}

.vaccination-benefit-v2-icon i {
  color: var(--primary-dark);
  font-size: 24px;
}

.vaccination-benefit-v2 h3 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.35;
}

.vaccination-benefit-v2 p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* main grid */
.vaccination-main-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

/* schedule */
.vaccination-schedule-v2 {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.vaccination-schedule-head {
  margin-bottom: 22px;
}

.vaccination-schedule-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--primary-dark);
  margin: 10px 0 10px;
}

.vaccination-schedule-head p {
  color: var(--muted);
}

.vaccination-timeline-v2 {
  display: grid;
  gap: 16px;
}

.vaccination-stage-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
}

.vaccination-stage-time {
  background: linear-gradient(
    135deg,
    rgba(11, 79, 74, 0.98),
    rgba(15, 118, 110, 0.95)
  );
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.vaccination-stage-body {
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
}

.vaccination-stage-body h3 {
  color: var(--primary-dark);
  font-size: 19px;
  margin-bottom: 8px;
}

.vaccination-stage-body p {
  color: var(--muted);
  line-height: 1.7;
}

/* next vaccine */
.next-vaccine-card-v2 {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(245, 252, 252, 0.92)
  );
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 110px;
}

.next-vaccine-card-v2 h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 12px 0 14px;
}

.next-vaccine-card-v2 p {
  color: var(--muted);
  margin-bottom: 18px;
}

.next-vaccine-form-v2 {
  display: grid;
  gap: 16px;
}

.full-btn {
  width: 100%;
}

.next-vaccine-mini-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.next-vaccine-result {
  margin-top: 20px;
}

.result-card {
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.result-card h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.result-card p {
  color: var(--muted);
  margin-bottom: 8px;
}

.result-error {
  color: #b91c1c;
  font-weight: 600;
}

/* responsive */
@media (max-width: 1024px) {
  .vaccination-hero-v2,
  .vaccination-story-panel,
  .vaccination-main-grid {
    grid-template-columns: 1fr;
  }

  .vaccination-benefits-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .vaccination-hero-card {
    min-height: 460px;
  }

  .next-vaccine-card-v2 {
    position: static;
  }
}

@media (max-width: 768px) {
  .vaccination-hero-copy,
  .vaccination-story-panel,
  .vaccination-schedule-v2,
  .next-vaccine-card-v2 {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .vaccination-hero-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .vaccination-hero-card img {
    max-width: 240px;
  }

  .vaccination-benefits-v2 {
    grid-template-columns: 1fr;
  }

  .vaccination-stage-card {
    grid-template-columns: 1fr;
  }

  .vaccination-stage-time,
  .vaccination-stage-body {
    border-radius: 16px;
  }

  .vaccination-highlight-pill {
    align-items: flex-start;
  }
}
.down-syndrome-page {
  padding: 10px 0 80px;
}

/* Hero */
.ds-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
}

.ds-hero-content {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  padding: 46px;
}

.ds-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.ds-hero-text {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.ds-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.ds-hero-highlights {
  display: grid;
  gap: 14px;
}

.ds-hero-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 20px;
  padding: 16px;
}

.ds-hero-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ds-hero-card-icon i {
  font-size: 21px;
  color: var(--primary-dark);
}

.ds-hero-card h3 {
  color: var(--primary-dark);
  font-size: 16px;
  margin-bottom: 5px;
}

.ds-hero-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.ds-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ds-hero-image-card {
  position: relative;
  width: 100%;
  min-height: 600px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.ds-hero-image-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: 32px;
  right: -42px;
}

.ds-hero-image-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: 35px;
  left: -35px;
}

.ds-hero-image-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 370px;
  border-radius: 28px;
  object-fit: cover;
}

/* story */
.ds-story-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(245, 252, 252, 0.92)
  );
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.ds-story-copy h2,
.ds-section-head h2,
.ds-clinic-support-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 12px 0 14px;
}

.ds-story-copy p,
.ds-section-head p,
.ds-clinic-support-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.ds-story-points {
  display: grid;
  gap: 14px;
}

/* know */
.ds-know-panel {
  margin-bottom: 34px;
}

.ds-know-head {
  margin-bottom: 18px;
}

.ds-know-head h2 {
  color: var(--primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.ds-know-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.ds-know-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ds-know-card i {
  color: var(--secondary);
  margin-top: 3px;
}

.ds-know-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* monitor */
.ds-monitoring-section {
  margin-bottom: 34px;
}

.ds-section-head {
  margin-bottom: 20px;
}

.ds-monitor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ds-monitor-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ds-monitor-card:hover,
.ds-focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

.ds-monitor-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ds-monitor-icon i {
  color: var(--primary-dark);
  font-size: 24px;
}

.ds-monitor-card h3 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 10px;
}

.ds-monitor-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* support */
.ds-support-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  margin-bottom: 34px;
}

.ds-support-left,
.ds-services-card,
.ds-education-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.ds-list-grid,
.ds-service-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.ds-list-item,
.ds-service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.ds-list-item i,
.ds-service-item i,
.ds-service-mini i {
  color: var(--secondary);
  margin-top: 3px;
}

.ds-list-item span,
.ds-service-item span,
.ds-focus-card span,
.ds-service-mini span {
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.6;
}

/* education */
.ds-education-panel {
  margin-bottom: 34px;
}

.ds-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.ds-focus-card {
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ds-focus-card i {
  color: var(--secondary);
  margin-top: 3px;
}

/* clinic support */
.ds-clinic-support-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.ds-clinic-support-copy h2,
.ds-clinic-support-copy p,
.ds-clinic-support-copy .section-badge {
  color: #fff;
}

.ds-clinic-support-copy .section-badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.ds-clinic-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.ds-service-mini {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
}

.ds-service-mini span {
  color: #fff;
}

.ds-clinic-support-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* responsive */
@media (max-width: 1024px) {
  .ds-hero,
  .ds-story-panel,
  .ds-support-grid,
  .ds-clinic-support-panel {
    grid-template-columns: 1fr;
  }

  .ds-monitor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ds-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ds-clinic-services {
    grid-template-columns: 1fr;
  }

  .ds-hero-image-card {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .ds-hero-content,
  .ds-story-panel,
  .ds-support-left,
  .ds-services-card,
  .ds-education-panel,
  .ds-clinic-support-panel {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .ds-hero-image-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .ds-hero-image-card img {
    max-width: 240px;
  }

  .ds-know-grid,
  .ds-monitor-grid,
  .ds-focus-grid {
    grid-template-columns: 1fr;
  }

  .ds-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ds-hero-card {
    align-items: flex-start;
  }
}
.autism-page {
  padding: 10px 0 80px;
}

/* hero */
.autism-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 30px;
}

.autism-hero-content {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  padding: 46px;
}

.autism-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.08;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.autism-hero-text {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.autism-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.autism-hero-highlights {
  display: grid;
  gap: 14px;
}

.autism-hero-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 20px;
  padding: 16px;
}

.autism-hero-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.autism-hero-card-icon i {
  font-size: 21px;
  color: var(--primary-dark);
}

.autism-hero-card h3 {
  color: var(--primary-dark);
  font-size: 16px;
  margin-bottom: 5px;
}

.autism-hero-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.autism-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.autism-hero-image-card {
  position: relative;
  width: 100%;
  min-height: 600px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.autism-hero-image-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: 32px;
  right: -42px;
}

.autism-hero-image-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: 35px;
  left: -35px;
}

.autism-hero-image-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 370px;
  border-radius: 28px;
  object-fit: cover;
}

/* story */
.autism-story-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(245, 252, 252, 0.92)
  );
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.autism-story-copy h2,
.autism-section-head h2,
.autism-clinic-support-copy h2,
.autism-panel-card h2,
.autism-vaccine-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 12px 0 14px;
}

.autism-story-copy p,
.autism-section-head p,
.autism-clinic-support-copy p,
.autism-panel-card p,
.autism-vaccine-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.autism-story-points {
  display: grid;
  gap: 14px;
}

/* know */
.autism-know-panel {
  margin-bottom: 34px;
}

.autism-know-head {
  margin-bottom: 18px;
}

.autism-know-head h2 {
  color: var(--primary-dark);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.autism-know-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.autism-know-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.autism-know-card i {
  color: var(--secondary);
  margin-top: 3px;
}

.autism-know-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* signs */
.autism-signs-section {
  margin-bottom: 34px;
}

.autism-section-head {
  margin-bottom: 20px;
}

.autism-signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.autism-sign-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.autism-sign-card i {
  color: var(--secondary);
  margin-top: 3px;
}

.autism-sign-card span {
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.6;
}

/* dual panel */
.autism-dual-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 34px;
}

.autism-panel-card,
.autism-home-card,
.autism-vaccine-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.autism-action-list,
.autism-home-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.autism-action-item,
.autism-home-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.autism-action-item i,
.autism-home-item i,
.autism-service-mini i {
  color: var(--secondary);
  margin-top: 3px;
}

.autism-action-item span,
.autism-home-item span,
.autism-service-mini span {
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.6;
}

/* support grid */
.autism-support-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  margin-bottom: 34px;
}

.autism-monitor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.autism-monitor-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.autism-monitor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.1);
}

.autism-monitor-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.16),
    rgba(124, 58, 237, 0.16)
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.autism-monitor-icon i {
  color: var(--primary-dark);
  font-size: 24px;
}

.autism-monitor-card h3 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 10px;
}

.autism-monitor-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

/* vaccine panel */
.autism-vaccine-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
}

.autism-vaccine-icon-card {
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  border-radius: 24px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.autism-vaccine-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.autism-vaccine-icon i {
  font-size: 26px;
  color: #fff;
}

.autism-vaccine-icon-card h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.autism-vaccine-icon-card p {
  color: rgba(255, 255, 255, 0.88);
}

/* clinic support */
.autism-clinic-support-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #0b4f4a, #0f766e);
  border-radius: 30px;
  padding: 34px;
  margin-top: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.autism-clinic-support-copy h2,
.autism-clinic-support-copy p,
.autism-clinic-support-copy .section-badge {
  color: #fff;
}

.autism-clinic-support-copy .section-badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.autism-clinic-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.autism-service-mini {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
}

.autism-service-mini span {
  color: #fff;
}

.autism-clinic-support-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* responsive */
@media (max-width: 1024px) {
  .autism-hero,
  .autism-story-panel,
  .autism-dual-panel,
  .autism-support-grid,
  .autism-vaccine-panel,
  .autism-clinic-support-panel {
    grid-template-columns: 1fr;
  }

  .autism-clinic-services {
    grid-template-columns: 1fr;
  }

  .autism-hero-image-card {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .autism-hero-content,
  .autism-story-panel,
  .autism-panel-card,
  .autism-home-card,
  .autism-vaccine-panel,
  .autism-clinic-support-panel {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .autism-hero-image-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .autism-hero-image-card img {
    max-width: 240px;
  }

  .autism-know-grid,
  .autism-signs-grid,
  .autism-monitor-grid {
    grid-template-columns: 1fr;
  }

  .autism-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .autism-hero-card {
    align-items: flex-start;
  }
}

.inner-page,
.about-modern-page {
  width: 100%;
  display: block;
}

.about-modern-page {
  position: relative;
  padding: 42px 0 110px;
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 118, 110, 0.1), transparent 25%),
    radial-gradient(
      circle at 100% 20%,
      rgba(200, 169, 107, 0.1),
      transparent 20%
    ),
    linear-gradient(180deg, #f9fcfc 0%, #ffffff 38%, #f9fcfc 100%);
}

.about-modern-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 118, 110, 0.03) 0%,
    transparent 18%,
    transparent 82%,
    rgba(200, 169, 107, 0.04) 100%
  );
  pointer-events: none;
}

.about-shell {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(15, 118, 110, 0.1);
  margin-bottom: 18px;
}

.text-white {
  color: var(--white) !important;
}
.about-hero-wrap {
  width: 100%;
  margin: 0 auto 34px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 46px;
  align-items: center;
  min-height: 720px;
  padding: 60px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.1), transparent 68%);
  top: -160px;
  left: -120px;
  pointer-events: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 169, 107, 0.14),
    transparent 70%
  );
  bottom: -140px;
  right: -100px;
  pointer-events: none;
}

.about-hero-content,
.about-hero-image {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin: 0 0 24px;
  /* max-width: 12ch; */
}

.about-hero-text,
.about-core-card p,
.about-cta-content p {
  font-size: 1.06rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 16px;
}

.about-hero h3,
.about-core-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: #111827;
}

.about-hero ul,
.about-core-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.about-hero ul li,
.about-core-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.8;
}

.about-hero ul li::before,
.about-core-card ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.about-hero-quote {
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(15, 118, 110, 0.06),
    rgba(255, 255, 255, 0.95)
  );
  box-shadow: var(--shadow-soft);
  font-style: italic;
  font-size: 1.06rem;
  color: #0f172a;
  max-width: 720px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
  max-width: 760px;
}

.about-stat {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.about-stat h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0 0 6px;
}

.about-stat p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.about-image-card {
  position: relative;
  height: 100%;
  min-height: 600px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.16);
  background: #fff;
}

.about-image-card img,
.about-inline-media img,
.about-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  color: #111827;
  font-size: 0.94rem;
  font-weight: 700;
}

.floating-badge i {
  color: var(--primary);
}

.floating-badge.top-left {
  top: 22px;
  left: 22px;
}

.floating-badge.bottom-right {
  bottom: 22px;
  right: 22px;
}

.about-grid {
  display: grid;
  gap: 30px;
}

.about-split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 30px;
  align-items: stretch;
}

.about-core-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 32px;
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-core-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(15, 118, 110, 0.02),
    rgba(200, 169, 107, 0.04)
  );
  pointer-events: none;
}

.about-core-card > * {
  position: relative;
  z-index: 2;
}

.about-inline-media {
  border-radius: 32px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #fff;
}

.about-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.about-service-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  border: 1px solid rgba(15, 118, 110, 0.1);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.about-service-item span {
  display: block;
  color: #111827;
  font-weight: 600;
  line-height: 1.65;
}

.about-cta-panel {
  padding: 30px;
  background: linear-gradient(135deg, #0f766e 0%, #0b5e58 100%);
  box-shadow: 0 26px 80px rgba(15, 118, 110, 0.22);
  position: relative;
  overflow: hidden;
}

.about-cta-panel::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -120px;
  right: -90px;
  pointer-events: none;
}

.about-cta-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(200, 169, 107, 0.18);
  bottom: -90px;
  left: -80px;
  pointer-events: none;
}

.about-cta-content {
  position: relative;
  z-index: 2;
  padding: 42px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.about-cta-content .section-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #ecfeff;
  border-color: rgba(255, 255, 255, 0.2);
}

.about-cta-content p,
.about-cta-content strong {
  color: rgba(255, 255, 255, 0.95);
}

.about-cta-image {
  position: relative;
  z-index: 2;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.about-signature {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-reading-section {
  width: min(var(--reading-width), 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-reading-section .about-core-card {
  padding: 50px 46px;
}

.about-reading-section .about-core-card p,
.about-reading-section .about-core-card ul li {
  text-align: left;
}

@media (max-width: 1280px) {
  .about-shell {
    width: min(100% - 36px, 1180px);
  }

  .about-hero {
    padding: 44px;
    gap: 34px;
  }
}

@media (max-width: 1100px) {
  .about-hero,
  .about-split-section,
  .about-cta-panel {
    grid-template-columns: 1fr;
  }

  .about-image-card {
    min-height: 500px;
  }

  .about-hero h1 {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .about-modern-page {
    padding: 22px 0 80px;
  }

  .about-shell {
    width: calc(100% - 24px);
  }

  .about-hero,
  .about-core-card,
  .about-cta-content,
  .about-cta-panel {
    padding: 24px;
  }

  .about-service-list,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
    border-radius: 28px;
  }

  .about-core-card,
  .about-inline-media,
  .about-cta-panel,
  .about-cta-content,
  .about-cta-image {
    border-radius: 24px;
  }

  .about-hero h1 {
    font-size: 1.5rem;
  }

  .about-image-card {
    min-height: 380px;
    border-radius: 24px;
  }

  .floating-badge {
    position: static;
    margin-top: 14px;
    width: fit-content;
  }

  .floating-badge.top-left,
  .floating-badge.bottom-right {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .about-reading-section .about-core-card {
    padding: 28px 24px;
  }
}
.modern-home-banner {
  position: relative;
  height: 86vh;
  min-height: 620px;
  overflow: hidden;
}

.modern-home-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modern-home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 79, 74, 0.72) 0%,
    rgba(11, 79, 74, 0.52) 38%,
    rgba(11, 79, 74, 0.18) 100%
  );
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.banner-content-card {
  max-width: 720px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.banner-content-card h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 14px;
}

.banner-content-card .hero-credentials {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  margin-bottom: 16px;
}

.hero-verbiage {
  color: #dffaf5;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 620px;
}

.banner-content-card .subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
  max-width: 620px;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.25s ease;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.home-hero-overlap {
  margin-top: -85px;
  position: relative;
  z-index: 3;
}

.home-hero-overlap .hero-left.glass-card,
.home-hero-overlap .doctor-card {
  box-shadow: var(--shadow-lg);
}

.home-hero-overlap .hero-left h2 {
  font-size: 2rem;
  line-height: 1.25;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .modern-home-banner {
    height: auto;
    min-height: 560px;
  }

  .banner-overlay {
    align-items: flex-end;
    padding-bottom: 24px;
  }

  .banner-content-card {
    padding: 24px;
  }

  .home-hero-overlap {
    margin-top: 0;
    padding-top: 24px;
  }

  .hero-verbiage {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .modern-home-banner {
    min-height: 500px;
  }

  .banner-content-card {
    border-radius: 20px;
    padding: 20px;
  }

  .banner-content-card h1 {
    font-size: 2.2rem;
  }

  .banner-content-card .subtitle {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .modern-home-banner {
    min-height: 520px;
    height: auto;
  }

  .modern-home-banner::after {
    background: linear-gradient(
      180deg,
      rgba(11, 79, 74, 0.58) 0%,
      rgba(11, 79, 74, 0.5) 45%,
      rgba(11, 79, 74, 0.38) 100%
    );
  }

  .banner-overlay {
    align-items: flex-end;
    padding: 18px 0 20px;
  }

  .banner-content-card {
    max-width: 100%;
    width: 100%;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
  }

  .banner-content-card h1 {
    font-size: 2.15rem;
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .banner-content-card .hero-credentials {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .hero-verbiage {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .banner-content-card .subtitle {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-action-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-action-row .primary-btn,
  .hero-action-row .secondary-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 16px;
  }

  .home-hero-overlap {
    margin-top: 0;
    padding-top: 18px;
  }

  .home-hero-overlap .hero {
    gap: 18px;
  }

  .home-hero-overlap .hero-left.glass-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .home-hero-overlap .hero-left h2 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .home-hero-overlap .subtitle {
    font-size: 15px;
    line-height: 1.8;
  }

  .appointment-box {
    grid-template-columns: 1fr;
  }

  .appointment-box .search-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
  }
}
@media (max-width: 767px) {
  .modern-home-banner img {
    object-position: 68% center;
  }
}
.about-modern-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(20, 184, 166, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(124, 58, 237, 0.05),
      transparent 20%
    ),
    linear-gradient(180deg, #f8fcfc 0%, var(--soft-bg) 100%);
  padding: 42px 0 90px;
}

/* hero */
.about-hero-wrap {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.94)
  );
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.about-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.about-hero-content {
  padding: 56px 52px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--primary);
  border: 1px solid rgba(15, 118, 110, 0.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.about-hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  line-height: 1.02;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.about-hero-text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.about-hero-image {
  background: linear-gradient(
    180deg,
    rgba(15, 118, 110, 0.1),
    rgba(20, 184, 166, 0.04)
  );
  padding: 22px;
  display: flex;
  align-items: center;
}

.about-image-card {
  width: 100%;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #dff5f1;
  box-shadow: var(--shadow);
}

.about-image-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.floating-badge.top-left {
  top: 18px;
  left: 18px;
}

.floating-badge.bottom-right {
  right: 18px;
  bottom: 18px;
}

.hero-stat-card {
  position: absolute;
  left: 10px;
  bottom: 50px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.hero-stat-card h3 {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 30px;
  font-weight: 800;
}

.hero-stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* body grid */
.about-body-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.about-left-rail {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rail-card,
.content-card,
.cta-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.94)
  );
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.rail-card {
  padding: 22px;
}

.rail-kicker {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.rail-name {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.rail-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.mini-info {
  display: grid;
  gap: 12px;
}

.mini-info-item {
  background: linear-gradient(180deg, #ffffff, #f8fdfc);
  border: 1px solid rgba(15, 118, 110, 0.1);
  border-radius: 18px;
  padding: 14px 16px;
}

.mini-info-item strong {
  display: block;
  color: var(--primary-dark);
  font-size: 15px;
  margin-bottom: 4px;
}

.mini-info-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* right content */
.about-right-content {
  display: grid;
  gap: 22px;
}

.content-card {
  overflow: hidden;
}

.content-card-header {
  padding: 22px 26px;
  background: linear-gradient(
    90deg,
    rgba(15, 118, 110, 0.08),
    rgba(20, 184, 166, 0.03)
  );
  border-bottom: 1px solid rgba(15, 118, 110, 0.08);
}

.content-card-header h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 28px;
  font-weight: 800;
}

.content-card-body {
  padding: 26px;
}

.content-card-body p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.95;
  margin-bottom: 18px;
}

.content-card-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.content-card-body ul li {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 8px;
}

.quote-box {
  margin-top: 18px;
  padding: 22px 24px;
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.08),
    rgba(124, 58, 237, 0.04)
  );
  color: var(--primary-dark);
  font-size: 21px;
  line-height: 1.8;
  font-style: italic;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.feature-item {
  background: linear-gradient(180deg, #ffffff, #f8fdfc);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}

.feature-item span {
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 600;
}

/* split cards */
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.side-media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.side-media-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.premium-list {
  margin: 0;
  padding-left: 22px;
}

.premium-list li {
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.85;
}

/* message */
.message-card {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  border: none;
  box-shadow: var(--shadow-lg);
}

.message-card .content-card-header {
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.message-card .content-card-header h2,
.message-card .content-card-body p,
.message-card .content-card-body li {
  color: var(--white);
}

.message-signoff {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* cta */
.cta-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  margin-top: 6px;
}

.cta-content {
  padding: 34px;
}

.cta-content h2 {
  color: var(--primary-dark);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.18);
  transition: 0.25s ease;
}

.primary-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* responsive */
@media (max-width: 1199px) {
  .about-body-grid,
  .about-hero,
  .split-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .about-left-rail {
    position: static;
  }
}

@media (max-width: 991px) {
  .about-hero-content {
    padding: 34px 24px 22px;
  }

  .about-hero-image {
    padding: 0 24px 24px;
  }

  .about-image-card img {
    height: 430px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-modern-page {
    padding: 20px 0 70px;
  }

  .about-hero-wrap,
  .rail-card,
  .content-card,
  .cta-card {
    border-radius: 20px;
  }

  .content-card-header,
  .content-card-body,
  .cta-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-hero-content h1 {
    font-size: 34px;
  }

  .about-image-card img {
    height: 320px;
  }

  .hero-stat-card {
    position: static;
    max-width: 100%;
    margin: 14px;
  }

  .floating-badge {
    font-size: 12px;
    padding: 8px 12px;
  }
}
@media (max-width: 991px) {
  #navMenu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
  }

  #navMenu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.our-philosophy-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
}

.our-philosophy-section .container {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.about-core-card,
.about-stats-card {
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.about-core-card {
  padding: 42px 38px;
  position: relative;
  overflow: hidden;
}

.about-core-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: #0f766e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-core-card h2 {
  font-size: 38px;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 28px;
  max-width: 90%;
}

.about-service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

.about-service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  background: #f8fbfb;
  border: 1px solid rgba(15, 118, 110, 0.08);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.about-service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.16);
}

.about-service-item i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(20, 184, 166, 0.2);
}

.about-service-item span {
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  font-weight: 500;
}

.about-service-item strong {
  color: #0f172a;
  font-weight: 700;
}

.about-core-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin: 26px 0 0;
}

.about-core-card p strong {
  color: #0f172a;
}

.about-stats-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 30px;
  background: linear-gradient(180deg, #0f766e 0%, #0b4f4a 100%);
}

.about-stat-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 28px 24px;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.about-stat-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.about-stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.about-stat-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Tablet */
@media (max-width: 991px) {
  .our-philosophy-section {
    padding: 70px 0;
  }

  .our-philosophy-section .container {
    grid-template-columns: 1fr;
  }

  .about-core-card h2 {
    font-size: 30px;
    max-width: 100%;
  }

  .about-service-list {
    grid-template-columns: 1fr;
  }

  .about-stats-card {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .about-stat-box {
    flex: 1 1 calc(33.333% - 12px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .our-philosophy-section {
    padding: 55px 0;
  }

  .about-core-card,
  .about-stats-card {
    border-radius: 22px;
  }

  .about-core-card {
    padding: 28px 22px;
  }

  .about-core-card h2 {
    font-size: 24px;
    line-height: 1.45;
    margin-bottom: 22px;
  }

  .section-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .about-service-item {
    padding: 16px;
    border-radius: 16px;
  }

  .about-service-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 16px;
  }

  .about-service-item span,
  .about-core-card p {
    font-size: 15px;
  }

  .about-stats-card {
    padding: 20px;
    gap: 14px;
    flex-direction: column;
  }

  .about-stat-box {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .about-stat-box h3 {
    font-size: 22px;
  }

  .about-stat-box p {
    font-size: 14px;
  }
}

/* =========================
   Modern Parent Education Page
========================= */

.modern-milestone-page {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 128, 112, 0.09), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(255, 188, 104, 0.12), transparent 26%),
    linear-gradient(180deg, #f7fbfa 0%, #eef8f5 45%, #ffffff 100%);
  color: #123d37;
  overflow: hidden;
}

/* =========================
   Hero
========================= */

.milestone-modern-hero {
  padding: 90px 0 60px;
}

.hero-align {
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.modern-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e5f6f2;
  color: #0c7668;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.modern-badge.danger {
  background: #fff0ef;
  color: #d8463a;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -2.5px;
  color: #0b3f38;
  font-weight: 900;
}

.hero-copy p {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.75;
  color: #5b716d;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.modern-primary-btn,
.modern-secondary-btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.modern-primary-btn {
  background: #075f56;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(7, 95, 86, 0.22);
}

.modern-secondary-btn {
  background: #ffffff;
  color: #075f56;
  border: 1px solid rgba(7, 95, 86, 0.16);
}

.modern-primary-btn:hover,
.modern-secondary-btn:hover {
  transform: translateY(-2px);
}

.hero-stats {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stats div {
  min-width: 120px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(7, 95, 86, 0.08);
  box-shadow: 0 12px 30px rgba(8, 64, 57, 0.06);
}

.hero-stats strong {
  display: block;
  margin-bottom: 5px;
  color: #075f56;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.hero-stats span {
  display: block;
  color: #6b7d79;
  font-size: 12px;
  font-weight: 700;
}

.hero-image-wrap {
  position: relative;
  height: 540px;
  margin-left: 30px;
  border-radius: 42px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(10, 77, 68, 0.18);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  color: #0b3f38;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(8, 64, 57, 0.15);
}

.hero-floating-card i {
  color: #075f56;
}

.hero-floating-card.top {
  top: 38px;
  left: 34px;
}

.hero-floating-card.bottom {
  right: 34px;
  bottom: 38px;
}

/* =========================
   Quick Guide
========================= */

.quick-guide-section {
  padding: 0 0 70px;
}

.quick-guide-card {
  height: 100%;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 95, 86, 0.08);
  box-shadow: 0 18px 45px rgba(8, 64, 57, 0.07);
  transition: all 0.25s ease;
}

.quick-guide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(8, 64, 57, 0.11);
}

.quick-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 23px;
}

.quick-icon.green {
  background: #e4f7ef;
  color: #099765;
}

.quick-icon.blue {
  background: #eaf3ff;
  color: #2679db;
}

.quick-icon.orange {
  background: #fff3e2;
  color: #d87b18;
}

.quick-guide-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #0b3f38;
  font-weight: 900;
}

.quick-guide-card p {
  margin: 0;
  color: #647773;
  font-size: 15px;
  line-height: 1.65;
}

/* =========================
   Content
========================= */

.modern-content-section {
  padding: 20px 0 90px;
}

.modern-content-card,
.modern-split-card,
.emergency-modern-card {
  margin-bottom: 42px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(7, 95, 86, 0.08);
  box-shadow: 0 22px 65px rgba(8, 64, 57, 0.08);
}

.modern-content-card {
  padding: 34px;
}

.section-title-row {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-title-row h2,
.section-title-center h2,
.split-left h2,
.tips-card h2,
.emergency-content h2 {
  margin: 14px 0 0;
  color: #0b3f38;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 900;
}

.section-title-row p {
  max-width: 410px;
  margin: 0;
  color: #647773;
  font-size: 15px;
  line-height: 1.7;
}

.section-title-center {
  max-width: 660px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title-center p {
  margin: 14px auto 0;
  color: #647773;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   Tables
========================= */

.modern-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid #dce9e6;
}

.modern-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
}

.two-col-table {
  min-width: 620px;
}

.modern-table th {
  padding: 17px 18px;
  background: #075f56;
  color: #ffffff;
  text-align: left;
  font-size: 13px;
  font-weight: 900;
}

.modern-table td {
  padding: 18px;
  border-bottom: 1px solid #e5efed;
  color: #536965;
  font-size: 14px;
  line-height: 1.55;
}

.modern-table td strong {
  color: #0b3f38;
}

.modern-table tbody tr:nth-child(even) {
  background: #f8fcfb;
}

.modern-table tbody tr:hover {
  background: #eef9f6;
}

/* =========================
   Gallery
========================= */

.modern-gallery-block {
  padding: 70px 0 78px;
}

.modern-image-card {
  position: relative;
  height: 390px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 22px 55px rgba(8, 64, 57, 0.12);
}

.modern-image-card.tall {
  height: 460px;
}

.modern-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.modern-image-card:hover img {
  transform: scale(1.07);
}

.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.image-caption h3 {
  margin: 0 0 5px;
  color: #0b3f38;
  font-size: 20px;
  font-weight: 900;
}

.image-caption p {
  margin: 0;
  color: #647773;
  font-size: 14px;
}

/* =========================
   TDSC Split
========================= */

.modern-split-card {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.split-left {
  padding: 48px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.24), transparent 35%),
    linear-gradient(135deg, #075f56, #0b7b6d);
  color: #ffffff;
}

.split-left .modern-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.split-left h2 {
  color: #ffffff;
}

.split-left p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.split-right {
  padding: 42px;
  display: flex;
  align-items: center;
}

.screening-list {
  width: 100%;
}

.screening-list div {
  padding: 22px 0;
  display: flex;
  gap: 18px;
  border-bottom: 1px solid #e4eeeb;
}

.screening-list div:last-child {
  border-bottom: 0;
}

.screening-list span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #e5f6f2;
  color: #075f56;
  font-size: 15px;
  font-weight: 900;
}

.screening-list p {
  margin: 0;
  color: #536965;
  font-size: 16px;
  line-height: 1.65;
}

/* =========================
   Red Flags
========================= */

.red-flags-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 70, 58, 0.08), transparent 28%),
    #ffffff;
}

.red-flag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.red-flag-item {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid transparent;
}

.red-flag-item span {
  display: inline-flex;
  margin-bottom: 13px;
  font-size: 13px;
  font-weight: 900;
}

.red-flag-item h3 {
  margin: 0 0 10px;
  color: #0b3f38;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.red-flag-item p {
  margin: 0;
  color: #637773;
  font-size: 14px;
  line-height: 1.55;
}

.red-flag-item.watch {
  background: #eefaf4;
  border-color: #cfeede;
}

.red-flag-item.watch span {
  color: #13834e;
}

.red-flag-item.refer {
  background: #fff8df;
  border-color: #f2e5ac;
}

.red-flag-item.refer span {
  color: #9a6a00;
}

.red-flag-item.urgent {
  background: #fff0ef;
  border-color: #f5cbc8;
}

.red-flag-item.urgent span {
  color: #d8463a;
}

/* =========================
   Tips
========================= */

.tips-row {
  margin-bottom: 42px;
}

.tips-card {
  height: 100%;
  padding: 34px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(7, 95, 86, 0.08);
  box-shadow: 0 22px 65px rgba(8, 64, 57, 0.08);
}

.tips-card.green-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(7, 95, 86, 0.1), transparent 30%),
    #ffffff;
}

.tips-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #e5f6f2;
  color: #075f56;
  font-size: 23px;
}

.tips-card ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.tips-card li {
  margin-bottom: 12px;
  color: #536965;
  font-size: 15px;
  line-height: 1.65;
}

.tips-card li:last-child {
  margin-bottom: 0;
}

/* =========================
   Emergency
========================= */

.emergency-modern-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  overflow: hidden;
}

.emergency-content {
  padding: 48px;
}

.emergency-content p {
  margin: 18px 0 30px;
  color: #536965;
  font-size: 16px;
  line-height: 1.75;
}

.emergency-images {
  position: relative;
  min-height: 420px;
  background: #e5f6f2;
}

.emergency-images img {
  position: absolute;
  width: 62%;
  height: 240px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(8, 64, 57, 0.18);
}

.emergency-images img:first-child {
  top: 46px;
  left: 34px;
}

.emergency-images img:last-child {
  right: 34px;
  bottom: 46px;
}

/* =========================
   Responsive
========================= */

@media (max-width: 991px) {
  .milestone-modern-hero {
    padding: 60px 0 40px;
  }

  .hero-image-wrap {
    height: 420px;
    margin: 42px 0 0;
  }

  .section-title-row {
    display: block;
  }

  .section-title-row p {
    margin-top: 16px;
  }

  .modern-split-card,
  .emergency-modern-card {
    grid-template-columns: 1fr;
  }

  .red-flag-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .emergency-images {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .milestone-modern-hero {
    padding: 44px 0 34px;
  }

  .hero-copy h1 {
    font-size: 44px;
    letter-spacing: -1.5px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    flex: 1;
    min-width: 0;
  }

  .hero-image-wrap {
    height: 340px;
    border-radius: 28px;
  }

  .hero-floating-card {
    display: none;
  }

  .quick-guide-card {
    margin-bottom: 18px;
  }

  .modern-content-card,
  .tips-card {
    padding: 24px;
    border-radius: 26px;
  }

  .modern-content-card,
  .modern-split-card,
  .emergency-modern-card {
    margin-bottom: 26px;
  }

  .modern-gallery-block {
    padding: 42px 0 46px;
  }

  .modern-image-card,
  .modern-image-card.tall {
    height: 320px;
  }

  .split-left,
  .split-right,
  .emergency-content {
    padding: 30px;
  }

  .red-flag-grid {
    grid-template-columns: 1fr;
  }

  .emergency-images {
    min-height: 300px;
  }

  .emergency-images img {
    width: 70%;
    height: 180px;
    border-radius: 22px;
  }

  .emergency-images img:first-child {
    top: 30px;
    left: 20px;
  }

  .emergency-images img:last-child {
    right: 20px;
    bottom: 30px;
  }
}
.development-card {
  position: relative;
  height: 100%;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(7, 95, 86, 0.08);
  box-shadow: 0 22px 55px rgba(8, 64, 57, 0.08);
  transition: all 0.28s ease;
}

.development-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(7, 95, 86, 0.06);
}

.development-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 70px rgba(8, 64, 57, 0.12);
}

.development-card.featured {
  background:
    radial-gradient(circle at top right, rgba(7, 95, 86, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f0faf7 100%);
}

.development-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.development-icon.green {
  background: #e4f7ef;
  color: #099765;
}

.development-icon.blue {
  background: #eaf3ff;
  color: #2679db;
}

.development-icon.orange {
  background: #fff3e2;
  color: #d87b18;
}

.development-age {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0c7668;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.development-card h3 {
  margin: 0 0 12px;
  color: #0b3f38;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.development-card p {
  margin: 0;
  color: #647773;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .development-card {
    min-height: auto;
    margin-bottom: 18px;
    padding: 28px;
    border-radius: 26px;
  }
}
.testimonial-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 42px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 33.333333%;
  padding: 0 12px;
}

.testimonial-card {
  height: 100%;
}

.testimonial-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(7, 95, 86, 0.25);
  transition: all 0.25s ease;
}

.testimonial-dot.active {
  width: 26px;
  border-radius: 999px;
  background: #075f56;
}

@media (max-width: 991px) {
  .testimonial-slide {
    flex-basis: 50%;
  }
}

@media (max-width: 767px) {
  .testimonial-slide {
    flex-basis: 100%;
  }
}

/* =========================
   Section
========================= */

.gallery-section {
  min-height: 100vh;
  padding: 70px 0;
  background:
    radial-gradient(circle at 8% 25%, rgba(204, 242, 228, 0.9), transparent 26%),
    radial-gradient(circle at 80% 40%, rgba(219, 244, 235, 0.8), transparent 28%),
    linear-gradient(180deg, #f5fbf8 0%, #e8f6f1 100%);
}

.section-header {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 6px;
  color: #37ad9c;
  font-weight: 700;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.15;
  color: #0d3d35;
  font-weight: 900;
}

.section-description {
  margin: 18px auto 0;
  max-width: 650px;
  font-size: 15px;
  line-height: 1.7;
  color: #667b77;
}

/* =========================
   Tabs
========================= */

.tabs-wrapper {
  width: fit-content;
  margin: 0 auto 44px;
  padding: 6px;
  display: flex;
  gap: 6px;
  background: #ffffff;
  border: 1px solid rgba(13, 61, 53, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(9, 60, 52, 0.08);
}

.gallery-tab {
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 13px 24px;
  border-radius: 999px;
  background: transparent;
  color: #2c3d3a;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s ease;
}

.gallery-tab.active {
  background: #0d5c50;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(13, 92, 80, 0.25);
}

.gallery-tab:hover {
  transform: translateY(-1px);
}

/* =========================
   Tab Content
========================= */

.tab-content {
  display: none;
  animation: fadeUp 0.35s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Certificate Cards
========================= */

.certificate-card {
  position: relative;
  height: 100%;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 71, 62, 0.08);
  box-shadow: 0 14px 35px rgba(12, 73, 62, 0.08);
  transition: all 0.28s ease;
}

.certificate-card.has-certificate-preview {
  padding-bottom: 82px;
  cursor: pointer;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(12, 73, 62, 0.13);
}

.card-shape {
  position: absolute;
  top: -48px;
  right: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.5;
}

.certificate-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
}

.certificate-year {
  margin-bottom: 10px;
  color: #27a994;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  gap: 7px;
  align-items: center;
}

.certificate-card h3 {
  margin: 0 0 10px;
  max-width: 92%;
  font-size: 18px;
  line-height: 1.35;
  color: #103f38;
  font-weight: 900;
}

.certificate-source {
  margin: 0;
  font-size: 14px;
  color: #657974;
  line-height: 1.5;
}

.card-divider {
  height: 1px;
  margin: 18px 0;
  background: repeating-linear-gradient(
    to right,
    rgba(15, 71, 62, 0.16) 0,
    rgba(15, 71, 62, 0.16) 4px,
    transparent 4px,
    transparent 7px
  );
}

.certificate-note {
  margin: 0;
  color: #4f6661;
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
}

/* Card Colors */

.card-green .certificate-icon {
  color: #0d5c50;
  background: #e3f3ef;
}

.card-green .card-shape {
  background: #dceee9;
}

.card-orange .certificate-icon {
  color: #d97706;
  background: #fff0df;
}

.card-orange .card-shape {
  background: #fff0df;
}

.card-blue .certificate-icon {
  color: #2576d2;
  background: #e7f1ff;
}

.card-blue .card-shape {
  background: #e7f1ff;
}

.card-light-green .certificate-icon {
  color: #4e9c3f;
  background: #eaf7e6;
}

.card-light-green .card-shape {
  background: #eaf7e6;
}

.card-red .certificate-icon {
  color: #dc3f35;
  background: #ffe8e6;
}

.card-red .card-shape {
  background: #ffe8e6;
}

/* View Certificate Chip */

.certificate-view-chip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(13, 92, 80, 0.1);
  color: #0d5c50;
  font-size: 13px;
  font-weight: 900;
  transition: all 0.25s ease;
}

.has-certificate-preview:hover .certificate-view-chip {
  background: #0d5c50;
  color: #ffffff;
}

/* =========================
   Full Screen Overlay
========================= */

.certificate-preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  padding: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 20, 18, 0.9);
  backdrop-filter: blur(10px);
}

.certificate-preview-overlay.active {
  display: flex;
}

.certificate-preview-inner {
  width: min(94vw, 1050px);
  height: min(88vh, 780px);
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.certificate-preview-inner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 16px;
  background: #f5f7f7;
}

.certificate-preview-close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 1000000;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #ffffff;
  color: #0d3d35;
  font-size: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* =========================
   Gallery Cards
========================= */

.photo-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(12, 73, 62, 0.12);
  background: #ffffff;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo-card:hover img {
  transform: scale(1.08);
}

.photo-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.68) 100%
  );
}

.photo-overlay h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 900;
}

.photo-overlay p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

/* =========================
   Responsive
========================= */

@media (max-width: 767px) {
  .gallery-section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-description {
    font-size: 14px;
  }

  .tabs-wrapper {
    width: 100%;
    max-width: 350px;
  }

  .gallery-tab {
    flex: 1;
    justify-content: center;
    padding: 12px 14px;
    font-size: 13px;
  }

  .certificate-card {
    min-height: auto;
  }

  .certificate-card.has-certificate-preview {
    padding-bottom: 78px;
  }

  .certificate-preview-overlay {
    padding: 18px;
  }

  .certificate-preview-inner {
    width: 96vw;
    height: 82vh;
    padding: 10px;
    border-radius: 18px;
  }

  .certificate-preview-inner img {
    border-radius: 12px;
  }

  .certificate-preview-close {
    top: 14px;
    right: 14px;
  }
}
