* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary: #12c7c0;
  --secondary: #159ed6;
  --dark: #1c2a39;
  --text-light: #f5f7fb;
  --muted: #c8d2dc;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.96);
}

body {
  font-family: "DM Sans", sans-serif;
  background: #0d1c2b;
  color: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 20, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 1098;
}

body.menu-open::before {
  opacity: 1;
  pointer-events: auto;
}

.navbar{
  position:relative;
  width: 100%;
  gap: 20px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 14px;
  background: rgba(7, 16, 28, 0.78);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 1102;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: 0.3s ease;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(320px, 100%);
  background: rgba(22, 37, 54, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  z-index: 1000;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu-btn {
  border-radius: 12px;
  text-align: center;
  margin-top: 4px;
  padding: 14px 18px !important;
}

.mobile-book {
  background: linear-gradient(90deg, #159ed6, #12c7c0);
  color: #fff;
}

.mobile-whatsapp {
  background: #1fc95b;
  color: #fff;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .navbar {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 360px);
    max-width: 360px;
    height: 100dvh;
    max-height: 100dvh;
    padding: 88px 20px 24px;
    border-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-right: none;
    display: flex;
    gap: 8px;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
  }

  .mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}


.container {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 992px) {
  .container {
    width: 90%;
  }
}

.topbar {
  position: relative;
  z-index: 1001;
  background: #10a4d5;
  color: #fff;
  font-size: 15px;
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  gap: 30px;
}

.topbar-right {
  color: #9cffb3;
  font-weight: 600;
  position: relative;
  padding-left: 14px;
}

.topbar-right::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #68f08a;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(20, 35, 50, 0.82), rgba(20, 35, 50, 0.82)),
    url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 27, 39, 0.75) 35%, rgba(255, 255, 255, 0.12) 100%);
  z-index: 1;
}

.navbar {
  position: relative;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.logo-text h2 {
  font-size: 20px;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
}

.logo-text p {
  font-size: 13px;
  color: #dce5ee;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-light {
  background: #fff;
  color: #139fd4;
  padding: 12px 22px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: #fff;
  padding: 12px 24px;
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.btn-gradient {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.large {
  min-width: 240px;
  min-height: 56px;
  font-size: 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 70px 0 90px;
}

.hero-left {
  flex: 1;
  max-width: 700px;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  margin-bottom: 28px;
  font-weight: 600;
}

.hero-left h1 {
  font-family: "Playfair Display", serif;
  font-size: 78px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-left h1 span {
  color: var(--primary);
}

.hero-left p {
  font-size: 19px;
  line-height: 1.5;
  color: #e4ebf2;
  max-width: 580px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}

.stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.stat h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.stat span {
  color: #d2d9e0;
  font-size: 15px;
}

.hero-right {
  flex: 0 0 660px;
}

.form-card {
  background: var(--card-bg);
  color: var(--dark);
  padding: 38px 34px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.form-card h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 8px;
}

.form-card p {
  text-align: center;
  color: #607790;
  margin-bottom: 24px;
  font-size: 17px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid #dce7ef;
  background: #f3f8fb;
  font-size: 16px;
  color: #23364a;
  outline: none;
}

.form-card small {
  display: block;
  margin-top: 18px;
  text-align: center;
  color: #6d8298;
  font-size: 15px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  color: #d8e1ea;
}

.scroll-indicator p {
  margin-bottom: 10px;
  font-size: 14px;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}

.mouse::before {
  content: "";
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.doctor-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(105deg, #ffffff 0%, #f7fbff 58%, #eef6fb 100%);
  color: var(--dark);
}

.doctor-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 420px;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 164, 214, 0.1), rgba(18, 199, 192, 0.04));
  transform: skewX(-10deg);
}

.doctor-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: center;
}

.doctor-image-wrap {
  position: relative;
}

.doctor-image {
  width: 100%;
  height: 840px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
  box-shadow: 0 25px 60px rgba(12, 41, 76, 0.14);
}

.review-card,
.experience-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(17, 36, 68, 0.12);
}

