/* ============================================
   LUXURY ZIMBABWE CONCIERGE — LIGHT LUXURY THEME
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Gold */
  --gold:        #C9A84C;
  --gold-light:  #E0C06A;
  --gold-dark:   #9A7A35;
  --gold-glow:   rgba(201, 168, 76, 0.1);

  /* Light Page Palette */
  --page-bg:     #FAF8F4;
  --section-alt: #F2EDE3;
  --card-bg:     #FFFFFF;
  --card-border: rgba(180, 150, 90, 0.18);

  /* Text on light backgrounds */
  --heading:     #1C1610;
  --body:        #4A3F32;
  --muted:       #8A7A68;
  --soft:        #6B5D4E;

  /* For dark sections (hero, footer, cta) */
  --dark-bg:     #0F0D0A;
  --dark-alt:    #181410;
  --cream:       #F0EAD6;
  --light-text:  rgba(240, 234, 214, 0.85);

  --overlay-dark:  rgba(12, 10, 6, 0.62);
  --overlay-light: rgba(250, 248, 244, 0.92);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Raleway', sans-serif;
  --transition:  0.35s ease;
  --radius:      2px;
  --shadow:      0 4px 32px rgba(60, 45, 20, 0.08);
  --shadow-hover:0 8px 48px rgba(60, 45, 20, 0.14);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--page-bg);
  color: var(--body);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--section-alt); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--heading);
  margin-bottom: 1.1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.85;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.gold-line {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem 0;
}
.gold-line.centered { margin: 1.4rem auto; }
.text-gold { color: var(--gold); }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: #fff; }
.btn-primary span { position: relative; z-index: 1; }

/* Primary button on dark bg */
.btn-primary-light {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  background: transparent;
  border: 1px solid rgba(240,234,214,0.6);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.btn-primary-light:hover::before { transform: translateX(0); }
.btn-primary-light:hover { color: var(--dark-bg); border-color: var(--gold); }

.btn-secondary {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover { background: var(--gold-dark); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(250, 248, 244, 0.97);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 24px rgba(60, 45, 20, 0.08);
  backdrop-filter: blur(12px);
}

.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: color var(--transition);
}
.navbar-logo span { color: var(--gold); }
.navbar.scrolled .navbar-logo { color: var(--heading); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.navbar-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,234,214,0.75);
  transition: color var(--transition);
}
.navbar.scrolled .navbar-links a { color: var(--muted); }
.navbar-links a:hover, .navbar.scrolled .navbar-links a:hover { color: var(--gold); }

.navbar-cta {
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(201,168,76,0.7) !important;
  color: var(--gold) !important;
}
.navbar-cta:hover { background: var(--gold); color: #fff !important; }
.navbar.scrolled .navbar-cta { border-color: var(--gold) !important; }

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--cream);
  transition: var(--transition);
}
.navbar.scrolled .navbar-hamburger span { background: var(--heading); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--page-bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--heading);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--gold); font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================
   HERO — Stays dark/dramatic
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/DiamondAir-Level Service.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,9,4,0.35) 0%,
    rgba(12,9,4,0.52) 55%,
    rgba(12,9,4,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 920px;
  animation: fadeInUp 1.2s ease 0.3s both;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(240,234,214,0.7);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.hero-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeIn 1s ease 1.5s both;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240,234,214,0.5);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   SERVICES OVERVIEW — Light
   ============================================ */
.services-overview {
  padding: 7rem 0;
  background: var(--page-bg);
}
.services-overview .section-header { text-align: center; margin-bottom: 4rem; }
.services-overview .section-subtitle { margin: 0 auto; text-align: center; }

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(180,150,90,0.35);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 0.25rem; }
.service-card h3 { font-size: 1.1rem; color: var(--heading); font-weight: 500; }
.service-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; }
.service-card-link {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: auto;
  display: flex; align-items: center; gap: 0.5rem;
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 0.8rem; }

/* ============================================
   SERVICE FEATURE SECTIONS — Light
   ============================================ */
.service-feature {
  padding: 7rem 0;
  position: relative;
}
.service-feature:nth-child(even) { background: var(--section-alt); }
.service-feature:nth-child(odd)  { background: var(--page-bg); }

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-inner.reverse { direction: rtl; }
.feature-inner.reverse > * { direction: ltr; }

.feature-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1px;
  box-shadow: 0 12px 60px rgba(60, 45, 20, 0.14);
}
.feature-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.feature-image:hover .feature-image-bg { transform: scale(1.05); }

