:root {
  --primary: #0878a4;
  --primary-dark: #075b82;
  --secondary: #13b7a5;
  --accent: #f4a261;
  --ink: #102f3d;
  --text: #16323f;
  --muted: #637986;
  --line: rgba(8, 120, 164, 0.12);
  --soft: #eef9fb;
  --soft-2: #f6fbfd;
  --white: #ffffff;
  --dark: #092b39;
  --shadow: 0 24px 70px rgba(12, 75, 95, 0.16);
  --shadow-strong: 0 36px 110px rgba(8, 61, 82, 0.24);
  --radius: 28px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(8, 120, 164, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8fdff 0%, #ffffff 40%, #f7fbfc 100%);
  background-size: 44px 44px, 100% 100%;
  overflow-x: hidden;
}

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

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(19, 183, 165, 0.18), rgba(8, 120, 164, 0.08) 36%, transparent 68%);
  filter: blur(8px);
  transform: translate3d(-100vw, -100vh, 0);
  translate: -50% -50%;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 80;
  width: min(1440px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(13, 86, 117, 0.12);
  transition: padding .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-compact {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 48px rgba(13, 86, 117, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 24px rgba(8, 120, 164, 0.24);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.3vw, 20px);
  color: var(--muted);
  font-size: clamp(11px, .78vw, 13px);
  font-weight: 750;
  white-space: nowrap;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: width .25s ease;
}

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

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: translateX(-100%) rotate(12deg);
  transition: transform .55s ease;
}

.btn:hover::before {
  transform: translateX(100%) rotate(12deg);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 30px rgba(8, 120, 164, 0.24);
}

.btn-soft {
  color: var(--primary-dark);
  background: #e9f8fb;
}

.hero-scroll-stage {
  position: relative;
  height: 220vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(19, 183, 165, 0.2), transparent 32%),
    radial-gradient(circle at 80% 12%, rgba(8, 120, 164, 0.22), transparent 34%),
    linear-gradient(180deg, #f8fdff 0%, #edf9fc 54%, #ffffff 100%);
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .72;
  pointer-events: none;
  animation: drift 13s ease-in-out infinite alternate;
}

.orb-a {
  width: 320px;
  height: 320px;
  left: 6%;
  top: 18%;
  background: rgba(19, 183, 165, 0.24);
}

.orb-b {
  width: 420px;
  height: 420px;
  right: 2%;
  top: 12%;
  background: rgba(8, 120, 164, 0.18);
  animation-delay: -3s;
}

.orb-c {
  width: 260px;
  height: 260px;
  left: 42%;
  bottom: 18%;
  background: rgba(244, 162, 97, 0.14);
  animation-delay: -6s;
}

@keyframes drift {
  from {
    transform: translate3d(-24px, -16px, 0) scale(.96);
  }
  to {
    transform: translate3d(28px, 26px, 0) scale(1.08);
  }
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 110px 24px 40px;
}

.hero-motion-card {
  position: relative;
  width: min(1240px, 94vw);
  min-height: min(720px, calc(100vh - 150px));
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 34px;
  padding: clamp(26px, 4vw, 58px);
  overflow: hidden;
  border-radius: 52px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong);
  transform-origin: center center;
  will-change: transform, border-radius;
}

.hero-motion-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 20%, rgba(19, 183, 165, 0.24), transparent 24%),
    radial-gradient(circle at 80% 40%, rgba(8, 120, 164, 0.18), transparent 28%);
  animation: floatBackground 11s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-motion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.28) 40%, transparent 68%);
  transform: translateX(-110%);
  animation: heroShine 5.8s ease-in-out infinite;
}

@keyframes heroShine {
  0%, 58% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(115%);
  }
}

@keyframes floatBackground {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 2%, 0) scale(1.06);
  }
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border: 1px solid rgba(8, 120, 164, 0.12);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(232, 248, 251, 0.9);
  font-size: 13px;
  font-weight: 850;
}

