/* ================================================
   MEDIKAL KILO YÖNETIMI - Light Premium Design
   Online Artsconsult Landing Page
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-white: #ffffff;
  --bg-cream: #faf8f5;
  --bg-light: #f5f2ee;
  --bg-warm: #f0ece6;
  --bg-card: #ffffff;

  --navy: #1a2332;
  --navy-light: #2a3a4e;
  --navy-muted: #4a5568;

  --gold: #f89c1e;
  --gold-light: #ffa938;
  --gold-dark: #d38012;
  --gold-bg: rgba(248, 156, 30, 0.08);
  --gold-border: rgba(248, 156, 30, 0.2);

  --teal: #2a9d8f;
  --teal-light: #40b4a6;
  --teal-bg: rgba(42, 157, 143, 0.06);

  --text-primary: #1a2332;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;

  --border: rgba(26, 35, 50, 0.08);
  --border-hover: rgba(26, 35, 50, 0.15);

  --shadow-sm: 0 1px 3px rgba(26, 35, 50, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 35, 50, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 35, 50, 0.1);
  --shadow-xl: 0 16px 48px rgba(26, 35, 50, 0.12);
  --shadow-gold: 0 4px 20px rgba(248, 156, 30, 0.2);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-padding: 100px;
  --container-width: 1140px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; outline: none; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--bg-white);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: 1.5px solid var(--border-hover);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-bg);
  transform: translateY(-2px);
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
  background: rgba(255,255,255,0);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.navbar-brand-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.navbar-link:hover { color: var(--navy); }

.navbar-cta {
  padding: 10px 28px;
  background: var(--navy);
  color: white;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.navbar-cta:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.navbar-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--bg-cream) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 151, 106, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  width: fit-content;
  letter-spacing: 0.5px;
}

.hero-label .dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Trust Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.hero-badge .badge-icon {
  font-size: 1rem;
}

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================
   BMI CALCULATOR
   ================================================ */
.bmi-section {
  background: var(--bg-cream);
}

.bmi-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.bmi-card-header {
  text-align: center;
  margin-bottom: 36px;
}

.bmi-card-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.bmi-card-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================================
   BMI CALCULATOR (Obesity Style - Premium Gauge)
   ================================================ */
.bmi-wrapper {
  width: 100%;
}

.bmi-calculator {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.bmi-calculator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2dd4bf, #22c55e, #eab308, #f97316, #ef4444);
}

.bmi-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.bmi-input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bmi-input-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.bmi-input-row {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--bg-cream);
}

.bmi-input-row:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 35, 50, 0.05);
}

.bmi-input-row input {
  flex: 1;
  padding: 14px 18px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
}

.bmi-unit {
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--bg-light);
  border-left: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Custom Range Slider */
.bmi-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--bg-light);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  margin-top: 4px;
}

.bmi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.bmi-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.bmi-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-sm);
}

.bmi-calculate-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-top: 8px;
}

.bmi-calculate-btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* BMI Result Side */
.bmi-result-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  justify-content: center;
}

.bmi-gauge-container {
  width: 220px;
  height: 120px;
  position: relative;
}

.bmi-gauge {
  width: 100%;
  height: 100%;
}

.bmi-value-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: -10px;
}

.bmi-value {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  transition: color 0.5s ease;
}