/* Real image backgrounds */
.bg-itineraries { background-image: url('../images/Bespoke Safari Planning.png'); background-size: cover; background-position: center; }
.bg-airport     { background-image: url('../images/DiamondAir-Level Service.png'); background-size: cover; background-position: center top; }
.bg-transport   { background-image: url('../images/Executive vehicle Fleet.png'); background-size: cover; background-position: center; }
.bg-security    { background-image: url('../images/Discreet personal protection officers.png'); background-size: cover; background-position: center top; }
.bg-lifestyle   { background-image: url('../images/private dining experience under the stars.png'); background-size: cover; background-position: center; }
.bg-helicopter  { background-image: url('../images/private helicopter ride victoria falls.png'); background-size: cover; background-position: center; }
.bg-experiences { background-image: url('../images/Adventures Image.png'); background-size: cover; background-position: center; }
.bg-villas      { background: linear-gradient(135deg, #1a1610, #0f0d09); }

.feature-image-label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(250,248,244,0.94);
  border-left: 2px solid var(--gold);
  padding: 0.6rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 600;
}

.feature-content { padding: 1rem 0; }

.feature-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--soft);
}
.feature-list li::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   ABOUT SECTION — Light
   ============================================ */
.about-section {
  padding: 7rem 0;
  background: var(--section-alt);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(60,45,20,0.14);
}
.about-image-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/Harare, Zimbabwe.png');
  background-size: cover;
  background-position: center top;
}
.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,22,16,0.6) 0%, transparent 50%);
}
.about-image-caption {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  color: var(--cream);
}
.about-image-caption strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}
.about-image-caption span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-top: 2.5rem;
}
.stat-item {
  padding: 1.4rem 0;
  border-top: 1px solid var(--card-border);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.2rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--heading);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

/* ============================================
   TESTIMONIALS — Light
   ============================================ */
.testimonials-section {
  padding: 7rem 0;
  background: var(--page-bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--soft);
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading);
  display: block;
}
.testimonial-origin { font-size: 0.75rem; color: var(--muted); }

/* ============================================
   VILLAS SHOWCASE — Light
   ============================================ */
.villas-section {
  padding: 7rem 0;
  background: var(--section-alt);
}
.villas-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}
.villa-card { position: relative; overflow: hidden; cursor: pointer; border-radius: 1px; }
.villa-card:first-child { grid-row: span 2; }

.villa-image {
  width: 100%; height: 100%; min-height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.villa-card:first-child .villa-image { min-height: 460px; }
.villa-card:hover .villa-image { transform: scale(1.06); }

.villa-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,8,0.80) 0%, transparent 55%);
}
.villa-info { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
.villa-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.villa-location {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Villa images */
.villa-1 { background-image: url('../images/Victoria Falls retreat.png'); background-size: cover; background-position: center; }
.villa-2 { background-image: url('../images/luxury houseboat on Lake Kariba.png'); background-size: cover; background-position: center; }
.villa-3 { background-image: url('../images/Hwange Safari Lodge.png'); background-size: cover; background-position: center; }
.villa-4 { background-image: url('../images/Mana Pools River Retreat.png'); background-size: cover; background-position: center; }
.villa-5 { background-image: url('../images/Harare Executive Residence.png'); background-size: cover; background-position: center; }

/* ============================================
   CTA SECTION — Stays dark/dramatic
   ============================================ */
.cta-section {
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('../images/itineraries.jpg');
  background-size: cover;
  background-position: center;
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(12,9,4,0.7);
}
.cta-content {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto; padding: 0 2rem;
}
.cta-content .section-label { color: var(--gold); display: block; text-align: center; }
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.cta-content p {
  color: rgba(240,234,214,0.75);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  line-height: 1.85;
}
.cta-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER — Stays dark
   ============================================ */
footer {
  background: var(--dark-bg);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .navbar-logo {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 1.25rem;
  color: var(--cream) !important;
}
.footer-brand p { font-size: 0.85rem; color: rgba(240,234,214,0.45); line-height: 1.8; max-width: 300px; }

.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  color: rgba(240,234,214,0.45);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.84rem; color: rgba(240,234,214,0.45); transition: color var(--transition); }
.footer-col ul a:hover { color: rgba(240,234,214,0.85); }
.footer-contact p { font-size: 0.84rem; color: rgba(240,234,214,0.45); line-height: 2.1; }
.footer-contact a { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(240,234,214,0.3); }

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-hero {
  padding: 12rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
}
.booking-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/itineraries.jpg');
  background-size: cover;
  background-position: center;
}
.booking-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(12,9,4,0.68);
}
.booking-hero-content { position: relative; z-index: 2; }
.booking-hero .section-label { color: var(--gold); display: block; text-align: center; }
.booking-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream); margin-bottom: 1rem;
}
.booking-hero h1 em { color: var(--gold-light); font-style: italic; }
.booking-hero p { color: rgba(240,234,214,0.65); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* Booking Form Wrapper */
.booking-section {
  padding: 5rem 0 8rem;
  background: var(--page-bg);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* Step Indicator */
.booking-steps {
  display: flex;
  margin-bottom: 3rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}
.booking-step {
  flex: 1;
  padding: 1.2rem;
  text-align: center;
  border-right: 1px solid var(--card-border);
  transition: var(--transition);
}
.booking-step:last-child { border-right: none; }
.booking-step.active { background: rgba(201,168,76,0.07); border-bottom: 2px solid var(--gold); }

.step-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(138,122,104,0.4);
  margin-bottom: 0.2rem;
}
.booking-step.active .step-number { color: var(--gold-dark); }
.step-label {
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-step.active .step-label { color: var(--gold-dark); font-weight: 600; }

/* Form Sections */
.form-section { display: none; }
.form-section.active { display: block; }

.form-section-title { font-size: 1.6rem; color: var(--heading); margin-bottom: 0.5rem; }
.form-section-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 2.5rem; }

/* Service Selection Cards */
.services-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.service-select-card {
  position: relative;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 1.75rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}
.service-select-card input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.service-select-card.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 4px 24px rgba(180,150,80,0.12);
}
.service-select-card:hover { border-color: rgba(180,150,90,0.5); box-shadow: var(--shadow-hover); }