.eyebrow-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy p {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.stat-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(8, 120, 164, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  animation: loadLine 2.4s ease forwards;
}

@keyframes loadLine {
  to {
    transform: scaleX(1);
  }
}

.stat-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-size: 22px;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hospital-illustration {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 0.86;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(239,250,253,0.94)),
    linear-gradient(135deg, rgba(8,120,164,0.1), rgba(19,183,165,0.1));
  box-shadow: inset 0 0 0 1px rgba(8, 120, 164, 0.08), 0 30px 80px rgba(11, 76, 98, 0.16);
  overflow: hidden;
}

.hospital-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

.heartbeat-line {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawLine 2.2s ease-in-out infinite alternate;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.pulse-ring {
  position: absolute;
  width: 84px;
  height: 84px;
  border: 2px solid rgba(19, 183, 165, 0.45);
  border-radius: 50%;
  animation: pulse 2.8s ease-out infinite;
}

.pulse-ring.one {
  top: 70px;
  right: 42px;
}

.pulse-ring.two {
  left: 44px;
  bottom: 88px;
  animation-delay: .9s;
}

.pulse-ring.three {
  right: 80px;
  bottom: 156px;
  animation-delay: 1.7s;
}

@keyframes pulse {
  0% {
    transform: scale(.72);
    opacity: .9;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.floating-info {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 35px rgba(13, 86, 117, 0.12);
  animation: floatCard 5s ease-in-out infinite;
}

.floating-info .icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-size: 12px;
  font-weight: 900;
}

.floating-info strong {
  display: block;
  font-size: 13px;
}

.floating-info span {
  color: var(--muted);
  font-size: 12px;
}

.floating-info.a {
  top: 22px;
  left: -24px;
}

.floating-info.b {
  right: -30px;
  bottom: 62px;
  animation-delay: 1s;
}

.floating-info.c {
  left: 36px;
  bottom: 18px;
  animation-delay: 1.7s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(8, 120, 164, 0.32);
  border-radius: 999px;
  position: relative;
}

.mouse::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateX(-50%);
  animation: wheel 1.6s infinite;
}

@keyframes wheel {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 12px);
    opacity: 0;
  }
}

.motion-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  padding: 10px 18px;
  border-radius: 999px;
  background: #e9f8fb;
  color: var(--primary-dark);
  font-weight: 850;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 102px 24px;
}

.container {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.service-section,
.library-section,
.faq-section,
.vision-section,
.awards-section,
.management-section,
.news-section {
  background: #ffffff;
}

.doctors-section,
.resources-section,
.facilities-section,
.careers-section,
.split-section {
  background:
    radial-gradient(circle at 80% 16%, rgba(8,120,164,.08), transparent 26%),
    linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.team-card,
.resource-card,
.why-card,
.vision-card,
.award-card,
.about-feature-card,
.career-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(8, 120, 164, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 86, 117, 0.08);
  overflow: hidden;
}

.service-card {
  min-height: 264px;
}

.service-card::before,
.vision-card::before,
.resource-card::before,
.why-card::before,
.award-card::before,
.team-card::before,
.about-feature-card::before,
.career-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-card:hover::before,
.vision-card:hover::before,
.resource-card:hover::before,
.why-card:hover::before,
.award-card:hover::before,
.team-card:hover::before,
.about-feature-card:hover::before,
.career-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.team-card:hover,
.resource-card:hover,
.promo-card:hover,
.article-card:hover,
.why-card:hover,
.vision-card:hover,
.award-card:hover,
.about-feature-card:hover,
.career-card:hover {
  box-shadow: 0 26px 80px rgba(13, 86, 117, 0.15);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 20px;
  color: var(--primary);
  background: #e9f8fb;
  font-size: 24px;
  font-weight: 950;
}

.service-card h3,
.team-card h3,
.resource-card h3,
.why-card h3,
.vision-card h3,
.award-card h3,
.about-feature-card h3,
.career-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.service-card p,
.team-card p,
.resource-card p,
.why-card p,
.vision-card p,
.award-card p,
.about-feature-card p,
.career-card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.68;
  font-size: 14px;
}

