:root {
  --red: #c8102e;
  --red-dark: #9d0c24;
  --navy: #10243f;
  --navy-soft: #1a3658;
  --ink: #161b22;
  --muted: #5b6472;
  --line: #e4ddd3;
  --paper: #f7f3ec;
  --cream: #fffaf3;
  --white: #ffffff;
  --gold: #b8924a;
  --shadow: 0 18px 50px rgba(16, 36, 63, 0.12);
  --radius: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-lock {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #10243f 0%, #163154 58%, #1a2438 100%);
  color: #fff;
  padding: 92px 0 78px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/page-banner.png") center 42% / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 36, 63, 0.55), rgba(16, 36, 63, 0.28) 55%, rgba(200, 16, 46, 0.18));
  pointer-events: none;
}

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

.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 10px 0 8px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 560px;
}

.page-hero-hi {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 30px);
  color: #f3c97a !important;
  margin: 0 0 8px;
  max-width: none;
}

.about-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.about-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-card-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 260px;
  background: #eee;
}

.about-card-photos.single {
  grid-template-columns: 1fr;
}

.about-card-photos img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
}

.about-card-photos img:first-child {
  object-position: 12% 10%;
}

.about-card div {
  padding: 24px;
}

.about-card small {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-card h3 {
  font-size: 30px;
  color: var(--navy);
  margin: 6px 0 8px;
}

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

.cases-page {
  background: #fff;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 22px;
}

.case-card {
  text-align: center;
}

.case-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  background: #f4f4f4;
}