.review-card {
  top: 24px;
  left: 24px;
  padding: 18px 26px;
}

.review-card .stars {
  color: #08b7b1;
  font-size: 22px;
  font-weight: 700;
}

.review-card strong {
  font-size: 20px;
  color: #1d2a3c;
  margin-left: 8px;
}

.review-card p {
  color: #627991;
  font-size: 16px;
  margin-top: 6px;
}

.experience-card {
  right: 28px;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
}

.experience-number {
  min-width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.experience-card strong {
  display: block;
  color: #213246;
  font-size: 17px;
}

.experience-card p {
  color: #617790;
  font-size: 16px;
  margin-top: 4px;
}

.doctor-content {
  max-width: 700px;
}

.section-pill {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #e8f8ff;
  color: #119fda;
  font-weight: 700;
  margin-bottom: 24px;
}

.doctor-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 68px;
  line-height: 1.08;
  color: #1f3148;
  margin-bottom: 14px;
}

.doctor-content h3 {
  font-size: 22px;
  color: #0999da;
  margin-bottom: 28px;
}

.doctor-highlights {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.highlight-chip {
  padding: 14px 18px;
  border-radius: 999px;
  background: #f1f7fb;
  color: #2a3c52;
  font-weight: 500;
}

.doctor-description {
  color: #627991;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.doctor-features {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.doctor-features li {
  position: relative;
  padding-left: 36px;
  color: #26384b;
  font-size: 19px;
  font-weight: 500;
}

.doctor-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0bbdb2 0 4px, transparent 5px),
    #dffbf8;
  border: 1px solid #9cebe1;
}

.doctor-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.doctor-btn {
  min-width: 194px;
  min-height: 56px;
}

.btn-call {
  background: transparent;
  color: #149bd8;
  border: 1px solid #149bd8;
  padding: 12px 24px;
}

@media (max-width: 1200px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-right {
    width: 100%;
    flex: 1;
  }

  .form-card {
    max-width: 720px;
  }

  .nav-links {
    display: none;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .doctor-content h2 {
    font-size: 54px;
  }
}
.doctor-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(105deg, #ffffff 0%, #f7fbff 58%, #eef6fb 100%);
  color: #1c2a39;
}

.doctor-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 420px;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 164, 214, 0.1), rgba(18, 199, 192, 0.04));
  transform: skewX(-10deg);
}

.doctor-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: center;
}

.doctor-image-wrap {
  position: relative;
}

.doctor-image {
  width: 100%;
  height: 840px;
  object-fit: cover;
  border-radius: 26px;
  display: block;
  box-shadow: 0 25px 60px rgba(12, 41, 76, 0.14);
}

.review-card,
.experience-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(17, 36, 68, 0.12);
}

.review-card {
  top: 24px;
  left: 24px;
  padding: 18px 26px;
}

.review-card .stars {
  color: #08b7b1;
  font-size: 22px;
  font-weight: 700;
}

.review-card strong {
  font-size: 20px;
  color: #1d2a3c;
  margin-left: 8px;
}

.review-card p {
  color: #627991;
  font-size: 16px;
  margin-top: 6px;
}

.experience-card {
  right: 28px;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 26px;
}

.experience-number {
  min-width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #159ed6, #12c7c0);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.experience-card strong {
  display: block;
  color: #213246;
  font-size: 17px;
}

.experience-card p {
  color: #617790;
  font-size: 16px;
  margin-top: 4px;
}

.doctor-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 68px;
  line-height: 1.08;
  color: #1f3148;
  margin-bottom: 14px;
}

.doctor-content h3 {
  font-size: 22px;
  color: #0999da;
  margin-bottom: 28px;
}

.section-pill {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #e8f8ff;
  color: #119fda;
  font-weight: 700;
  margin-bottom: 24px;
}