.service-card a {
  color: var(--primary-dark);
  font-weight: 900;
}

.doctor-search {
  margin-bottom: 26px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(8, 120, 164, 0.94), rgba(19, 183, 165, 0.9)),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.22), transparent 30%);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doctor-search-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 26px;
  padding: clamp(28px, 5vw, 54px);
  align-items: center;
}

.doctor-search h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.052em;
}

.doctor-search p {
  max-width: 500px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
}

.search-panel {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 28px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.input {
  min-height: 54px;
  width: 100%;
  padding: 0 16px;
  border: 0;
  border-radius: 18px;
  outline: none;
  color: var(--text);
  background: #fff;
  font-weight: 650;
}

.search-panel .btn {
  min-height: 54px;
  background: #fff;
  color: var(--primary-dark);
  white-space: nowrap;
}

.team-grid,
.resource-grid,
.why-grid,
.vision-grid,
.award-grid {
  display: grid;
  gap: 18px;
}

.team-grid,
.vision-grid,
.award-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-grid,
.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.avatar,
.award-seal {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(8,120,164,.2);
}

.resource-card span,
.why-card span,
.vision-card span,
.big-number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--secondary);
  font-weight: 950;
}

.promo-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promo-card,
.article-card {
  overflow: hidden;
  border: 1px solid rgba(8, 120, 164, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 86, 117, 0.08);
}

.visual-strip {
  height: 190px;
  background: linear-gradient(135deg, #dff6fb, #ffffff);
  position: relative;
  overflow: hidden;
}

.visual-strip::before,
.visual-strip::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.visual-strip::before {
  width: 170px;
  height: 170px;
  right: -40px;
  top: -40px;
  background: rgba(19,183,165,.28);
  animation: bubbleFloat 6s ease-in-out infinite alternate;
}

.visual-strip::after {
  width: 120px;
  height: 120px;
  left: -30px;
  bottom: -36px;
  background: rgba(8,120,164,.2);
  animation: bubbleFloat 7s ease-in-out infinite alternate-reverse;
}

@keyframes bubbleFloat {
  to {
    transform: translate3d(18px, -16px, 0) scale(1.12);
  }
}

.medical-shape {
  position: absolute;
  inset: 22px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-size: 64px;
  font-weight: 950;
  z-index: 2;
}

.card-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #e9f8fb;
  font-size: 12px;
  font-weight: 850;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

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

.rehab-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f2fafc 100%);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.rehab-visual,
.facility-visual {
  min-height: 500px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 22% 20%, rgba(19,183,165,.22), transparent 26%),
    linear-gradient(145deg, #e7f8fb, #ffffff);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.rehab-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rehab-progress-line {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: drawLine 2.7s ease-in-out infinite alternate;
}

.feature-title {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.feature-copy {
  color: var(--muted);
  line-height: 1.78;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(13, 86, 117, 0.07);
  color: var(--muted);
  line-height: 1.55;
}

.feature-list b {
  color: var(--text);
}

.international-band {
  position: relative;
  overflow: hidden;
  padding: 90px 24px;
  background:
    linear-gradient(135deg, rgba(7,91,130,.95), rgba(10,42,58,.96)),
    radial-gradient(circle at 20% 20%, rgba(19,183,165,.32), transparent 30%);
  color: #fff;
}

.international-band::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, transparent, rgba(255,255,255,.09), transparent, rgba(19,183,165,.18), transparent);
  animation: rotateGlow 18s linear infinite;
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

.international-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.international-content h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.international-content p {
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}

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

.country-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  font-weight: 850;
  transition: transform .25s ease, background .25s ease;
}