.case-card span {
  display: inline-block;
  margin-top: 14px;
  background: #00b7e6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tour-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-grid img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 24, 0.92);
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 40px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 82vh;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.lb-close {
  top: 20px;
  right: 20px;
}

.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.section {
  padding: 90px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-title {
  font-size: clamp(32px, 5vw, 54px);
  color: var(--navy);
  margin: 12px 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.25);
}

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

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

.btn-line {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-line:hover {
  background: var(--navy);
  color: #fff;
}

/* Topbar */
.topbar {
  background: var(--navy);
  color: #d8e2ef;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
}

.topbar a:hover {
  color: #fff;
}

.top-links,
.top-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-links a,
.top-links span {
  white-space: nowrap;
}

.top-links i {
  margin-right: 7px;
  color: var(--gold);
}

.top-social a,
.top-social.social-links a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-links a.fb,
.top-social a.fb {
  background: #1877f2;
}

.social-links a.ig,
.top-social a.ig {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b 52%, #6228d7);
}

.social-links a.yt,
.top-social a.yt {
  background: #ff0000;
}

.social-links a:hover,
.top-social a:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.footer-social {
  margin-top: 18px;
}

.nav > a.nav-book {
  display: none;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 36, 63, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
}

.logo img {
  height: 40px;
  width: auto;
}

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

.nav > a,
.nav-item > a {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 24px 0;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav > a i,
.nav-item > a i {
  font-size: 11px;
}

.nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: 0.25s ease;
}

.nav > a:hover::after,
.nav > a.active::after,
.nav-item:hover > a::after,
.nav-item > a.active::after {
  width: 100%;
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 50;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.dropdown a:hover {
  background: var(--paper);
  color: var(--red);
}

.mega-item {
  position: static;
}

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto;
  transform: translateY(8px);
  background: #10243f;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(10, 18, 32, 0.35);
  padding: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  max-height: 76vh;
  overflow: auto;
  z-index: 50;
  border-top: 3px solid var(--gold);
}

.mega-item:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: linear-gradient(90deg, #0c1c33, #17324f);
  border-bottom: 1px solid rgba(184, 146, 74, 0.25);
  color: #fff;
}

.mega-head small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-head strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
}

.mega-head p {
  color: #c9d3df;
  font-size: 13px;
  max-width: 360px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mega-col {
  display: grid;
  align-content: start;
  gap: 2px;
  padding: 16px 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-col:last-child {
  border-right: 0;
}

.mega-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f3c97a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 10px 0 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(184, 146, 74, 0.12);
}

.mega-col > a:not(.mega-title):not(.mega-parent) {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #e8eef6;
  padding: 6px 10px;
  line-height: 1.4;
  border-radius: 8px;
}

.mega-col > a:not(.mega-title):hover,
.mega-col > a.current,
.mega-parent.current,
.mega-sub a.current {
  background: rgba(200, 16, 46, 0.4);
  color: #fff;
}

.mega-group {
  margin: 6px 0 8px;
  padding: 6px 0 4px;
  border-left: 2px solid rgba(184, 146, 74, 0.45);
}

.mega-parent {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #f3c97a;
  padding: 5px 10px;
  letter-spacing: 0.02em;
}

.mega-parent:hover {
  color: #fff;
}

.mega-sub {
  padding-left: 8px;
  margin: 0 0 4px;
}

.mega-sub a {
  display: block;
  font-size: 12px;
  color: #9aabbf;
  padding: 4px 10px;
  border-radius: 8px;
}

.mega-sub a:hover {
  color: #fff;
  background: rgba(200, 16, 46, 0.35);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  margin: 0 auto;
}

.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-btn span::before {
  top: -6px;
}

.menu-btn span::after {
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  height: min(78vh, 640px);
  overflow: hidden;
  background: var(--navy);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.hero.is-dragging {
  cursor: grabbing;
}

.hero img {
  -webkit-user-drag: none;
  pointer-events: none;
}

.slides {
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 32, 0.82) 0%, rgba(10, 18, 32, 0.38) 58%, rgba(10, 18, 32, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 18, 32, 0.15), rgba(10, 18, 32, 0.45));
}

.slide-copy {
  position: absolute;
  z-index: 2;
  left: max(20px, calc((100% - var(--container)) / 2));
  top: 38%;
  transform: translateY(-50%);
  width: min(620px, calc(100% - 40px));
  color: #fff;
}

.slide-copy h1 {
  font-size: clamp(32px, 5vw, 58px);
  margin: 14px 0 16px;
}

.slide-copy p {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 26px;
  max-width: 520px;
}

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

.slider-nav {
  position: absolute;
  z-index: 3;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.dot.active {
  background: #fff;
  width: 28px;
  border-radius: 999px;
}

.arrow {
  display: none;
}

.arrow.prev {
  left: 18px;
}

.arrow.next {
  right: 18px;
}

.arrow:hover {
  background: var(--red);
}

/* Stats */
.stats {
  margin-top: -36px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 18px 14px 16px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(16, 36, 63, 0.22);
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.1);
}

.stat-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.16);
  color: var(--gold);
  font-size: 15px;
}

.stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.stat em {
  display: block;
  margin-top: 6px;
  font-style: normal;
  color: #d5c3a0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Years */
.years {
  background: var(--paper);
}

.years-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.years-copy h2 {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--navy);
  margin: 10px 0 18px;
}

.offer-list {
  margin: 22px 0 28px;
  display: grid;
  gap: 10px;
}

.offer-list li {
  list-style: none;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}

.years-photo {
  position: relative;
}

.years-photo img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.badge-7 {
  position: absolute;
  left: -18px;
  bottom: 24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.badge-7 strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1;
}

.badge-7 small {
  font-size: 10px;
  letter-spacing: 0.12em;
}

/* Notice / appointment system */
.notice {
  padding: 16px 0 0;
}

.appt-system {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid #efe6d6;
  padding: 18px 20px 16px;
}

.appt-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.appt-head h2 {
  font-size: 28px;
  color: var(--navy);
  margin: 4px 0 0;
}

.appt-badge {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  text-align: right;
}

.appt-badge small {
  display: block;
  color: #f3c97a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.appt-badge strong {
  display: block;
  font-size: 15px;
  margin-top: 2px;
}

.appt-rows {
  display: grid;
  gap: 8px;
}