.bmi-value-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.bmi-category {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  padding: 8px 24px;
  border-radius: 50px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

.bmi-category.underweight { color: #2dd4bf; border-color: rgba(45, 212, 191, 0.3); background: rgba(45, 212, 191, 0.08); }
.bmi-category.normal { color: #22c55e; border-color: rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.08); }
.bmi-category.overweight { color: #eab308; border-color: rgba(234, 179, 8, 0.3); background: rgba(234, 179, 8, 0.08); }
.bmi-category.obese { color: #f97316; border-color: rgba(249, 115, 22, 0.3); background: rgba(249, 115, 22, 0.08); }
.bmi-category.morbid { color: #ef4444; border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.08); }

.bmi-info-box {
  width: 100%;
  margin-top: 4px;
  animation: fadeIn 0.5s ease;
}

.bmi-info-box p {
  padding: 14px 20px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: center;
}

.bmi-result-cta {
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  text-align: center;
}

.bmi-result-cta p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  border: none;
  background: transparent;
  padding: 0;
}

.bmi-result-cta .btn-primary {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* BMI Legend */
.bmi-legend {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.bmi-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.bmi-legend-color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bmi-disclaimer {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 14px 20px;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

/* ================================================
   TRUST SECTION
   ================================================ */
.trust {
  background: var(--bg-white);
}

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

.trust-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.trust-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trust-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================================
   PROCESS STEPS
   ================================================ */
.process {
  background: var(--bg-cream);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-border), var(--border));
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.process-step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--bg-white);
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process-step:hover .process-step-number {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.process-step-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

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

/* ================================================
   TREATMENTS
   ================================================ */
.treatments {
  background: var(--bg-white);
}

.treatments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.treatment-card {
  padding: 40px 32px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.treatment-card:hover::before { transform: scaleX(1); }

.treatment-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.treatment-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.treatment-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.treatments-note {
  max-width: 700px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 16px 24px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-border);
  font-style: italic;
}

/* ================================================
   PREMIUM CONSULTATION
   ================================================ */
.premium {
  background: var(--bg-cream);
}

.premium-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.premium-content .section-title { margin-bottom: 16px; }

.premium-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.premium-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.premium-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: var(--gold-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.premium-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ================================================
   DOCTOR BIO SECTION
   ================================================ */
.doctor-section {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.doctor-image-side {
  display: flex;
  justify-content: center;
}

.doctor-image-frame {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--bg-white);
  background: var(--bg-white);
}

.doctor-image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.doctor-info-side {
  display: flex;
  flex-direction: column;
}

.doctor-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 4px;
}

.doctor-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.doctor-bio {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.doctor-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.doctor-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.doctor-stat-item:hover {
  border-color: var(--gold-border);
  transform: translateX(4px);
}

.stat-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.doctor-stat-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
}

.doctor-stat-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .doctor-image-frame {
    max-width: 320px;
  }
}

/* ================================================
   ELIGIBILITY
   ================================================ */
.eligibility {
  background: var(--bg-white);
}

.eligibility-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.eligibility-item:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-sm);
}

.eligibility-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--teal-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
}

.eligibility-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================
   PATIENT TESTIMONIALS SECTION
   ================================================ */
.testimonials {
  background: var(--bg-white);
}

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

.testimonial-card {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px dashed var(--border);
  padding-top: 18px;
}

.author-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ================================================
   CAUTION SECTION
   ================================================ */
.caution {
  background: var(--bg-cream);
}

.caution-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold);
}

.caution-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.caution-box p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  background: var(--navy);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 151, 106, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section .section-title { color: white; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.7); }

.cta-section .btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.cta-section .btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

/* ================================================
   FAQ
   ================================================ */
.faq {
  background: var(--bg-cream);
}

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question:hover { background: var(--bg-cream); }

.faq-question h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-dark);
  transition: all var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--navy);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ================================================
   TRUST FOOTER & DISCLAIMER
   ================================================ */
.trust-footer {
  background: var(--bg-white);
  text-align: center;
}

.trust-footer-content {
  max-width: 700px;
  margin: 0 auto;
}

.trust-footer h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