.country-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.18);
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid rgba(8, 120, 164, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(13, 86, 117, 0.07);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(19,183,165,.14), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f2fafc 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.booking-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(8,120,164,.1);
  border-radius: 42px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}

.contact-card h2,
.booking-card h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.052em;
}

.contact-card p,
.booking-card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.72;
}

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

.contact-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #eef9fb;
}

.contact-list b {
  color: var(--primary-dark);
}

.contact-list span {
  color: var(--muted);
  text-align: right;
}

.booking-form {
  display: grid;
  gap: 12px;
}

.booking-form .btn {
  min-height: 56px;
}

.footer {
  padding: 38px 24px;
  color: var(--muted);
  text-align: center;
  background: #f2fafc;
}

/* About CTL page */
.page-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 160px 24px 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 22%, rgba(19,183,165,.2), transparent 32%),
    radial-gradient(circle at 80% 14%, rgba(8,120,164,.22), transparent 34%),
    linear-gradient(180deg, #f8fdff 0%, #eef9fb 100%);
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.page-hero-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 7vw, 104px);
  line-height: .9;
  letter-spacing: -.08em;
}

.page-hero-copy p {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.78;
}

.page-hero-visual {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 52px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8,120,164,.96), rgba(19,183,165,.88)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.24), transparent 30%);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}

.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 40deg, transparent, rgba(255,255,255,.22), transparent, rgba(255,255,255,.12), transparent);
  animation: rotateGlow 14s linear infinite;
}

.about-symbol,
.about-symbol-copy {
  position: relative;
  z-index: 2;
}

.about-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: auto;
}

.about-symbol span {
  display: grid;
  place-items: center;
  width: clamp(76px, 10vw, 118px);
  height: clamp(76px, 10vw, 118px);
  border-radius: 32px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 950;
  animation: symbolFloat 5s ease-in-out infinite;
}

.about-symbol span:nth-child(2) {
  animation-delay: .4s;
}

.about-symbol span:nth-child(3) {
  animation-delay: .8s;
}

@keyframes symbolFloat {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(-2deg);
  }
}

.about-symbol-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
  letter-spacing: -.04em;
}

.about-symbol-copy p {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.about-map-section {
  background: #ffffff;
}

.about-menu-map {
  position: relative;
  padding: 26px 26px 26px 78px;
  border: 1px solid rgba(8,120,164,.1);
  border-radius: 42px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.standalone-map {
  width: min(720px, 100%);
  margin: 0 auto;
}

.about-menu-map::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(19,183,165,.12);
}

.map-line {
  position: absolute;
  left: 45px;
  top: 54px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(19,183,165,.2));
}

.map-root,
.map-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 48px;
  margin-bottom: 12px;
  padding: 0 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 86, 117, 0.07);
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.map-root {
  width: fit-content;
  min-width: 210px;
  margin-left: -30px;
  color: #321c1c;
  background: #ffb4b4;
}

.map-root::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  width: 34px;
  height: 2px;
  background: var(--primary);
}

.map-item span {
  position: absolute;
  left: -33px;
  width: 33px;
  height: 2px;
  background: rgba(8,120,164,.42);
}

.map-item:hover,
.map-root:hover {
  transform: translateX(8px) scale(1.012);
  box-shadow: 0 16px 42px rgba(13, 86, 117, 0.13);
}

.about-feature-card,
.career-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,250,253,.96)),
    radial-gradient(circle at 25% 20%, rgba(19,183,165,.18), transparent 30%);
}

.big-number {
  font-size: clamp(64px, 10vw, 120px);
  letter-spacing: -.08em;
  line-height: .8;
}

.facility-visual {
  display: grid;
  place-items: center;
}

.facility-orbit {
  position: relative;
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  border: 1px dashed rgba(8,120,164,.28);
  border-radius: 50%;
  animation: rotateGlow 20s linear infinite;
}

.facility-orbit::before {
  content: "CTL";
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 950;
  font-size: 34px;
  box-shadow: 0 24px 60px rgba(8,120,164,.24);
  animation: rotateReverse 20s linear infinite;
}