.appt-rows article {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid #efe8dc;
  border-radius: 12px;
  padding: 10px 12px;
}

.appt-rows article.warn {
  background: #fff6f6;
  border-color: #f0d0d4;
}

.appt-rows i {
  color: var(--red);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(200, 16, 46, 0.08);
  display: grid;
  place-items: center;
}

.appt-rows strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.appt-rows span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.appt-rows b {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.notice-actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 0 2px;
}

/* Welcome */
#welcome.section {
  padding-top: 69px;
}

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

.welcome-visual {
  position: relative;
}

.welcome-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
}

.quote-card {
  position: absolute;
  right: -20px;
  bottom: 28px;
  width: min(280px, 80%);
  background: var(--red);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quote-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.25;
}

/* Facilities */
.facilities {
  background: var(--navy);
  color: #fff;
}

.facilities .section-title,
.facilities .lead {
  color: #fff;
}

.facilities .lead {
  opacity: 0.78;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.facility-card {
  position: relative;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}

.facility-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.6s ease;
}

.facility-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 16, 28, 0.88) 100%);
}

.facility-card:hover img {
  transform: scale(1.08);
}

.facility-card span,
.facility-card small {
  position: relative;
  z-index: 1;
}

.facility-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.facility-copy small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facility-copy h3 {
  font-size: 28px;
  margin-top: 4px;
}

/* Results */
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.result-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 36, 63, 0.06);
  border: 1px solid #efe8dc;
}

.result-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #111;
}

.result-card .body {
  padding: 22px;
}

.result-card .tag {
  display: inline-block;
  background: #f3e7d8;
  color: #8a5a18;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.result-card h3 {
  font-size: 28px;
  margin: 10px 0 8px;
  color: var(--navy);
}

/* Videos */
.videos {
  background: var(--paper);
}

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

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  min-height: 210px;
  box-shadow: var(--shadow);
}

.video-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  opacity: 0.86;
  transition: 0.35s ease;
}

.video-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.35);
}

/* Doctors */
.doctors-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.doctor-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #efe8dc;
  box-shadow: 0 12px 32px rgba(16, 36, 63, 0.06);
}

.doctor-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: top;
}

.doctor-card.nitesh img {
  object-position: 12% 10%;
}

.doctor-card.naziya img {
  object-position: 45% 8%;
}

.doctor-info {
  padding: 32px 28px;
}

.doctor-info h3 {
  font-size: 34px;
  color: var(--navy);
}

.doctor-info .role {
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 6px 0 14px;
}

.doctor-info p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.team-wrap {
  padding: 50px 0 90px;
}

.team-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.doc-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 36, 63, 0.1);
  border: 1px solid #efe8dc;
}

.doc-photo {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #111;
}

.doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-photo.nitesh img {
  object-position: 20% 10%;
}

.doc-photo.naziya img {
  object-position: 45% 8%;
}

.doc-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(12, 23, 38, 0.95));
  color: #fff;
  text-align: center;
}

.doc-overlay h2 {
  font-size: 34px;
  margin-bottom: 4px;
}

.doc-overlay p {
  color: #f3c97a;
  font-size: 13px;
  font-weight: 800;
}

.doc-body {
  padding: 22px 22px 26px;
  text-align: center;
  background: #fffaf3;
}

.qual-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.qual-list span {
  display: inline-block;
  background: var(--paper);
  color: var(--navy);
  border: 1px solid #eadfcf;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
}

.qual-list span.gold {
  background: #10243f;
  color: #f3c97a;
  border-color: #10243f;
}

.view-more {
  border: 0;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
}

.view-more:hover {
  background: var(--red);
}

.view-more i {
  transition: transform 0.4s ease;
}

.doc-card.open .view-more i {
  transform: rotate(180deg);
}

.doc-full {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s ease;
  margin-top: 22px;
}

.doc-full.open {
  grid-template-rows: 1fr;
}

