:root {
  --primary: #0b6efd;
  --secondary: #16a34a;
  --white: #ffffff;
  --light: #f8fafc;
  --text: #1f2937;
  --muted: #6b7280;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 110, 253, 0.08), transparent 28%),
    linear-gradient(135deg, #fcfdff 0%, var(--white) 100%);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

section {
  scroll-margin-top: 90px;
}

.container {
  max-width: 1200px;
}

.navbar {
  padding: 0.65rem 0;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.brand-logo,
.hero-brand img,
.footer-brand img {
  width: 38px;
  height: 38px;
}

.navbar-toggler {
  color: var(--text);
}

.navbar-toggler-icon {
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
}

.nav-link {
  color: rgba(31, 41, 55, 0.85);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary);
}

.navbar-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.navbar-collapse {
  justify-content: flex-end;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: center top, center, center bottom;
}

.brand-logo,
.hero-brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  padding: 0.35rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.brand-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.2;
}

.hero-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-brand span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
}

.footer-brand img {
  background: rgba(255,255,255,0.08);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(11, 110, 253, 0.25);
}

.nav-link {
  color: rgba(31, 41, 55, 0.85);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--primary);
}

.timeline-item,
.service-card,
.treatment-card,
.use-case-card {
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.timeline-item:hover,
.service-card:hover,
.treatment-card:hover,
.use-case-card:hover {
  transform: translateY(-3px);
}

.timeline-item.selected,
.service-card.selected,
.treatment-card.selected,
.use-case-card.selected {
  background: rgba(11, 110, 253, 0.08);
  border-color: rgba(11, 110, 253, 0.18);
  box-shadow: 0 18px 46px rgba(11, 110, 253, 0.08);
}

.faq-question span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(22, 163, 74, 0.12);
  color: var(--secondary);
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.testimonial-slider:hover .slider-btn {
  opacity: 0.9;
}

  .journey-testimonial-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .journey-testimonial-card {
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    border-radius: 24px;
    padding: 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow);
  }

  .journey-testimonial-card .testimonial-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
  }

  .journey-testimonial-card .testimonial-meta img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .journey-testimonial-card .testimonial-meta h4 {
    margin: 0;
    font-size: 1.05rem;
  }

  .journey-testimonial-card .testimonial-meta span {
    color: var(--muted);
    font-size: 0.95rem;
  }

  .journey-testimonial-card p {
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.4rem;
  }

  .journey-testimonial-card .testimonial-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .journey-testimonial-card .testimonial-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .journey-testimonial-card .testimonial-links a:hover {
    transform: translateY(-1px);
    background: rgba(59, 130, 246, 0.16);
  }

  .journey-testimonial-card .video-preview {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #0f172a;
    min-height: 240px;
    margin-bottom: 1.25rem;
  }

  .journey-testimonial-card .video-preview img {
    width: 100%;
    height: auto;
    display: block;
  }

  .journey-testimonial-card .video-preview .play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.9);
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 18px 40px rgba(59, 130, 246, 0.25);
  }

  @media (max-width: 992px) {
    .journey-testimonial-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-testimonial-card {
      padding: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .journey-testimonial-list {
      grid-template-columns: 1fr;
    }

    .journey-testimonial-card .testimonial-meta {
      grid-template-columns: 1fr;
      text-align: left;
    }

    .journey-testimonial-card .testimonial-meta img {
      margin: 0 auto 1rem;
    }

    .journey-testimonial-card .testimonial-links {
      flex-direction: column;
      gap: 0.75rem;
    }

    .journey-testimonial-card .video-preview {
      min-height: 200px;
    }

    .journey-testimonial-card .video-preview .play-icon {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
    }
  }

  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.35;
}

.hero-section::before {
  width: 280px;
  height: 280px;
  background: rgba(11, 110, 253, 0.22);
  top: -60px;
  right: -40px;
}

.hero-section::after {
  width: 220px;
  height: 220px;
  background: rgba(22, 163, 74, 0.2);
  bottom: -70px;
  left: -30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.hero-text {
  max-width: 720px;
}

@media (min-width: 1200px) {
  .hero-pill-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-hero {
  padding: 7rem 0 4rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.about-hero-img-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  min-height: 360px;
  background: linear-gradient(180deg, #eef5ff, #ffffff);
}

.about-hero-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  mix-blend-mode: normal;
  opacity: 0.98;

}

.about-hero-badge {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(11, 110, 253, 0.14);
  border-radius: 22px;
  padding: 1rem 1.25rem;
  max-width: 260px;
}

.hero-feature {
  padding: 1.3rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.about-stats .stat-card {
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,250,255,0.96));
}

.about-stats .stat-card h3 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.feature-grid .support-card {
  padding: 1.8rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-content {
  max-width: 760px;
  padding: 0 1.5rem;
}

.hero-section .hero-content {
  position: relative;
}

.hero-pill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(11, 110, 253, 0.1);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.hero-pill i {
  color: var(--primary);
}

.eyebrow {
  display: inline-block;
  font-size: 0.87rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content h1,
.section-heading h2,
.contact-info h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(11, 110, 253, 0.16);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2563eb);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0859d8, #1d4ed8);
  color: var(--white);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 110, 253, 0.18);
  color: var(--primary);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-highlights i {
  color: var(--secondary);
  margin-right: 0.35rem;
}

.hero-visual img {
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
  border: 8px solid rgba(255,255,255,0.7);
}

.journey-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.section-alt {
  background: var(--light);
}

.journey-hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #eff5ff);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow: var(--shadow-strong);
}