.facility-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 18px 44px rgba(13,86,117,.14);
  font-weight: 950;
  animation: rotateReverse 20s linear infinite;
}

.facility-orbit span:nth-child(1) {
  left: 50%;
  top: -37px;
  transform: translateX(-50%);
}

.facility-orbit span:nth-child(2) {
  right: -37px;
  top: 50%;
  transform: translateY(-50%);
}

.facility-orbit span:nth-child(3) {
  left: 50%;
  bottom: -37px;
  transform: translateX(-50%);
}

.facility-orbit span:nth-child(4) {
  left: -37px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes rotateReverse {
  to {
    rotate: -360deg;
  }
}

.career-card .btn {
  width: fit-content;
}

/* Shared motion */
.why-card,
.service-card,
.team-card,
.resource-card,
.promo-card,
.article-card,
.contact-card,
.booking-card,
.vision-card,
.award-card,
.about-feature-card,
.career-card,
.page-hero-visual,
.rehab-visual,
.facility-visual {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform .2s ease, box-shadow .28s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.98);
  filter: blur(8px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 2px 0;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-motion-card,
  .doctor-search-inner,
  .international-content,
  .section-heading,
  .contact-layout,
  .split-feature,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-motion-card {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .service-grid,
  .promo-grid,
  .article-grid,
  .why-grid,
  .team-grid,
  .resource-grid,
  .vision-grid,
  .award-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-visual {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .cursor-glow {
    display: none;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 26px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero-scroll-stage {
    height: auto;
  }

  .hero-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
    padding: 100px 14px 40px;
  }

  .hero-motion-card {
    width: 100%;
    padding: 26px;
    border-radius: 32px;
  }

  h1 {
    font-size: 44px;
  }

  .page-hero {
    padding: 150px 18px 72px;
  }

  .page-hero-copy h1 {
    font-size: 54px;
  }

  .hero-stats,
  .service-grid,
  .promo-grid,
  .article-grid,
  .why-grid,
  .team-grid,
  .resource-grid,
  .vision-grid,
  .award-grid,
  .country-grid,
  .search-row {
    grid-template-columns: 1fr;
  }

  .floating-info.a,
  .floating-info.b,
  .floating-info.c {
    position: static;
    margin: 10px 0;
  }

  .scroll-hint {
    display: none;
  }

  .section {
    padding: 72px 18px;
  }

  .about-menu-map {
    padding: 22px 18px 22px 58px;
  }

  .map-line {
    left: 33px;
  }

  .map-root {
    min-width: auto;
  }

  .map-root::before {
    left: -24px;
    width: 24px;
  }

  .map-item span {
    left: -24px;
    width: 24px;
  }

  .contact-list div {
    display: grid;
  }

  .contact-list span {
    text-align: left;
  }

  .facility-orbit {
    width: 280px;
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .cursor-glow {
    display: none;
  }
}


/* ===== V4 Polish Fixes: shorter menu, stronger motion, cleaner layout ===== */

.site-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  width: min(1520px, calc(100% - 28px));
  padding: 12px 16px;
}

.nav {
  justify-content: flex-end;
  gap: clamp(12px, 1.05vw, 18px);
  font-size: clamp(12px, .82vw, 14px);
}

.nav a {
  letter-spacing: -0.01em;
}

.hero-motion-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(239,250,253,.82)),
    radial-gradient(circle at 18% 20%, rgba(19,183,165,.2), transparent 28%);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow:
    0 46px 130px rgba(8, 61, 82, 0.26),
    inset 0 1px 0 rgba(255,255,255,.78);
}

.hero-motion-card::after {
  animation-duration: 4.8s;
}

.hero-copy h1,
.page-hero-copy h1 {
  text-wrap: balance;
}

.hero-copy p,
.page-hero-copy p {
  text-wrap: pretty;
}

.service-card,
.team-card,
.resource-card,
.why-card,
.vision-card,
.award-card,
.about-feature-card,
.career-card,
.promo-card,
.article-card,
.contact-card,
.booking-card {
  border-color: rgba(8,120,164,.095);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,253,255,.94));
  box-shadow:
    0 20px 52px rgba(13, 86, 117, 0.09),
    inset 0 1px 0 rgba(255,255,255,.88);
}