.doc-full-inner {
  overflow: hidden;
  min-height: 0;
  background: #10243f;
  color: #d7e0ea;
  border-radius: 20px;
}

.doc-full.open .doc-full-inner {
  padding: 28px 32px;
}

.doc-full-inner h3 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 12px;
}

.doc-full-inner p {
  margin-bottom: 14px;
  line-height: 1.75;
}

.doc-full-inner .btn {
  margin-top: 6px;
}

/* CTA */
.cta {
  background:
    linear-gradient(90deg, rgba(16, 36, 63, 0.88), rgba(200, 16, 46, 0.72)),
    url("../images/slider4.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 10px 0 14px;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.86);
}

/* Footer */
.footer {
  background: #0c1726;
  color: #c9d3df;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 36px;
}

.footer .logo img {
  height: 52px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
}

.footer h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer p,
.footer li,
.footer a {
  font-size: 14px;
  color: #b7c2d0;
}

.footer li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-links i,
.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  min-width: 14px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--gold);
}

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

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

/* Float + modal */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.mobile-act {
  display: none;
}

.mobile-act-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex: 0 0 42px;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.mobile-act-call .mobile-act-ico {
  background: #8f0017;
}

.mobile-act-wa .mobile-act-ico {
  background: #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
}

.mobile-act-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.mobile-act-txt small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.72;
}

.mobile-act-split {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(184, 146, 74, 0.7), transparent);
  align-self: center;
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 28, 0.7);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 20px;
}

.modal.open {
  display: grid;
}

.modal-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  position: relative;
}

.modal-card h3 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 8px;
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.appt-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.appt {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.appt strong {
  display: block;
  color: var(--navy);
}

.video-modal {
  line-height: 0;
}

.video-modal iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  border-radius: 12px;
}

[data-modal="video"] .modal-card {
  width: min(820px, 100%);
  padding: 0;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

[data-modal="video"] .video-modal iframe {
  border-radius: 0;
}

[data-modal="video"] .close {
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Facility / service pages */
.service-wrap {
  padding-top: 56px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.78fr);
  gap: 28px;
  align-items: start;
}

.service-main {
  background: #fff;
  border-radius: 24px;
  padding: 40px 38px;
  border: 1px solid #efe8dc;
  box-shadow: var(--shadow);
}

.service-copy {
  color: var(--muted);
  margin: 18px 0 8px;
  font-size: 15.5px;
}

.age-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.age-card {
  display: flex;
  gap: 14px;
  background: var(--cream);
  border: 1px solid #efe8dc;
  border-radius: 18px;
  padding: 18px 16px;
}

.age-card.age-wide {
  grid-column: 1 / -1;
}

.age-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.age-card small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.age-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin: 2px 0 6px;
}

.age-card p {
  color: var(--muted);
  font-size: 13.5px;
}

.service-book {
  position: sticky;
  top: 18px;
  background:
    linear-gradient(180deg, #163154 0%, #10243f 100%);
  color: #fff;
  border-radius: 24px;
  padding: 26px 22px 22px;
  box-shadow: 0 22px 48px rgba(16, 36, 63, 0.22);
}

.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 12px;
}

.book-head h3 {
  font-size: 34px;
  margin: 14px 0 8px;
}

.book-head p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 18px;
}

.book-doc {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 16px 16px 14px;
  margin-bottom: 12px;
}

.book-doc small {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-doc h4 {
  font-size: 22px;
  color: var(--navy);
  margin: 2px 0 4px;
}

.book-doc p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.book-doc a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.book-doc a:hover {
  color: var(--red-dark);
}

.book-full {
  width: 100%;
  margin-top: 6px;
}

.service-prose h3,
.service-prose h2 {
  font-size: 28px;
  color: var(--navy);
  margin: 26px 0 10px;
}

.service-prose p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 15.5px;
}

.service-prose ul,
.service-prose ol {
  margin: 0 0 16px 22px;
  color: var(--muted);
}

.service-prose li {
  margin: 5px 0;
}