.doctor-highlights {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.highlight-chip {
  padding: 14px 18px;
  border-radius: 999px;
  background: #f1f7fb;
  color: #2a3c52;
  font-weight: 500;
}

.doctor-description {
  color: #627991;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.doctor-features {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.doctor-features li {
  position: relative;
  padding-left: 36px;
  color: #26384b;
  font-size: 19px;
  font-weight: 500;
}

.doctor-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #0bbdb2 0 4px, transparent 5px), #dffbf8;
  border: 1px solid #9cebe1;
}

.doctor-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.doctor-btn {
  min-width: 194px;
  min-height: 56px;
}

.btn-call {
  background: transparent;
  color: #149bd8;
  border: 1px solid #149bd8;
  padding: 12px 24px;
}

.services-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #fbfeff 0%, #f5fbff 100%);
}

.services-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  line-height: 1.1;
  color: #1f3148;
  margin-bottom: 18px;
}

.services-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #6b8096;
  max-width: 640px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px 24px;
  box-shadow: 0 12px 30px rgba(24, 55, 90, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 18px 18px 0 0;
}

.service-card.blue::before {
  background: #17a8e3;
}

.service-card.pink::before {
  background: linear-gradient(90deg, #b14cff, #ff4f9a);
}

.service-card.orange::before {
  background: #ff9d2f;
}

.service-card.cyan::before {
  background: #14c8da;
}

.service-card.green::before {
  background: #22d39a;
}

.service-card.red::before {
  background: #ff4d7a;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(24, 55, 90, 0.12);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #f2f7fb;
  color: #139fd4;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.2;
  color: #1f3148;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #6a8096;
  margin-bottom: 18px;
}

.service-card a {
  color: #0f9fd6;
  font-weight: 700;
  text-decoration: none;
}

.services-btn-wrap {
  text-align: center;
  margin-top: 42px;
}

.services-btn {
  min-width: 180px;
  min-height: 52px;
}

.difference-section {
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at top, rgba(26, 195, 205, 0.08), transparent 30%),
    #162536;
  position: relative;
  overflow: hidden;
}

.difference-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.35;
  pointer-events: none;
}

.difference-section .container {
  position: relative;
  z-index: 1;
}

.dark-pill {
  background: rgba(19, 159, 212, 0.16);
  color: #18b7e5;
}

.difference-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.difference-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
}

.difference-header p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 650px;
  margin: 0 auto;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 60px;
}

.difference-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.difference-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 199, 192, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.difference-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #159ed6, #12c7c0);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.difference-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 12px;
}

.difference-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.difference-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.difference-stat {
  text-align: center;
}

.difference-stat h4 {
  font-size: 52px;
  font-weight: 700;
  color: #18c2d5;
  margin-bottom: 8px;
}

.difference-stat p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1100px) {
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .difference-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .difference-header h2 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .difference-section {
    padding: 80px 0;
  }

  .difference-grid,
  .difference-stats {
    grid-template-columns: 1fr;
  }

  .difference-header {
    margin-bottom: 40px;
  }

  .difference-header h2 {
    font-size: 38px;
  }

  .difference-header p {
    font-size: 16px;
  }

  .difference-card h3 {
    font-size: 24px;
  }

  .difference-stat h4 {
    font-size: 40px;
  }
}

.about-clinic-section {
  padding: 110px 0;
  background: #ffffff;
}

.about-clinic-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 430px;
}

.about-frame {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88%;
  height: 64%;
  border: 1.5px solid #b9eefd;
  border-radius: 22px;
}

.about-image-wrap {
  position: absolute;
  top: 0;
  left: 20px;
  width: 88%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(18, 56, 92, 0.12);
}

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 36, 52, 0.22);
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #149fd8;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  line-height: 1.08;
  color: #1f3148;
  margin-bottom: 24px;
  max-width: 640px;
}

.about-lead {
  font-size: 19px;
  line-height: 1.7;
  color: #5f7891;
  margin-bottom: 18px;
}