/* Fix conflict between reveal transform and tilt transform */
.reveal.visible.tilt-card,
.reveal.visible.service-card,
.reveal.visible.team-card,
.reveal.visible.resource-card,
.reveal.visible.why-card,
.reveal.visible.vision-card,
.reveal.visible.award-card,
.reveal.visible.about-feature-card,
.reveal.visible.career-card,
.reveal.visible.promo-card,
.reveal.visible.article-card,
.reveal.visible.contact-card,
.reveal.visible.booking-card,
.reveal.visible.rehab-visual,
.reveal.visible.facility-visual,
.reveal.visible.page-hero-visual {
  transform:
    perspective(1000px)
    translateY(0)
    scale(1)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
}

.reveal.tilt-card:not(.visible),
.reveal.service-card:not(.visible),
.reveal.team-card:not(.visible),
.reveal.resource-card:not(.visible),
.reveal.why-card:not(.visible),
.reveal.vision-card:not(.visible),
.reveal.award-card:not(.visible),
.reveal.about-feature-card:not(.visible),
.reveal.career-card:not(.visible),
.reveal.promo-card:not(.visible),
.reveal.article-card:not(.visible),
.reveal.contact-card:not(.visible),
.reveal.booking-card:not(.visible),
.reveal.rehab-visual:not(.visible),
.reveal.facility-visual:not(.visible),
.reveal.page-hero-visual:not(.visible) {
  transform:
    perspective(1000px)
    translateY(44px)
    scale(.965)
    rotateX(0deg)
    rotateY(0deg);
}

.tilt-card:hover,
.service-card:hover,
.team-card:hover,
.resource-card:hover,
.why-card:hover,
.vision-card:hover,
.award-card:hover,
.about-feature-card:hover,
.career-card:hover,
.promo-card:hover,
.article-card:hover,
.contact-card:hover,
.booking-card:hover {
  box-shadow:
    0 34px 100px rgba(13, 86, 117, 0.18),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.motion-marquee {
  box-shadow: 0 20px 60px rgba(13,86,117,.08);
}

.marquee-track span {
  box-shadow: inset 0 0 0 1px rgba(8,120,164,.08);
}

.about-menu-map {
  border-radius: 48px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,252,254,.88)),
    radial-gradient(circle at 90% 10%, rgba(19,183,165,.16), transparent 28%);
  box-shadow:
    0 36px 100px rgba(13,86,117,.13),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.map-root,
.map-item {
  min-height: 52px;
  border: 1px solid rgba(8,120,164,.07);
}

.map-root {
  color: #371f1f;
  background: linear-gradient(135deg, #ffb4b4, #ffd0c8);
}

.map-item:hover,
.map-root:hover {
  background: #ffffff;
  transform: translateX(12px) scale(1.018);
}

.page-hero-visual {
  box-shadow:
    0 52px 140px rgba(8,61,82,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 38px;
  pointer-events: none;
}

.about-symbol span {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 24px 64px rgba(4,42,58,.18);
}

.facility-orbit {
  box-shadow:
    0 30px 90px rgba(13,86,117,.12),
    inset 0 0 0 14px rgba(255,255,255,.38);
}

.contact-card,
.booking-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(241,250,253,.9));
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: auto auto;
    align-items: start;
    border-radius: 30px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 2px 4px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 12px;
  }

  .nav {
    font-size: 12px;
  }

  .hero-motion-card {
    box-shadow: 0 30px 90px rgba(8,61,82,.18);
  }
}


/* ===== V5 Marquee Fix: keep highlight bar inside frame ===== */