.service-prose strong {
  color: var(--navy);
}

.service-prose img {
  border-radius: 14px;
  margin: 12px 0 18px;
}

.child-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.child-grid a {
  display: block;
  background: var(--cream);
  border: 1px solid #efe8dc;
  border-radius: 14px;
  padding: 13px 14px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.child-grid a:hover {
  border-color: var(--gold);
  color: var(--red);
}

.child-grid a i {
  color: var(--gold);
  margin-right: 8px;
}

.service-block {
  margin-top: 34px;
  padding-top: 8px;
}

.block-head {
  margin-bottom: 16px;
}

.block-head small {
  display: inline-block;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.block-head h3 {
  font-size: clamp(26px, 3vw, 34px);
  color: var(--navy);
  margin: 6px 0 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.step-card {
  background: var(--cream);
  border: 1px solid #efe8dc;
  border-radius: 18px;
  padding: 18px 16px 16px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-card h4 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-card p {
  color: var(--muted);
  font-size: 13.5px;
}

.note-box {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(184, 146, 74, 0.12), #fffaf3);
  border: 1px solid rgba(184, 146, 74, 0.28);
}

.note-box i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 3px;
}

.note-box strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}

.note-box p {
  color: var(--muted);
  font-size: 14px;
}

.care-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 6px;
}

.care-strip article {
  background: #10243f;
  color: #fff;
  border-radius: 16px;
  padding: 16px 14px;
}

.care-strip small {
  color: #f3c97a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.care-strip p {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.45;
}

.testi-wrap {
  padding-top: 56px;
}

.testi-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.testi-feature {
  position: relative;
  background: linear-gradient(135deg, #10243f, #1a3658);
  color: #fff;
  border-radius: 24px;
  padding: 36px 34px 28px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}

.testi-feature > i {
  color: #f3c97a;
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.testi-feature p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.45;
  max-width: 920px;
  margin-bottom: 22px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  flex: 0 0 46px;
}

.testi-feature .testi-avatar {
  background: #b8924a;
}

.testi-person strong {
  display: block;
  font-size: 16px;
}

.testi-person small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
}

.testi-person small img {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.testi-card {
  background: #fff;
  border: 1px solid #efe8dc;
  border-radius: 20px;
  padding: 22px 20px 18px;
  box-shadow: 0 10px 28px rgba(16, 36, 63, 0.05);
}

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

.testi-card .testi-person strong {
  color: var(--navy);
}

.testi-card .testi-person small {
  color: var(--muted);
}

.testi-stars {
  color: #b8924a;
  font-size: 11px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.testi-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.g-reviews {
  background: #f3eee4;
  overflow: hidden;
}

.g-reviews-head {
  text-align: center;
  margin-bottom: 36px;
}

.g-reviews-head .section-title {
  margin-bottom: 10px;
}

.g-reviews-rule {
  display: block;
  width: 72px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 99px;
}

.g-reviews-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
}

.g-review-summary {
  background: #fffaf3;
  border: 1px solid #e2d6c4;
  border-radius: 20px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(16, 36, 63, 0.08);
}

.g-review-summary img {
  height: 42px;
  width: auto;
  margin: 0 auto 12px;
}

.g-review-summary h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.g-summary-score {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.g-summary-score b {
  color: var(--navy);
  font-size: 22px;
}

.g-review-summary p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 16px;
}

.g-review-summary .btn {
  width: 100%;
}

.g-all {
  display: inline-block;
  margin-top: 10px;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 700;
}

.g-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.g-stars {
  color: #fbbc04;
  letter-spacing: 1px;
  font-size: 14px;
}

.g-review-scroller {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.g-review-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: g-review-move 160s linear infinite;
}

.g-review-scroller:hover .g-review-track {
  animation-play-state: paused;
}

@keyframes g-review-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.g-review-card {
  width: 320px;
  flex: 0 0 320px;
  background: #fffaf3;
  border: 1px solid #e2d6c4;
  border-radius: 18px;
  padding: 18px 16px 14px;
  box-shadow: 0 10px 26px rgba(16, 36, 63, 0.08);
}

.g-review-top {
  display: grid;
  grid-template-columns: 40px 1fr 18px;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.g-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #1a73e8;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
}

.g-ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.g-review-top strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.g-review-top small {
  color: #5b6472;
  font-size: 12px;
  font-weight: 600;
}

.g-review-text {
  color: #2c3340;
  font-size: 14.5px;
  line-height: 1.65;
  margin: 8px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.g-review-text.open {
  -webkit-line-clamp: unset;
}

.g-more {
  border: 0;
  background: none;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.contact-wrap {
  padding-top: 56px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.contact-card {
  background: #fff;
  border: 1px solid #efe8dc;
  border-radius: 20px;
  padding: 22px 18px 18px;
  box-shadow: 0 10px 28px rgba(16, 36, 63, 0.05);
  min-height: 100%;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  transition: 0.25s ease;
}

.contact-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.contact-card.whatsapp-card .contact-ico {
  background: rgba(37, 211, 102, 0.14);
  color: #128c4b;
}

.contact-card small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin: 4px 0 8px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.contact-map {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #efe8dc;
  box-shadow: var(--shadow);
  background: #eee;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.contact-side {
  background: linear-gradient(180deg, #163154 0%, #10243f 100%);
  color: #fff;
  border-radius: 24px;
  padding: 26px 22px 22px;
  box-shadow: 0 22px 48px rgba(16, 36, 63, 0.22);
}

.contact-side h3 {
  font-size: 34px;
  margin: 14px 0 8px;
}

.contact-side > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 16px;
}

.whatsapp-btn {
  width: 100%;
  margin: 8px 0 10px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.contact-social {
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .header .header-inner,
  .topbar .topbar-inner {
    width: 100%;
    max-width: none;
    padding: 0 16px;
  }

  .topbar {
    font-size: 12px;
  }

  .topbar-inner {
    min-height: 38px;
    gap: 10px;
  }

  .top-mail,
  .top-loc,
  .top-links span {
    display: none;
  }

  .top-links,
  .top-social {
    gap: 8px;
  }

  .top-phone {
    font-weight: 700;
  }

  .nav,
  .header-book {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #132a48 0%, #0c1c33 100%);
    padding: 12px 14px 22px;
    border-bottom: 3px solid var(--gold);
    align-items: stretch;
    max-height: calc(100vh - 108px);
    overflow: auto;
    gap: 6px;
    box-shadow: 0 28px 50px rgba(10, 18, 32, 0.38);
  }

  .nav > a,
  .nav-item > a {
    padding: 13px 14px;
    width: 100%;
    justify-content: space-between;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin: 0;
  }

  .nav > a:hover,
  .nav-item > a:hover,
  .nav > a.active,
  .nav-item > a.active,
  .nav-item.open > a {
    background: rgba(184, 146, 74, 0.18);
    color: #f3c97a;
    border-color: rgba(184, 146, 74, 0.28);
  }

  .nav > a::after,
  .nav-item > a::after {
    display: none;
  }

  .nav-item.open > a i {
    transform: rotate(180deg);
  }

  .dropdown,
  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
    box-shadow: none;
    padding: 0;
    max-height: none;
    grid-template-columns: 1fr;
    background: transparent;
    border-radius: 0;
    border-top: 0;
    overflow: visible;
  }

  .nav-item.open .dropdown,
  .nav-item.open .mega {
    display: block;
    padding: 6px 0 4px;
  }

  .dropdown a {
    color: #d8e2ef;
    background: rgba(255, 255, 255, 0.05);
    margin: 4px 0;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
  }

  .dropdown a:hover,
  .dropdown a.current {
    background: rgba(200, 16, 46, 0.32);
    color: #fff;
  }

  .mega-head {
    display: none;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mega-col {
    border-right: 0;
    border-bottom: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
  }

  .mega-title {
    margin: 0 0 8px;
  }

  .mega-col > a:not(.mega-title):not(.mega-parent) {
    color: #d8e2ef;
    padding: 9px 10px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 4px;
  }

  .mega-group {
    margin: 6px 0;
    padding: 0;
    border-left: 0;
    background: rgba(12, 28, 51, 0.45);
    border-radius: 10px;
    overflow: hidden;
  }

  .mega-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    color: #f3c97a;
  }

  .mega-parent::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 9px;
    color: #f3c97a;
    transition: transform 0.2s ease;
  }

  .mega-group.open .mega-parent::after {
    transform: rotate(180deg);
  }

  .mega-sub {
    display: none;
    padding: 0 8px 8px;
  }

  .mega-group.open .mega-sub {
    display: block;
  }

  .mega-sub a {
    color: #c9d3df;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    margin-top: 4px;
  }

  .nav > a.nav-book,
  .nav > a.nav-book:hover,
  .nav > a.nav-book.active {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
    background: var(--red);
    color: #fff;
    border: 0;
    justify-content: center;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .menu-btn.open {
    background: var(--navy);
    border-color: var(--navy);
  }

  .menu-btn.open span {
    background: transparent;
  }

  .menu-btn.open span::before {
    top: 0;
    background: #fff;
    transform: rotate(45deg);
  }

  .menu-btn.open span::after {
    top: 0;
    background: #fff;
    transform: rotate(-45deg);
  }

  .nav.open + .header-book {
    display: none;
  }
}

@media (max-width: 1024px) {
  .stats-grid,
  .facility-grid,
  .result-grid,
  .video-grid,
  .footer-grid,
  .years-grid,
  .welcome-grid,
  .doctors-head,
  .about-links,
  .step-grid,
  .care-strip,
  .testi-intro,
  .testi-grid,
  .contact-layout,
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .appt-rows article {
    grid-template-columns: 34px 1fr auto;
  }

  .quote-card,
  .badge-7 {
    left: 16px;
    right: auto;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 64px;
  }

  .hero {
    height: 70vh;
  }

  .slide-copy {
    top: 36%;
  }

  .slider-nav {
    bottom: 78px;
  }

  .appt-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .appt-system {
    padding: 16px 14px 12px;
  }

  .appt-rows article {
    grid-template-columns: 34px 1fr;
  }

  .appt-rows b {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .facility-grid,
  .result-grid,
  .video-grid,
  .footer-grid,
  .years-grid,
  .welcome-grid,
  .doctor-card,
  .doctor-grid,
  .doctors-head,
  .service-layout,
  .age-grid,
  .child-grid,
  .step-grid,
  .care-strip,
  .testi-intro,
  .testi-grid,
  .contact-layout,
  .contact-cards,
  .g-reviews-layout {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 360px;
  }

  .service-main {
    padding: 26px 20px;
  }

  .service-book {
    position: static;
  }

  .age-card.age-wide {
    grid-column: auto;
  }

  .stat {
    padding: 20px 12px;
  }

  .stat strong {
    font-size: 30px;
  }

  .welcome-visual img,
  .doctor-card img {
    min-height: 280px;
    height: 320px;
  }

  .top-mail,
  .top-loc,
  .top-links span {
    display: none;
  }

  .footer-bottom,
  .about-links,
  .tour-grid,
  .about-card,
  .team-duo,
  .cases-grid {
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .badge-7 {
    display: none;
  }

  .whatsapp {
    display: none;
  }

  .mobile-act {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 55;
    min-height: 68px;
    padding: 8px 8px;
    background: linear-gradient(180deg, #163156 0%, #10243f 100%);
    border: 1px solid rgba(184, 146, 74, 0.45);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(16, 36, 63, 0.32);
  }

  .mobile-act a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    min-height: 52px;
    border-radius: 16px;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-act a:active {
    background: rgba(255, 255, 255, 0.06);
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }
}