.about-text {
  font-size: 18px;
  line-height: 1.7;
  color: #6a8096;
  margin-bottom: 28px;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.about-list li {
  position: relative;
  padding-left: 36px;
  font-size: 18px;
  font-weight: 500;
  color: #26384b;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #0bbdb2 0 4px, transparent 5px), #dffbf8;
  border: 1px solid #9cebe1;
}

.about-btn {
  min-width: 180px;
  min-height: 54px;
}

.testimonials-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.testimonials-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.testimonials-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 62px;
  line-height: 1.08;
  color: #1f3148;
  margin: 18px 0 16px;
}

.testimonials-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #6b8096;
  margin-bottom: 34px;
}

.rating-strip {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e4edf4;
  box-shadow: 0 12px 28px rgba(24, 55, 90, 0.08);
  color: #58708a;
  font-size: 17px;
}

.google-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5f9fd;
  color: #4285f4;
  font-weight: 700;
}

.rating-stars,
.testimonial-stars {
  color: #11bdb6;
  letter-spacing: 2px;
  font-weight: 700;
}

.rating-strip strong {
  color: #1f3148;
  font-size: 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e8eef4;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 10px 24px rgba(24, 55, 90, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card.active {
  border-color: #15a8de;
  box-shadow: 0 14px 30px rgba(21, 168, 222, 0.14);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(24, 55, 90, 0.1);
}

.quote-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf8fe;
  color: #11a7da;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.testimonial-stars {
  font-size: 16px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #5f7690;
  margin-bottom: 22px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #159ed6, #12c7c0);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-user h4 {
  font-size: 17px;
  color: #1f3148;
  margin-bottom: 3px;
}

.testimonial-user span {
  font-size: 14px;
  color: #7b8fa3;
}

.tour-section {
  padding: 110px 0;
  background: #ffffff;
}

.tour-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.tour-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 60px;
  line-height: 1.08;
  color: #1f3148;
  margin: 18px 0 16px;
}

.tour-header p {
  font-size: 18px;
  line-height: 1.7;
  color: #6b8096;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tour-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(24, 55, 90, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #eef6fb;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(24, 55, 90, 0.14);
}

.tour-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.ready-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #149ed8 0%, #10c8c1 100%);
  position: relative;
  overflow: hidden;
}

.ready-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.14) 2px, transparent 2px);
  background-size: 60px 60px;
  opacity: 0.6;
}

.ready-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.ready-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 62px;
  line-height: 1.05;
  color: #fff;
  max-width: 520px;
  margin-bottom: 22px;
}

.ready-content p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.ready-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ready-btn-white {
  background: #fff;
  color: #159ed6;
  padding: 15px 28px;
}

.ready-btn-green {
  background: #16d65f;
  color: #fff;
  padding: 15px 28px;
}

.ready-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ready-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.ready-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.ready-info-card span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  margin-bottom: 4px;
}

.ready-info-card h4 {
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}

.ready-info-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  margin-top: 4px;
}

.footer-section {
  background: #182636;
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-logo-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #159ed6, #12c7c0);
  color: #fff;
  font-size: 32px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.footer-logo h3,
.footer-links h4,
.footer-contact h4 {
  font-family: "Playfair Display", serif;
  color: #fff;
}

.footer-logo p {
  color: #8ea0b3;
  font-size: 14px;
}

.footer-text {
  color: #c2cfdb;
  font-size: 17px;
  line-height: 1.8;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 30px;
  margin-bottom: 24px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #d0d9e3;
  margin-bottom: 14px;
  font-size: 17px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(18, 199, 192, 0.12);
  color: #12c7c0;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-contact-item p {
  color: #d0d9e3;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .ready-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ready-content h2 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .ready-section {
    padding: 70px 0;
  }

  .ready-content h2 {
    font-size: 38px;
  }

  .ready-content p,
  .footer-text,
  .footer-links a,
  .footer-contact-item p {
    font-size: 16px;
  }

  .ready-info-card h4 {
    font-size: 22px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .tour-header h2 {
    font-size: 46px;
  }

  .tour-card img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .tour-section {
    padding: 80px 0;
  }

  .tour-header {
    margin-bottom: 40px;
  }

  .tour-header h2 {
    font-size: 38px;
  }

  .tour-header p {
    font-size: 16px;
  }

  .tour-card img {
    height: 260px;
  }
}

@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-header h2 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-header h2 {
    font-size: 38px;
  }

  .testimonials-header p {
    font-size: 16px;
  }

  .rating-strip {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 24px;
  }
}