.trust-footer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.disclaimer {
  background: var(--bg-cream);
  padding: 40px 0;
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  padding: 20px 28px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.disclaimer h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy);
  padding: 50px 0 30px;
  color: rgba(255,255,255,0.6);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-contact-info {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-info strong {
  color: white;
  font-weight: 600;
}

.footer-contact-info a {
  color: var(--gold-light);
  transition: color var(--transition);
}

.footer-contact-info a:hover {
  color: white;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

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

.footer p {
  font-size: 0.78rem;
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
}

/* Scroll Top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--navy-light); transform: translateY(-3px); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  :root { --section-padding: 70px; }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { align-items: center; }
  .hero-description { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-image { display: block; margin-top: 35px; width: 100%; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-padding: 50px; }

  .navbar-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 90px 30px 40px;
    gap: 20px;
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
  }

  .navbar-menu.active { right: 0; }
  .navbar-toggle { display: flex; }

  .bmi-calculator { grid-template-columns: 1fr; gap: 32px; padding: 24px; }
  .bmi-card { padding: 28px; }

  .trust-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .premium-grid { grid-template-columns: repeat(2, 1fr); }

  .caution-box { padding: 28px; }

  .hero-badges { flex-direction: column; align-items: center; }

  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .premium-grid { grid-template-columns: 1fr; }
}

/* ================================================
   ONLINE CONSULTATION MODAL SYSTEM
   ================================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26, 35, 50, 0.5);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--bg-white);
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  border: 1px solid var(--border);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
  line-height: 1;
}

.modal-close:hover {
  color: var(--navy);
}

/* Modal Progress Bar */
.modal-progress {
  position: relative;
  margin-bottom: 40px;
  background: var(--bg-light);
  height: 4px;
  border-radius: 2px;
}

.progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.progress-steps {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

.progress-step {
  width: 28px;
  height: 28px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.progress-step.active {
  border-color: var(--gold);
  background: var(--navy);
  color: white;
}

.progress-step.completed {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--bg-cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

/* Question Radio Options */
.form-question-group {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.form-question-group p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.radio-options {
  display: flex;
  gap: 24px;
}

.radio-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.radio-options input[type="radio"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Modal BMI box */
.modal-bmi-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  animation: fadeIn 0.4s ease;
}

.modal-bmi-box span {
  font-size: 0.85rem;
  color: var(--navy-muted);
}

.modal-bmi-box strong {
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
}

.modal-bmi-box .bmi-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Summary Box */
.summary-box {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 20px;
}

.summary-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.summary-box p strong {
  color: var(--navy);
}

.safety-summary-warning {
  margin-top: 14px;
  padding: 10px 14px;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
  font-size: 0.8rem;
  border-radius: 4px;
  line-height: 1.4;
}

.form-consent-check {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.form-consent-check label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.form-consent-check input {
  accent-color: var(--gold);
  margin-top: 2px;
  cursor: pointer;
}

/* Modal Nav Footer */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.btn-modal-nav {
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-prev {
  background: var(--bg-light);
  color: var(--text-secondary);
}

.btn-prev:hover {
  background: var(--bg-warm);
}

.btn-next,
.btn-submit {
  background: var(--navy);
  color: white;
}

.btn-next:hover,
.btn-submit:hover {
  background: var(--navy-light);
}

/* Modal Success State */
.modal-success {
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 0.4s ease;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: #dcfce7;
  color: #15803d;
  font-size: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-success h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

@media (max-width: 576px) {
  .modal-card {
    padding: 24px;
  }
  .modal-close {
    top: 16px;
    right: 16px;
  }
}

/* Digital Confirmation Declaration */
.digital-confirmation-box {
  background: var(--bg-cream);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  animation: fadeIn 0.4s ease;
}

.confirmation-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.confirmation-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
}

.confirmation-checkbox-label {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 14px;
}

.confirmation-checkbox-label input {
  accent-color: var(--gold);
  margin-top: 3px;
  cursor: pointer;
}

.signature-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}

.signature-input-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: none;
  letter-spacing: 0;
}

.signature-input-group input {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-white);
  color: var(--navy);
  text-align: center;
  letter-spacing: 1px;
}

.signature-input-group input:focus {
  border-color: var(--gold);
}

/* ================================================
   BLOG & NEWS SECTION
   ================================================ */
.blog-section {
  background: var(--bg-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.blog-card-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--bg-light);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 14px;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-card-meta::before {
  content: "📰";
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
  transition: color var(--transition);
}

.blog-card:hover .blog-card-title {
  color: var(--gold);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  align-self: flex-start;
  transition: color var(--transition);
}

.blog-card-link:hover {
  color: var(--gold-light);
}

.blog-card-link::after {
  content: " →";
  transition: transform var(--transition);
}

.blog-card-link:hover::after {
  transform: translateX(4px);
}

/* ================================================
   BLOG ARTICLE DETAIL MODAL
   ================================================ */
.blog-modal-card {
  background: var(--bg-white);
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  border: 1px solid var(--border);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal-header {
  margin-bottom: 24px;
}

.blog-modal-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.blog-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}

.blog-modal-img-wrapper {
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
  border: 1px solid var(--border);
}

.blog-modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-content {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.blog-modal-content p {
  margin-bottom: 20px;
}

.blog-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 30px 0 15px;
}

.blog-modal-content ul, .blog-modal-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-modal-content li {
  margin-bottom: 8px;
}

/* Compact Medical Questions Layout */
.question-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.question-row p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  flex-grow: 1;
  line-height: 1.4;
}

.question-row .radio-options {
  flex-shrink: 0;
}

.question-detail-input {
  display: none;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
}

.question-detail-input input, .question-detail-input textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.82rem;
  outline: none;
}

.question-detail-input input:focus, .question-detail-input textarea:focus {
  border-color: var(--gold);
}

/* EMA EPAR Download Buttons Hover and Transition styling */
.ema-download-btn {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.ema-approval-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .ema-approval-grid {
    grid-template-columns: 1fr;
  }
}

.ema-trust-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #ffffff;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.ema-trust-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ema-download-btn-nl {
  background: var(--gold) !important;
  color: var(--bg-white) !important;
  border-color: var(--gold) !important;
}

.ema-download-btn-nl:hover {
  background: var(--bg-white) !important;
  color: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  box-shadow: 0 6px 18px rgba(248, 156, 30, 0.15);
  transform: translateY(-2px);
}

.ema-download-btn-en {
  background: var(--navy) !important;
  color: var(--bg-white) !important;
  border-color: var(--navy) !important;
}

.ema-download-btn-en:hover {
  background: var(--bg-white) !important;
  color: var(--navy) !important;
  border-color: var(--navy) !important;
  box-shadow: 0 6px 18px rgba(26, 35, 50, 0.15);
  transform: translateY(-2px);
}

/* ---- Hero Interactive Weight Estimator Card ---- */
.hero-calc-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.hero-calc-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.ruler-selector-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.ruler-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ruler-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 65px;
  user-select: none;
}

.ruler-val {
  font-size: 1.05rem;
  color: var(--text-muted);
  opacity: 0.45;
  width: 45px;
  text-align: center;
  transition: all 0.2s ease;
  font-weight: 500;
}

.ruler-val.active-ruler {
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  opacity: 1;
  background: #f8fafc;
  border-radius: 12px;
  width: 75px;
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.ruler-ticks {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-bottom: 2px;
  font-family: monospace;
  font-weight: normal;
}

.ruler-arrow {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin-bottom: 2px;
  line-height: 1;
}

.ruler-slider {
  -webkit-appearance: none;
  width: 90%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 10px;
  outline: none;
  margin-top: 10px;
}

.ruler-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.ruler-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--gold);
}

.ruler-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.ruler-slider::-moz-range-thumb:hover {
  width: 22px;
  height: 22px;
  transform: scale(1.2);
  background: var(--gold);
}

.hero-calc-result-box {
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 25px;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-calc-result-heading {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-calc-result-badge {
  background: var(--navy);
  color: var(--bg-white);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 10px 35px;
  border-radius: 8px;
  margin-bottom: 15px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(26, 35, 50, 0.15);
}

.hero-calc-result-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
}

.hero-calc-result-desc strong {
  color: var(--navy);
}

.hero-calc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--navy);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(26, 35, 50, 0.15);
  width: 100%;
  max-width: 320px;
  border: 2px solid var(--navy);
}

.hero-calc-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 156, 30, 0.25);
}

.hero-calc-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 15px;
  text-align: center;
}

/* ---- 3-Step Process Section ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  width: 100%;
}

.process-card {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 40px; /* space for the top text and badge */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.process-card-badge {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--bg-white);
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(248, 156, 30, 0.3);
}

.process-card-body {
  padding: 15px 30px 25px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.process-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  text-align: left;
}

.process-card-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 20px;
}

.process-card-image-wrapper {
  margin-top: auto;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

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

.process-card:hover .process-card-image-wrapper img {
  transform: scale(1.05);
}

.process-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white) !important;
  color: var(--navy) !important;
  border: 2px solid var(--bg-white) !important;
  font-weight: 700 !important;
  font-size: 1.02rem !important;
  padding: 16px 40px !important;
  border-radius: 50px !important;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all var(--transition) !important;
  cursor: pointer;
}

.process-cta-btn:hover {
  background: transparent !important;
  color: var(--bg-white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15) !important;
}

/* Responsiveness for process section */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .process-card {
    max-width: 450px;
    margin: 0 auto;
  }
  .process-card-image-wrapper {
    height: 200px;
  }
}
