/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0e1a;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #a07d1a;
  --navy: #0a0e1a;
  --navy-mid: #0f1628;
  --navy-light: #1a2340;
  --navy-card: #131c30;
  --text: #e8e8e8;
  --text-muted: #8a9ab5;
  --border: rgba(201, 162, 39, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(201,162,39,0.15);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: #fff; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; }
.gold { color: var(--gold); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e1a;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-gold);
  font-size: 1rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,162,39,0.35); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
}
.btn-outline:hover { background: rgba(201,162,39,0.1); }

.btn-nav {
  background: var(--gold);
  color: #0a0e1a;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.btn-nav:hover { background: var(--gold-light); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(201,162,39,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo-u { color: var(--gold); font-size: 1.8rem; }
.logo-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,162,39,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(15,22,40,0.9) 0%, transparent 70%),
    linear-gradient(135deg, #0a0e1a 0%, #0f1628 50%, #0a0e1a 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,162,39,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(201,162,39,0.03) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
}
.hero-title {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item img { width: 28px; height: 28px; opacity: 0.9; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--navy);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.3); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  border-color: rgba(201,162,39,0.3);
  background: linear-gradient(135deg, var(--navy-card) 0%, rgba(201,162,39,0.05) 100%);
}
.service-card.featured::before { opacity: 1; }
.service-icon { font-size: 2.5rem; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 14px; font-size: 1.2rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 28px; }
.service-features li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before { content: '✓'; color: var(--gold); font-weight: 600; }
.btn-service {
  display: inline-block;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.4);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-service:hover { background: rgba(201,162,39,0.1); border-color: var(--gold); }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--navy-mid);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-intro { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; }
.why-items { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { color: #fff; margin-bottom: 6px; font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.why-item p { color: var(--text-muted); font-size: 0.9rem; }
.why-visual { display: flex; justify-content: center; align-items: center; }
.why-card-stack { position: relative; width: 320px; height: 320px; }
.why-card-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy-card);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  width: 240px;
  box-shadow: var(--shadow-gold);
}
.card-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.gold-bg { background: rgba(201,162,39,0.15); color: var(--gold); border: 1px solid rgba(201,162,39,0.3); }
.why-card-main h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card-main p { color: var(--text-muted); font-size: 0.82rem; }
.why-card-float {
  position: absolute;
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.c1 { top: 20px; right: -20px; animation: float1 4s ease-in-out infinite; }
.c2 { bottom: 20px; left: -20px; animation: float2 4s ease-in-out infinite 1s; }

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: var(--navy);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.step:hover { border-color: rgba(201,162,39,0.3); transform: translateY(-4px); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}
.step h4 { margin-bottom: 12px; font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.step p { color: var(--text-muted); font-size: 0.88rem; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  align-self: center;
  margin-top: -20px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--navy-mid);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.gallery-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.gallery-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.3); }
.gallery-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-card));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.gallery-label { font-size: 0.8rem; color: var(--gold); opacity: 0.8; }
.gallery-info {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-tag {
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
}
.gallery-months { color: var(--text-muted); font-size: 0.82rem; }
.gallery-note { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--navy);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(201,162,39,0.3); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: #fff; font-size: 0.95rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.82rem; }

/* ===== BOOKING ===== */
.booking {
  padding: 100px 0;
  background: var(--navy-mid);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.booking-info h2 { margin-bottom: 16px; }
.booking-info > p { color: var(--text-muted); margin-bottom: 32px; font-size: 1rem; }
.booking-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.booking-feature { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.booking-feature::before { content: ''; }
.contact-direct h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; font-family: 'Inter', sans-serif; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--gold); }
.booking-form-wrap {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,162,39,0.5); }
.form-group select option { background: var(--navy-card); color: #fff; }
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e1a;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,162,39,0.35); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-privacy { color: var(--text-muted); font-size: 0.8rem; text-align: center; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--gold); margin-bottom: 12px; }
.form-success p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 8px; }

