/* ══════════════════════════════════════════
   CROTAL MEDICAL — Stylesheet
   ══════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --navy: #1a1f5e;
  --teal: #2abfbf;
  --teal-light: #4dd9d9;
  --teal-dark: #1a9898;
  --white: #ffffff;
  --off-white: #f8fafb;
  --text-dark: #111827;
  --text-mid: #4b5563;
  --text-light: #9ca3af;
  --gold: #c9a84c;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s ease, opacity 0.3s;
  opacity: 0.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 84px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 191, 191, 0.12);
  transition: all 0.4s ease;
  overflow: hidden;
}

nav.scrolled {
  height: 68px;
  padding: 0 60px;
  box-shadow: 0 4px 40px rgba(26, 31, 94, 0.08);
}

.nav-logo img {
  height: 160px;
  max-height: 160px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  transition: background 0.3s !important;
}

.nav-cta:hover { background: var(--teal) !important; }
.nav-cta::after { display: none !important; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 191, 191, 0.08);
  border: 1px solid rgba(42, 191, 191, 0.25);
  padding: 7px 16px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 32px;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--teal);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 1s forwards;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid var(--navy);
  transition: all 0.3s;
  cursor: none;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-right {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
}

.hero-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    linear-gradient(to top, rgba(26, 31, 94, 0.3) 0%, transparent 50%);
}

.hero-img-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 20px 28px;
  border-radius: 4px;
  border-left: 4px solid var(--teal);
  box-shadow: 0 20px 60px rgba(26, 31, 94, 0.15);
}

.hero-img-badge strong {
  display: block;
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1;
}

.hero-img-badge span {
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 0.08em;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 5;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy);
  padding: 36px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SECTION COMMONS ── */
section { padding: 100px 80px; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--teal);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

/* ── SERVICES ── */
#services { background: var(--off-white); }

.services-header {
  max-width: 560px;
  margin-bottom: 60px;
}

.services-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(26, 31, 94, 0.06);
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: none;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--teal);
  transition: width 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 31, 94, 0.1);
}

.service-card:hover::after { width: 100%; }

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 191, 191, 0.08);
  border-radius: 4px;
  color: var(--teal);
  font-size: 22px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── PROCESS ── */
#process { background: var(--white); }

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.process-visual {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 560px;
}

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

.process-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 31, 94, 0.5) 0%, rgba(42, 191, 191, 0.2) 100%);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 4px;
  transition: background 0.3s;
  cursor: none;
}

.step-item:hover { background: rgba(42, 191, 191, 0.04); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: rgba(42, 191, 191, 0.3);
  line-height: 1;
  min-width: 40px;
  transition: color 0.3s;
}

.step-item:hover .step-num { color: var(--teal); }

.step-body h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── PACKAGES ── */
#packages { background: var(--navy); }

#packages .section-eyebrow { color: var(--teal-light); }
#packages .section-eyebrow::before { background: var(--teal-light); }
#packages .section-title { color: var(--white); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.pkg-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: none;
}

.pkg-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(42, 191, 191, 0.3);
  transform: translateY(-8px);
}

.pkg-card.featured {
  background: var(--teal);
  border-color: var(--teal);
}

.pkg-card.featured:hover { background: var(--teal-light); }

.pkg-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.pkg-name {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.pkg-card.featured .pkg-name { color: rgba(255, 255, 255, 0.8); }

.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.pkg-currency {
  font-size: 22px;
  vertical-align: super;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.pkg-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  font-style: italic;
}

.pkg-card.featured .pkg-desc { color: rgba(255, 255, 255, 0.75); }

.pkg-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.pkg-card.featured .pkg-divider { background: rgba(255, 255, 255, 0.25); }

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.pkg-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.pkg-card.featured .pkg-features li { color: var(--white); }

.pkg-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 14px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  cursor: none;
}

.pkg-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.pkg-btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.pkg-btn-solid {
  background: var(--navy);
  color: var(--white);
}

.pkg-btn-solid:hover {
  background: var(--navy);
  opacity: 0.85;
}

.pkg-note {
  margin-top: 44px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--teal);
  border-radius: 0 4px 4px 0;
}

.pkg-note p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.pkg-note strong { color: rgba(255, 255, 255, 0.9); }

/* ── ADDONS ── */
#addons { background: var(--off-white); }

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.addon-card {
  background: var(--white);
  padding: 28px;
  border-radius: 4px;
  border: 1px solid rgba(26, 31, 94, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
  cursor: none;
}

.addon-card:hover {
  border-color: rgba(42, 191, 191, 0.3);
  box-shadow: 0 8px 30px rgba(26, 31, 94, 0.06);
}

.addon-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(42, 191, 191, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.addon-body h4 {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.addon-body p {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}

.addon-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-dark);
}

/* ── ABOUT ── */
#about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.about-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

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

.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(255, 255, 255, 0.08) 100%);
}

.about-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 28px 0;
  padding-left: 24px;
  border-left: 3px solid var(--teal);
}

.about-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.about-tag {
  background: rgba(42, 191, 191, 0.08);
  color: var(--teal-dark);
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(42, 191, 191, 0.2);
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--off-white); }

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