@media (max-width: 1100px) {
  .about-clinic-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content h2 {
    font-size: 48px;
  }

  .about-media {
    min-height: 520px;
  }
}

@media (max-width: 768px) {
  .about-clinic-section {
    padding: 80px 0;
  }

  .about-media {
    min-height: 360px;
  }

  .about-image-wrap {
    position: relative;
    left: 0;
    width: 100%;
  }

  .about-frame {
    width: 100%;
    height: 100%;
    left: 12px;
    bottom: -12px;
  }

  .about-image {
    min-height: 300px;
  }

  .play-button {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

  .about-content h2 {
    font-size: 38px;
  }

  .about-lead,
  .about-text,
  .about-list li {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-header h2 {
    font-size: 38px;
  }

  .services-header p {
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header h2 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header {
    margin-bottom: 40px;
  }

  .services-header h2 {
    font-size: 38px;
  }

  .services-header p {
    font-size: 16px;
  }

  .service-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 1200px) {
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .doctor-content h2 {
    font-size: 54px;
  }
}

@media (max-width: 768px) {
  .doctor-section {
    padding: 80px 0;
  }

  .doctor-section::after {
    display: none;
  }

  .doctor-image {
    height: 520px;
  }

  .experience-card {
    position: static;
    margin-top: 18px;
    width: fit-content;
  }

  .doctor-content h2 {
    font-size: 42px;
  }

  .doctor-content h3 {
    font-size: 18px;
  }

  .doctor-description {
    font-size: 17px;
  }

  .doctor-features li {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hero-buttons,
  .stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    padding: 8px 0;
    font-size: 14px;
  }

  .topbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .topbar-left {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
  }

  .topbar-left span:last-child,
  .topbar-right {
    display: none;
  }

  .topbar-left span:first-child {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
  }

  .logo {
    min-width: 0;
    flex: 1;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-box {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .logo-text h2 {
    font-size: 18px;
    white-space: normal;
  }

  .logo-text p {
    font-size: 12px;
    white-space: normal;
  }

  .menu-toggle {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
  }

  .mobile-menu {
    width: min(88vw, 360px);
  }

  .nav-actions {
    display: none !important;
  }

  .hero-left h1 {
    font-size: 48px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .hero-right {
    width: 100%;
  }

  .form-card {
    padding: 24px 20px;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .btn {
    width: 100%;
  }

  .doctor-section {
    padding: 80px 0;
  }

  .doctor-section::after {
    display: none;
  }

  .doctor-image {
    height: 520px;
  }

  .review-card {
    top: 18px;
    left: 18px;
    padding: 14px 18px;
  }

  .experience-card {
    position: static;
    margin-top: 18px;
    width: fit-content;
  }

  .doctor-content h2 {
    font-size: 42px;
  }

  .doctor-content h3 {
    font-size: 18px;
  }

  .doctor-description {
    font-size: 17px;
  }

  .doctor-features li {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 7px 0;
    font-size: 13px;
  }

  .topbar-inner {
    gap: 8px;
  }

  .navbar {
    gap: 10px;
  }

  .logo {
    gap: 10px;
  }

  .logo-box {
    width: 42px;
    height: 42px;
    font-size: 24px;
    border-radius: 12px;
  }

  .logo-text h2 {
    font-size: 16px;
  }

  .logo-text p {
    font-size: 11px;
  }

  .mobile-menu {
    width: min(100vw, 320px);
    padding: 84px 16px 20px;
  }
}