/* ===== LOCATION ===== */
.location {
  padding: 100px 0;
  background: var(--navy);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-info h2 { margin-bottom: 16px; }
.location-info > p { color: var(--text-muted); margin-bottom: 36px; }
.location-details { display: flex; flex-direction: column; gap: 24px; }
.location-item { display: flex; gap: 16px; align-items: flex-start; }
.location-item span { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.location-item strong { display: block; color: #fff; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.location-item p { color: var(--text-muted); font-size: 0.9rem; }
.location-map {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder { text-align: center; color: var(--text-muted); }
.map-placeholder span { display: block; font-size: 2rem; margin-bottom: 8px; }
.map-placeholder p { font-size: 0.85rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}
.social-links a:hover { background: rgba(201,162,39,0.1); border-color: rgba(201,162,39,0.3); }
.footer-col h4 { color: #fff; font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid, .booking-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,14,26,0.98); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 24px; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-container { gap: 24px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== DOCTORS SECTION ===== */
.doctors {
  padding: 100px 0;
  background: var(--bg-primary);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.doctor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
}

.doctor-avatar {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.doctor-initials {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.doctor-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doctor-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.doctor-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doctor-cert {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

.doctor-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.doctor-specialties span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* ===== GOOGLE MY BUSINESS LINK ===== */
.gmb-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,162,39,0.3);
  transition: border-color 0.2s;
}
.gmb-link:hover { border-color: var(--gold); }

.gmb-reviews-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-gmb {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.btn-gmb:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ===== SOCIAL CTA IN GALLERY ===== */
.gallery-social-cta {
  text-align: center;
  margin-top: 40px;
}
.gallery-social-cta p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.social-cta-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: var(--bg-card);
}
.social-cta-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== LOCATION ACTIONS ===== */
.location-actions {
  margin-top: 20px;
}
.btn-directions {
  display: inline-block;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.btn-directions:hover { opacity: 0.85; }

/* ===== GOOGLE MAP IFRAME ===== */
.location-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  filter: grayscale(20%) contrast(1.05);
}

/* ===== SOCIAL LINKS (SVG icons) ===== */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-3px);
}
.social-links a svg { display: block; }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE DOCTORS ===== */
@media (max-width: 768px) {
  .doctors-grid {
    grid-template-columns: 1fr;
  }
  .doctor-avatar {
    height: 120px;
  }
  .doctor-initials {
    font-size: 2.2rem;
  }
  .location-map iframe {
    height: 280px;
  }
  .social-cta-links {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== DOCTOR PHOTO (real image) ===== */
.doctor-avatar-photo {
  height: 260px;
  background: var(--bg-card);
  overflow: hidden;
}
.doctor-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.doctor-card:hover .doctor-avatar-photo img {
  transform: scale(1.04);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active {
  background: var(--gold);
  color: #0a0e1a;
}

/* ===== SERVICE DETAIL EXPAND ===== */
.service-detail {
  margin: 16px 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.service-detail h4 {
  color: var(--gold);
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}
.service-detail p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.service-who {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(201,162,39,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.service-who strong { color: var(--gold); }

/* ===== GRAFT CALCULATOR ===== */
.calculator {
  padding: 100px 0;
  background: var(--navy-mid);
}
.calculator-inner {
  max-width: 860px;
  margin: 0 auto;
}
.norwood-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.norwood-item {
  background: var(--navy-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}
.norwood-item:hover {
  border-color: rgba(201,162,39,0.4);
  background: rgba(201,162,39,0.05);
}
.norwood-item.active {
  border-color: var(--gold);
  background: rgba(201,162,39,0.12);
  box-shadow: 0 0 0 2px rgba(201,162,39,0.2);
}
.norwood-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 4px;
}
.norwood-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.3;
  white-space: pre-line;
}
.norwood-item.active .norwood-label { color: #fff; }

.calc-result {
  background: var(--navy-card);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: none;
}
.calc-result-grade {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.calc-result-item { display: flex; flex-direction: column; gap: 4px; }
.calc-result-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-result-value {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}
.calc-result-note {
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.calc-result-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e1a;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.calc-result-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.3); }

@media (max-width: 640px) {
  .norwood-grid { grid-template-columns: repeat(4, 1fr); }
  .calc-result-grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .norwood-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== ARTICLES SECTION ===== */
.articles {
  padding: 100px 0;
  background: var(--navy);
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.article-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,39,0.3);
  box-shadow: var(--shadow-gold);
}
.article-header {
  padding: 28px 28px 0;
}
.article-tag {
  display: inline-block;
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,0.25);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.article-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #fff;
}
.article-intro {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.article-body {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  padding: 0 28px;
  flex: 1;
}
.article-body p { margin-bottom: 10px; }
.article-body strong { color: #e0c97f; }
.article-footer {
  padding: 20px 28px 24px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.article-author strong {
  color: #fff;
  font-size: 0.85rem;
}
.article-author span {
  color: var(--text-muted);
  font-size: 0.78rem;
}
.article-cta {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.article-cta:hover { opacity: 0.75; }

/* ===== RTL ADJUSTMENTS ===== */
[dir="rtl"] .service-who { border-left: none; border-right: 3px solid var(--gold); border-radius: 8px 0 0 8px; }
[dir="rtl"] .logo-tag { margin-left: 0; margin-right: 6px; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-scroll { left: auto; right: 50%; transform: translateX(50%); }
[dir="rtl"] .why-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .location-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .booking-feature { flex-direction: row-reverse; }
[dir="rtl"] .contact-link { flex-direction: row-reverse; }
[dir="rtl"] .service-features li { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }

/* ===== SCHEMA.ORG HIDDEN CONTENT (AEO) ===== */
.seo-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===== SECTION ALIASES ===== */
.calculator-section { padding: 100px 0; background: var(--navy-mid); }
.articles-section { padding: 100px 0; background: var(--navy); }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 100px 0; background: var(--navy-mid); }
.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(201,162,39,0.3); }
.faq-q {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  padding: 20px 24px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }
.faq-a p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 0;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section { padding: 100px 0; background: var(--navy); }
.comparison-table-wrap { overflow-x: auto; margin-top: 40px; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  padding: 16px 20px;
  text-align: center;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-bottom: 2px solid var(--border);
  color: var(--text-muted);
  white-space: nowrap;
}
.comparison-table th.highlight-col {
  color: var(--gold);
  background: rgba(201,162,39,0.06);
  border-bottom-color: var(--gold);
}
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.comparison-table td:first-child {
  text-align: right;
  font-weight: 500;
  color: #fff;
}
.comparison-table td.highlight-col {
  background: rgba(201,162,39,0.04);
  color: #fff;
  font-weight: 500;
}
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table tr:hover td.highlight-col { background: rgba(201,162,39,0.08); }

@media (max-width: 640px) {
  .faq-q { font-size: 0.88rem; padding: 16px 18px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 0.8rem; }
}


/* ===== AEO ENTITY SECTION ===== */
.aeo-entity {
  background: #0d1220;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.aeo-article {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.9;
}
.aeo-article h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}
.aeo-article h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #c8d0e0;
  margin: 1.5rem 0 0.4rem;
  font-family: 'Inter', sans-serif;
}
.aeo-article p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.aeo-article strong {
  color: #e0e8f0;
  font-weight: 600;
}
