﻿:root {
  --primary: #0a8c84;
  --primary-dark: #066f69;
  --accent: #16a39a;
  --ink: #173336;
  --muted: #5f6b7f;
  --surface: #ecf9f7;
  --white: #ffffff;
  --success: #25d366;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(6, 111, 105, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: #fffdfd;
  line-height: 1.7;
  overflow-y: visible;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

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

.section-padding {
  padding: 88px 0;
  position: relative;
  z-index: 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  color: var(--primary);
}

.section-kicker::before,
.section-kicker::after {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #141d2e;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 3.7vw, 3.55rem);
}

h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.hero-slide-heading {
  font-size: clamp(2.1rem, 3.7vw, 3.55rem);
  margin-bottom: 0.5rem;
}

p {
  color: var(--muted);
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.74rem 1.38rem;
  border: 0;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  box-shadow: 0 10px 24px rgba(6, 111, 105, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(6, 111, 105, 0.3);
  background: linear-gradient(90deg, #045b56, #0a8c84);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

.topbar {
  background: linear-gradient(90deg, #066f69, #0a8c84);
  color: #fff;
  font-size: 0.88rem;
}

.topbar a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 24px rgba(12, 31, 67, 0.08);
}

.navbar-brand img {
  width: 200px;
}

.navbar {
  --bs-navbar-padding-y: 0.9rem;
}

.nav-link {
  font-weight: 600;
  color: #1f2b3b;
  margin: 0 0.18rem;
}

.nav-link.active,
.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}

.navbar .dropdown-menu {
  width: 300px;
  max-width: min(300px, calc(100vw - 2rem));
  border-radius: 12px;
  border: 1px solid #d9e6f7;
  box-shadow: 0 12px 26px rgba(9, 42, 96, 0.12);
  padding: 0.4rem 0;
}

.navbar .dropdown-item {
  font-weight: 500;
  color: #22385e;
  white-space: normal;
  line-height: 1.45;
  padding: 0.5rem 1rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: #f2fbfa;
  color: var(--primary-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-phone {
  align-items: center;
  gap: 0.45rem;
  color: var(--primary-dark);
  font-weight: 600;
  border: 1px solid #cde8e5;
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  background: #f3fbfa;
}

.header-phone:hover {
  color: var(--primary);
  background: #fff;
}

.hero {
  position: relative;
  padding: 92px 0 66px;
  background: radial-gradient(circle at 4% 5%, #edf9f7 0, #edf9f7 24%, rgba(255, 238, 253, 0.5) 40%, #ffffff 85%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(6, 111, 105, 0.1);
  right: -120px;
  top: -120px;
}

.hero-list {
  list-style: none;
  margin: 1.25rem 0 1.6rem;
  padding: 0;
}

.hero-list li {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-weight: 500;
}

.hero-list i {
  color: var(--primary);
  margin-right: 8px;
}

.hero-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-doctor {
  border-radius: 20px;
  min-height: 400px;
  object-fit: cover;
}

.stats-row {
  margin-top: 16px;
}

.stat-card {
  background: linear-gradient(120deg, #066f69, #0a8c84);
  color: #fff;
  border-radius: 14px;
  text-align: center;
  padding: 20px 10px;
  height: 100%;
}

.stat-card h3 {
  color: #fff;
  margin-bottom: 0.1rem;
}

.feature-box {
  border-radius: var(--radius);
  padding: 1.35rem;
  height: 100%;
  background: #fff;
  box-shadow: 0 10px 30px rgba(6, 111, 105, 0.08);
  border: 1px solid #dff1ef;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #0da59f, #066f69);
  color: #fff;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
}

.split-panel {
  background: linear-gradient(120deg, #066f69 0%, #0a8c84 52%, #16a39a 100%);
  color: #fff;
  border-radius: 22px;
  padding: 2.25rem;
}

.split-panel p,
.split-panel h2,
.split-panel h3,
.split-panel li {
  color: #fff;
}

.icon-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.icon-list li {
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.55rem;
}

.icon-list i {
  margin-top: 0.3rem;
}

.page-hero {
  background: linear-gradient(100deg, #edf9f7 0%, #f3fbfa 58%, #e2f5f3 100%);
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  left: -180px;
  bottom: -200px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(6, 111, 105, 0.14);
}

.page-hero .hero-art {
  border-radius: 20px;
  min-height: 240px;
  object-fit: cover;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: #7e8aa1;
  --bs-breadcrumb-item-active-color: #1e2b40;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #9bb0cf;
}

.service-card {
  background: #f3fbfa;
  padding: 1.3rem;
  border-radius: 16px;
  border: 1px solid #dcefed;
  height: 100%;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(6, 111, 105, 0.18);
  background: #fff;
}

.service-card h3 {
  font-size: 1.28rem;
}

.service-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.doctor-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(14, 40, 90, 0.09);
  overflow: hidden;
}

.doctor-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.blog-card {
  background: #fff;
  border: 1px solid #e2e8f3;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 16px 38px rgba(6, 111, 105, 0.2);
  transform: translateY(-4px);
}

.blog-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.blog-content {
  padding: 1.25rem;
}

.blog-meta {
  font-size: 0.86rem;
  color: #6b7790;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.blog-meta i {
  margin-right: 4px;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid #e1e8f2;
  border-radius: 14px;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
}

.tag-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag-list a {
  display: inline-block;
  background: #edf3fb;
  color: #20365f;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  font-size: 0.82rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  margin-bottom: 0.8rem;
  padding: 0.82rem 0.95rem;
  border-radius: 999px;
  background: #eff3fa;
  border: 1px solid #dde8f9;
  font-weight: 600;
  color: #17305c;
}

.cta-bar {
  background: linear-gradient(120deg, #066f69, #0a8c84);
  color: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
}

.cta-bar p {
  color: #e6efff;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: #172946;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(90deg, #066f69, #0a8c84);
}

.faq-accordion .accordion-body {
  color: var(--muted);
}

.form-control,
.form-select {
  border-radius: 11px;
  border: 1px solid #d8e4f3;
  padding: 0.72rem 0.95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: #7ccbc6;
  box-shadow: 0 0 0 0.2rem rgba(6, 111, 105, 0.18);
}

.contact-card {
  padding: 1.35rem;
  border-radius: 16px;
  background: #eef9f8;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  border-radius: 16px;
}

.footer {
  background: linear-gradient(130deg, #0a4844 0%, #066f69 40%, #0c3f3b 100%);
  color: #d9e5ff;
  position: relative;
  margin-top: 80px;
  clear: both;
}

main {
  overflow: visible;
}

main > section.section-padding.pt-0 {
  clear: both;
}

.service-article {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

.section-padding.bg-white .row.g-4 {
  align-items: flex-start;
}

.footer-top {
  padding: 72px 0 30px;
}

.footer h3,
.footer h4,
.footer h5 {
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #d9e5ff;
}

.footer-links a:hover {
  color: #fff;
}

.footer-brand {
  background: linear-gradient(180deg, #0da59f, #066f69);
  padding: 1.3rem;
  border-radius: 15px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 1rem;
}

.footer-brand.h-100 p {
  color: var(--surface);
}

.social-list {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.social-list a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.social-list a:hover {
  background: #fff;
  color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 0;
  font-size: 0.9rem;
}

.footer-bottom,
.footer-bottom p,
.footer-bottom a {
  color: #ffffff;
}

.footer-bottom a:hover {
  color: #d9f4f1;
}

.seo-copy {
  font-size: 0.9rem;
  color: #f0f5ff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 82px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  z-index: 1080;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.38);
}

.quick-action {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #0a8c84, #066f69);
  z-index: 1080;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(6, 111, 105, 0.32);
}

.home-page .hero-slider-wrap,
.services-page .page-hero,
.home-page .section-padding,
.services-page .section-padding {
  background-image: radial-gradient(circle at 12% 18%, rgba(162, 220, 214, 0.22) 0, rgba(162, 220, 214, 0) 42%), radial-gradient(circle at 88% 72%, rgba(192, 230, 225, 0.26) 0, rgba(192, 230, 225, 0) 45%);
}

.home-hero-carousel {
  border-radius: 28px;
  background: linear-gradient(140deg, #f3fbfa 0%, #fff 58%, #ecf9f7 100%);
  border: 1px solid #dcefed;
  box-shadow: 0 18px 44px rgba(6, 111, 105, 0.12);
  padding: 2.1rem;
}

.home-hero-carousel .carousel-indicators {
  margin-bottom: -1.6rem;
}

.home-hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #5bb8b2;
}

.home-hero-carousel .carousel-indicators .active {
  background-color: var(--primary);
}

.home-hero-carousel .carousel-control-prev,
.home-hero-carousel .carousel-control-next {
  width: 42px;
  height: 42px;
  top: auto;
  bottom: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dcefed;
  opacity: 1;
}

.home-hero-carousel .carousel-control-prev {
  right: 62px;
  left: auto;
}

.home-hero-carousel .carousel-control-next {
  right: 14px;
}

.home-hero-carousel .carousel-control-prev-icon,
.home-hero-carousel .carousel-control-next-icon {
  filter: invert(40%) sepia(44%) saturate(750%) hue-rotate(132deg) brightness(86%) contrast(92%);
  width: 1.2rem;
  height: 1.2rem;
}

.home-page .hero-list li {
  color: #2a4b52;
}

.home-page .split-panel {
  position: relative;
  overflow: hidden;
}

.home-page .split-panel::after {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.testimonials-shell .testimonial-card {
  max-width: 740px;
  text-align: center;
  background: #f3fbfa;
  border: 1px solid #d9eeeb;
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 12px 28px rgba(6, 111, 105, 0.08);
}

.appointment-panel {
  height: 100%;
  background: linear-gradient(140deg, #f3fbfa 0%, #fff 100%);
  border: 1px solid #dcefed;
  border-radius: 22px;
  padding: 1.4rem;
}

.newsletter-shell {
  background: linear-gradient(120deg, #066f69, #0a8c84);
  border-radius: 20px;
  padding: 1.3rem;
  color: #fff;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.newsletter-shell p,
.newsletter-shell h3 {
  color: #fff;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  width: min(520px, 100%);
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.9);
}

.services-page .fertility-inner-hero {
  padding: 88px 0;
}

.services-page .fertility-inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(6, 111, 105, 0.36), rgba(18, 163, 154, 0.22));
  pointer-events: none;
}

.services-page .fertility-inner-hero .container {
  position: relative;
  z-index: 1;
}

.services-intro-shell .service-intro-copy {
  background: #f3fbfa;
  border: 1px solid #dcefed;
  border-radius: 22px;
  padding: 1.35rem;
}

.services-intro-shell .service-intro-image {
  background: #fff;
  border: 1px solid #dcefed;
  border-radius: 22px;
  padding: 0.65rem;
  box-shadow: 0 14px 34px rgba(6, 111, 105, 0.1);
}

.services-intro-shell .service-intro-image img {
  border-radius: 16px;
}

.quick-action:hover {
  transform: translateY(-1px);
}

.working-hours {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid #deebfa;
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 74px 0;
  }

  .navbar-brand img {
    width: 165px;
  }

  .hero {
    padding-top: 68px;
  }

  .home-hero-carousel {
    padding: 1.3rem;
  }

  .home-hero-carousel .carousel-control-prev,
  .home-hero-carousel .carousel-control-next {
    display: none;
  }

  .newsletter-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
  }

  .hero-doctor {
    min-height: 320px;
  }

  .page-hero .hero-art {
    min-height: 200px;
    margin-top: 1.1rem;
  }

  .footer-top {
    padding-top: 58px;
  }

  .navbar .dropdown-menu {
    position: static;
  }

  .navbar .services-submenu {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
  }

  .navbar .services-submenu.show {
    max-height: 700px;
    opacity: 1;
    border-top: 1px solid #cfe8e5;
    padding: 0.35rem 0 0.5rem;
    margin-top: 0.25rem;
  }

  .navbar .dropdown-toggle::after {
    float: right;
    margin-top: 0.5rem;
  }

  .navbar .dropdown-item {
    padding: 0.62rem 0.95rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  .section-padding {
    padding: 62px 0;
  }

  .hero-card {
    padding: 14px;
  }

  .hero-doctor {
    min-height: 250px;
  }

  .home-hero-carousel {
    border-radius: 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .blog-card img {
    height: 180px;
  }

  .footer-brand img {
    width: 165px;
  }
}

