/* =================== RESET & BASE =================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #faf8f4;
  color: #1a1a2e;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =================== CUSTOM PROPERTIES =================== */
:root {
  --navy:       #0c1a2e;
  --navy-mid:   #142444;
  --navy-light: #1e3455;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --cream:      #faf8f4;
  --cream-dark: #f0ede6;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --border:     rgba(255,255,255,0.08);
}

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-top: 0.5rem;
}

/* =================== NAV =================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  background: rgba(12, 26, 46, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.nav-name {
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0c1a2e 0%, #142444 50%, #1e3455 100%);
  z-index: 0;
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.geo-1 {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -100px; right: -50px;
}

.geo-2 {
  width: 300px; height: 300px;
  background: #4a9eff;
  bottom: 50px; left: 200px;
}

.geo-3 {
  width: 200px; height: 200px;
  background: #ffffff;
  bottom: 0; right: 30%;
  opacity: 0.04;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-num {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* Hero illustration */
.hero-illustration {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  width: 320px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.card-dots {
  display: flex;
  gap: 5px;
}

.card-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.card-dots span:first-child { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #febc2e; }
.card-dots span:last-child { background: #28c840; }

.card-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.card-steps {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  opacity: 0.4;
}

.step.done { opacity: 1; }
.step.active { opacity: 1; }

.step-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.step.done .step-icon {
  background: var(--gold);
  color: var(--navy);
}

.step-pulse {
  background: #28c840;
  animation: pulse 2s ease-in-out infinite;
}

.step-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.step-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
}

.badge-icon {
  font-size: 0.5rem;
  color: #28c840;
}

/* =================== STATS =================== */
.stats {
  background: var(--navy);
  padding: 3rem 2rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 3rem;
  text-align: center;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}

/* =================== SERVICES =================== */
.services {
  padding: 7rem 2rem;
  background: var(--cream);
}

.services-inner { max-width: 1200px; margin: 0 auto; }

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}

.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.65); }
.service-card.featured .service-icon { color: var(--gold); }
.service-card.featured .service-tag { background: rgba(201,168,76,0.15); color: var(--gold); }

.service-icon {
  color: var(--navy);
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.service-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--cream-dark);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* =================== HOSPITALS =================== */
.hospitals {
  padding: 7rem 2rem;
  background: var(--cream-dark);
}

.hospitals-inner { max-width: 1200px; margin: 0 auto; }

.hospitals-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.hospitals-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding-top: 1rem;
}

.hospitals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hosp-card {
  padding: 1.8rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.hosp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.hosp-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hosp-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.hosp-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.hosp-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.spec {
  padding: 0.25rem 0.6rem;
  background: var(--cream-dark);
  border-radius: 4px;
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 500;
}

.hospitals-cta {
  text-align: center;
  padding-top: 1rem;
}

.hospitals-cta p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

/* =================== PROCESS =================== */
.process {
  padding: 7rem 2rem;
  background: var(--cream);
}

.process-inner { max-width: 1200px; margin: 0 auto; }

.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.process-step {
  flex: 1;
  position: relative;
  padding-right: 2rem;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 2rem;
  flex-shrink: 0;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.process-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.process-content p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* =================== TESTIMONIALS =================== */
.testimonials {
  padding: 7rem 2rem;
  background: var(--navy);
}

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonials .section-head { text-align: center; }
.testimonials .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
}

.author-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* =================== CLOSING =================== */
.closing {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #0c1a2e 0%, #142444 100%);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.closing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.closing-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =================== FOOTER =================== */
.footer {
  background: #08111f;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  margin-top: 0.4rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hospitals-grid { grid-template-columns: repeat(2, 1fr); }
  .hospitals-head { grid-template-columns: 1fr; gap: 1rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 5rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-illustration { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .hospitals-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-timeline { flex-direction: column; }
  .process-connector { width: 2px; height: 30px; margin: 0.5rem 0; }
  .process-connector::after { right: auto; top: auto; bottom: 0; left: -4px; }
  .stats-inner { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .stat-sep { display: none; }
  .stat-block { padding: 0 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .closing-headline { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.2rem 3rem; }
  .services, .hospitals, .process, .testimonials, .closing { padding: 5rem 1.2rem; }
  .hero-actions { flex-direction: column; }
  .closing-actions { flex-direction: column; align-items: stretch; }
  .closing-actions .btn-primary,
  .closing-actions .btn-ghost { justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
}