.motion-marquee {
  position: relative !important;
  z-index: 5 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  padding: 18px 0 !important;
  margin: 0 !important;
  border-top: 1px solid rgba(8, 120, 164, 0.10) !important;
  border-bottom: 1px solid rgba(8, 120, 164, 0.10) !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(239,250,253,0.92), rgba(255,255,255,0.96)) !important;
  box-shadow: 0 20px 60px rgba(13, 86, 117, 0.08) !important;
}

.marquee-mask {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  white-space: nowrap !important;
  gap: 16px !important;
  animation: marqueeLoop 26s linear infinite !important;
  will-change: transform !important;
}

.marquee-group {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  gap: 16px !important;
  white-space: nowrap !important;
}

.marquee-track span,
.marquee-group span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  min-height: 42px !important;
  padding: 0 18px !important;
  border: 1px solid rgba(8, 120, 164, 0.10) !important;
  border-radius: 999px !important;
  color: #075b82 !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(232,248,251,0.96)) !important;
  box-shadow:
    0 12px 32px rgba(13,86,117,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95) !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  white-space: nowrap !important;
}

.marquee-track span::before,
.marquee-group span::before {
  content: "" !important;
  display: inline-block !important;
  width: 8px !important;
  height: 8px !important;
  margin-right: 10px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #0878a4, #13b7a5) !important;
  box-shadow: 0 0 0 4px rgba(19,183,165,0.10) !important;
}

.motion-marquee:hover .marquee-track {
  animation-play-state: paused !important;
}

@keyframes marqueeLoop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }
}

@media (max-width: 760px) {
  .motion-marquee {
    padding: 14px 0 !important;
  }

  .marquee-track,
  .marquee-group {
    gap: 10px !important;
  }

  .marquee-track span,
  .marquee-group span {
    min-height: 36px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
  }
}


/* =========================================================
   CLEAN CONTACT + BOOKING COMPONENT
   Uses only .contact-shell namespace to avoid legacy CSS conflicts.
   ========================================================= */

.contact-shell,
.contact-shell * {
  box-sizing: border-box;
}

.contact-shell {
  position: relative;
  display: block;
  width: 100%;
  padding: 120px 24px 118px;
  background:
    radial-gradient(circle at 12% 18%, rgba(19, 183, 165, 0.18), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(8, 120, 164, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #eef9fb 100%);
  overflow: hidden;
}

.contact-shell::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,120,164,.22), transparent);
}

.contact-shell-container {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.contact-shell-heading {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .28fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 0 16px;
  border: 1px solid rgba(8, 120, 164, 0.14);
  border-radius: 999px;
  color: #075b82;
  background: rgba(232, 248, 251, 0.92);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.contact-shell-heading h2 {
  margin: 0;
  color: #16323f;
  font-size: clamp(38px, 5vw, 78px);
  line-height: .96;
  letter-spacing: -0.075em;
}

.contact-shell-heading p {
  margin: 0;
  color: #637986;
  font-size: 17px;
  line-height: 1.75;
}

.contact-booking-grid {
  display: grid;
  grid-template-columns: minmax(320px, .94fr) minmax(420px, 1.06fr);
  gap: 30px;
  align-items: stretch;
  width: 100%;
}

.contact-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 620px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 48px;
  overflow: hidden;
  box-shadow:
    0 42px 120px rgba(13, 86, 117, 0.16),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.contact-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -125px;
  top: -125px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  animation: contactOrb 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.contact-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 34px;
  pointer-events: none;
}

.contact-panel-info {
  color: #16323f;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,250,253,.91));
}

.contact-panel-info::before {
  background: radial-gradient(circle, rgba(19,183,165,.28), rgba(8,120,164,.08) 52%, transparent 72%);
}

.booking-panel-clean {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(8,120,164,.98), rgba(19,183,165,.90)),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.30), transparent 36%);
}