.service-select-check {
  position: absolute; top: 1rem; right: 1rem;
  width: 24px; height: 24px;
  border: 2px solid #9A8A78;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: transparent;
  transition: var(--transition);
  background: #fff;
}
.service-select-card:hover .service-select-check {
  border-color: var(--gold-dark);
}
.service-select-card.selected .service-select-check {
  background: var(--gold);
  border-color: var(--gold-dark);
  color: #fff;
}
.service-select-icon { font-size: 1.4rem; color: var(--gold); }
.service-select-name { font-family: var(--font-serif); font-size: 1rem; color: var(--heading); }
.service-select-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

/* Service Options Block */
.service-options-block {
  display: none;
  background: #FFFDF8;
  border: 1px solid var(--card-border);
  border-top: 2px solid var(--gold);
  padding: 1.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.service-options-block.visible { display: block; }
.options-block-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}
.options-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.option-check {
  display: flex; align-items: center; gap: 0.75rem;
  cursor: pointer; font-size: 0.85rem; color: var(--soft);
}
.option-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; }

/* Form Fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--heading);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A7A35' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
}
.btn-form-next,
.btn-form-prev,
.btn-form-submit {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-form-next,
.btn-form-submit { background: var(--gold); color: #fff; }
.btn-form-next:hover,
.btn-form-submit:hover { background: var(--gold-dark); }
.btn-form-prev {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--muted);
}
.btn-form-prev:hover { border-color: var(--gold); color: var(--gold-dark); }

/* Sidebar */
.booking-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-title {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--card-border);
}
.sidebar-selected-list { display: flex; flex-direction: column; gap: 0.6rem; min-height: 60px; }
.sidebar-selected-item {
  font-size: 0.84rem;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-selected-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.sidebar-empty { font-size: 0.82rem; color: var(--muted); font-style: italic; }
.sidebar-info p { font-size: 0.82rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.sidebar-info p strong { color: var(--heading); }
.sidebar-contact a { display: block; font-size: 0.85rem; color: var(--gold-dark); margin-bottom: 0.5rem; }

/* Review Summary */
#reviewSummary {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

/* Success State */
.booking-success { display: none; text-align: center; padding: 4rem 2rem; }
.booking-success.show { display: block; }
.success-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1.5rem; }
.booking-success h2 { font-size: 2.2rem; color: var(--heading); margin-bottom: 1rem; }
.booking-success p {
  color: var(--muted); font-size: 1rem;
  max-width: 500px; margin: 0 auto 2rem; line-height: 1.8;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.35; transform: scaleY(0.7); }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { 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; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
}
@media (max-width: 860px) {
  .feature-inner, .feature-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .villas-grid { grid-template-columns: 1fr 1fr; }
  .villas-grid .villa-card:first-child { grid-column: span 2; grid-row: span 1; }
  .navbar-links { display: none; }
  .navbar-hamburger { display: flex; }
  .services-select-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .options-checkboxes { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .villas-grid { grid-template-columns: 1fr; }
  .villas-grid .villa-card:first-child { grid-column: span 1; }
  .hero h1 { font-size: 2.4rem; }
  .booking-steps { flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: center; }
  .container { padding: 0 1.25rem; }
}