.journey-hero-card::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  top: -24px;
  right: -24px;
  z-index: 0;
}

.journey-hero-card .hero-card-top {
  position: relative;
  z-index: 1;
}

.journey-hero-card h2 {
  font-size: clamp(1.5rem, 2.7vw, 2rem);
  margin: 1rem 0 1.5rem;
  line-height: 1.3;
}

.journey-highlights {
  display: grid;
  gap: 1rem;
}

.journey-highlights div {
  border-radius: 18px;
  padding: 1rem 1.2rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.12);
}

.journey-highlights strong {
  display: block;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.journey-highlights span {
  color: var(--muted);
  font-size: 0.98rem;
}

.journey-timeline {
  gap: 1.5rem;
}

.timeline-item {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 24px;
  padding: 1.5rem;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.75;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.18);
}

@media (max-width: 992px) {
  .journey-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--light);
}

.best-use-case {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.use-case-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,250,255,0.98));
  border: 1px solid rgba(11, 110, 253, 0.12);
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.use-case-card h4 {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.use-case-card p {
  color: var(--muted);
  margin-top: 0.8rem;
}

.use-case-card .use-case-note {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary);
  font-weight: 700;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.4rem;
}

.info-card,
.card-box,
.treatment-card,
.service-card,
.contact-form-card,
.testimonial-card,
.stat-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card,
.card-box,
.treatment-card,
.service-card {
  padding: 1.6rem;
  height: 100%;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link .icon-box {
  margin-bottom: 1rem;
}

.card-link h3 {
  margin: 0;
  font-size: 1.2rem;
}

.card-link:hover {
  text-decoration: none;
}

.info-card:hover,
.card-box:hover,
.treatment-card:hover,
.service-card:hover,
.contact-form-card:hover,
.testimonial-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(11, 110, 253, 0.12), rgba(22, 163, 74, 0.12));
  color: var(--primary);
  margin-bottom: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.text-link {
  color: var(--primary);
  font-weight: 600;
}

.doctor-list {
  list-style: disc;
  margin: 1rem 0 0 1rem;
  color: var(--text);
  line-height: 1.6;
}

.doctor-list li {
  margin-bottom: 0.6rem;
}

.department-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border-radius: 28px;
  padding: 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.department-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.department-header h3 {
  margin-bottom: 0.35rem;
}

.department-header p {
  margin: 0;
  color: var(--muted);
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.doctor-box {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
}

.doctor-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.doctor-box h5 {
  margin: 1rem 0 0.4rem;
  font-size: 1rem;
}

.doctor-box small {
  display: block;
  margin-bottom: 1rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .doctor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .department-card {
    padding: 1.5rem;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
  }
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 18px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #4f8cff);
  color: var(--white);
}

.stats-section {
  background: linear-gradient(135deg, rgba(11, 110, 253, 0.96), rgba(22, 163, 74, 0.96));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 35%);
  pointer-events: none;
}

.stats-section .stat-card {
  color: var(--white);
}

.stat-card {
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  color: inherit;
  padding: 1.4rem 1rem;
  backdrop-filter: blur(10px);
}

.about-stats .stat-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text);
}

.about-stats .stat-card h3,
.about-stats .stat-card p {
  color: var(--text);
}

.counter {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.testimonial-card {
  display: none;
  padding: 2rem;
}

.testimonial-card.active {
  display: block;
}

.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.testimonial-card span {
  color: var(--muted);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item.active {
  border-color: rgba(11, 110, 253, 0.24);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 1.25rem 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.contact-list li {
  margin-bottom: 0.8rem;
  color: var(--muted);
}

.contact-list i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.map-placeholder iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 16px;
}

.contact-form-card {
  padding: 1.5rem;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-control {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.8rem 1rem;
}

.footer {
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
  color: #e2e8f0;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li,
.footer a,
.footer-bottom a {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  display: block;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding: 1rem 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.floating-btn {
  position: fixed;
  right: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  border: none;
}

.whatsapp {
  bottom: 5.5rem;
  background: #25d366;
}

.back-to-top {
  bottom: 1.25rem;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-grid,
  .about-hero-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-badge {
    position: static;
    transform: none;
    max-width: 100%;
    margin: 1.5rem 0 0;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-highlights {
    flex-direction: column;
    gap: 0.5rem;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 15px;
  }

  .navbar {
    padding: 0.7rem 0;
  }

  .navbar-nav {
    padding: 0.8rem 0 0.2rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 4.2rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .info-card,
  .card-box,
  .treatment-card,
  .service-card,
  .contact-form-card,
  .testimonial-card,
  .stat-card {
    padding: 1.2rem;
  }

  .timeline-item {
    padding: 0.9rem;
  }

  .footer-bottom .container {
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.25rem;
  }

  .floating-btn {
    right: 0.9rem;
    width: 48px;
    height: 48px;
  }

  .whatsapp {
    bottom: 5rem;
  }
}