.booking-panel-clean::before {
  background: radial-gradient(circle, rgba(255,255,255,.28), rgba(255,255,255,.08) 48%, transparent 72%);
}

.contact-pill-light {
  color: #ffffff;
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.14);
}

.contact-panel h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.contact-panel-info h3 {
  color: #16323f;
}

.booking-panel-clean h3 {
  color: #ffffff;
}

.contact-panel p {
  margin: 0 0 28px;
  max-width: 680px;
  font-size: 16px;
  line-height: 1.76;
}

.contact-panel-info p {
  color: #637986;
}

.booking-panel-clean p {
  color: rgba(255,255,255,.84);
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 4px;
}

.contact-method {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(8,120,164,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow:
    0 16px 44px rgba(13,86,117,.08),
    inset 0 1px 0 rgba(255,255,255,.96);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-method:hover {
  transform: translateX(8px) scale(1.01);
  background: #ffffff;
  box-shadow:
    0 24px 72px rgba(13,86,117,.14),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.contact-method-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #0878a4, #13b7a5);
  box-shadow: 0 16px 38px rgba(8,120,164,.22);
  font-weight: 950;
  font-size: 15px;
}

.contact-method strong {
  display: block;
  margin: 0 0 4px;
  color: #16323f;
  font-size: 14px;
  font-weight: 900;
}

.contact-method a,
.contact-method span {
  display: block;
  color: #637986;
  font-size: 15px;
  line-height: 1.42;
  word-break: break-word;
}

.contact-note {
  margin-top: auto;
  padding: 18px 20px;
  border: 1px solid rgba(19,183,165,.18);
  border-radius: 24px;
  color: #075b82;
  background: linear-gradient(135deg, rgba(232,248,251,.98), rgba(255,255,255,.88));
  font-weight: 850;
  line-height: 1.55;
}

.booking-clean-form {
  display: grid;
  gap: 15px;
  margin-top: 2px;
}

.booking-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.booking-clean-form label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.booking-clean-form label > span {
  color: rgba(255,255,255,.90);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}

.booking-clean-form input,
.booking-clean-form select,
.booking-clean-form textarea {
  display: block;
  width: 100%;
  min-height: 58px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 20px;
  outline: none;
  color: #ffffff;
  background: rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 14px 38px rgba(4,42,58,.08);
  backdrop-filter: blur(10px);
  font-family: inherit;
  font-size: 15px;
  font-weight: 750;
  appearance: auto;
}

.booking-clean-form textarea {
  min-height: 118px;
  padding-top: 16px;
  resize: vertical;
}

.booking-clean-form input::placeholder,
.booking-clean-form textarea::placeholder {
  color: rgba(255,255,255,.62);
}

.booking-clean-form select option {
  color: #16323f;
  background: #ffffff;
}

.booking-clean-form input:focus,
.booking-clean-form select:focus,
.booking-clean-form textarea:focus {
  border-color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.23);
  box-shadow:
    0 0 0 4px rgba(255,255,255,.13),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.booking-submit-clean {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 58px;
  margin-top: 8px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #075b82;
  background: #ffffff;
  box-shadow:
    0 18px 42px rgba(4,42,58,.18),
    inset 0 1px 0 rgba(255,255,255,.95);
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.booking-submit-clean:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 66px rgba(4,42,58,.22),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.keep-book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 4px 0 28px;
}

.keep-book-grid div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 16px 40px rgba(4,42,58,.09);
}

.keep-book-grid strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.keep-book-grid span {
  display: block;
  color: #ffffff;
  font-weight: 850;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .contact-shell-heading,
  .contact-booking-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .contact-shell {
    padding: 76px 18px;
  }

  .contact-panel {
    padding: 26px;
    border-radius: 32px;
  }

  .booking-form-row,
  .keep-book-grid {
    grid-template-columns: 1fr;
  }

  .contact-method {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .contact-method-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
  }

  .booking-submit-clean {
    width: 100%;
  }
}