.testi-card {
  background: var(--white);
  padding: 36px;
  border-radius: 4px;
  border: 1px solid rgba(26, 31, 94, 0.05);
  transition: all 0.3s;
  position: relative;
}

.testi-card:hover {
  box-shadow: 0 12px 40px rgba(26, 31, 94, 0.08);
  transform: translateY(-4px);
}

.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: rgba(42, 191, 191, 0.15);
  line-height: 0.7;
  margin-bottom: 16px;
  display: block;
}

.testi-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(42, 191, 191, 0.2);
}

.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.testi-origin {
  font-size: 12px;
  color: var(--text-light);
}

.testi-stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 4px;
}

/* ── FAQ ── */
#faq { background: var(--white); }

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar .section-title { font-size: clamp(28px, 3vw, 44px); }

.faq-sidebar p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 32px;
}

.faq-contact {
  background: rgba(42, 191, 191, 0.06);
  padding: 24px;
  border-radius: 4px;
  border: 1px solid rgba(42, 191, 191, 0.15);
}

.faq-contact p {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0 0 12px;
}

.faq-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--teal-dark);
  font-weight: 500;
  text-decoration: none;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid rgba(26, 31, 94, 0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(42, 191, 191, 0.3); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.3s;
  user-select: none;
}

.faq-item.open .faq-q { color: var(--teal-dark); }

.faq-chevron {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 12px;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 0 24px;
}

.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── CONTACT ── */
#contact {
  background: var(--navy);
  padding: 100px 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

#contact .section-eyebrow { color: var(--teal-light); }
#contact .section-eyebrow::before { background: var(--teal-light); }
#contact .section-title { color: var(--white); }

.contact-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-top: 20px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.3s;
  cursor: none;
}

.contact-channel:hover {
  background: rgba(42, 191, 191, 0.1);
  border-color: rgba(42, 191, 191, 0.3);
}

.contact-ch-icon {
  width: 40px;
  height: 40px;
  background: rgba(42, 191, 191, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-ch-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-ch-value {
  font-size: 14.5px;
  color: var(--white);
  font-weight: 500;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 44px;
}

.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 400;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 13px 16px;
  border-radius: 2px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s;
  outline: none;
  cursor: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-field select option { background: var(--navy); }
.form-field textarea { resize: vertical; min-height: 100px; }

.form-submit {
  margin-top: 20px;
  width: 100%;
  background: var(--teal);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
  cursor: none;
}

.form-submit:hover { background: var(--teal-light); }

/* ── FOOTER ── */
footer {
  background: #0d1240;
  padding: 60px 80px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 160px;
  margin-bottom: 160px;
  filter: brightness(10);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-size: 26px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: none;
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 1024px) {
  nav { padding: 16px 32px; }
  .nav-links { gap: 20px; }
  section { padding: 70px 40px; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 40px 60px; }
  .hero-right { height: 400px; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 36px 40px; gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 24px; }
  .stat-item:nth-child(2n) { border-bottom: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout { grid-template-columns: 1fr; }
  .process-visual { height: 300px; }

  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 48px auto 0; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }

  #about { grid-template-columns: 1fr; }
  .about-visual { height: 320px; }
  .about-content { padding: 60px 40px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  section { padding: 60px 20px; }
  .hero-left { padding: 100px 20px 50px; }
  .stats-strip { padding: 30px 20px; }
  .addons-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  #contact { padding: 60px 20px; }
  footer { padding: 40px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ══════════════════════════════════════════
   MENU HAMBURGER MOBILE
   ══════════════════════════════════════════ */

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.mobile-menu-close:hover { opacity: 1; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 32px;
}

.mobile-menu ul li a {
  display: block;
  text-align: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  width: 100%;
  transition: color 0.2s;
}

.mobile-menu ul li a:hover { color: var(--teal); }

.mobile-menu ul li:last-child a { border-bottom: none; }

.mobile-cta {
  margin-top: 16px;
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: 2px;
  border-bottom: none !important;
}

@media (max-width: 640px) {
  .nav-burger { display: flex; }
}
/* ══════════════════════════════════════════
   GALERIE PATIENTS (défilement auto droite → gauche)
   ══════════════════════════════════════════ */
#patients {
  background: var(--off-white);
  padding: 100px 0;
  overflow: hidden;
}

.patients-header {
  max-width: 600px;
  margin: 0 auto 56px;
  padding: 0 40px;
  text-align: center;
}

.patients-header .section-eyebrow { justify-content: center; }

.patients-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

.gallery-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: galleryScroll 60s linear infinite;
}

.gallery-marquee:hover .gallery-track { animation-play-state: paused; }

.gallery-card {
  flex: 0 0 auto;
  width: 260px;
  height: 340px;
  margin-right: 24px;
  border-radius: 6px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 14px 40px rgba(26, 31, 94, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img { transform: scale(1.06); }

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

@media (max-width: 640px) {
  #patients { padding: 60px 0; }
  .gallery-card { width: 200px; height: 270px; margin-right: 16px; }
}