/* ============================================================
   WanderLux Travel Agency – Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --navy: #0D1B2A;
  --navy-mid: #1A2E42;
  --cream: #F8F3EC;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #4A5568;
  --text-light: #718096;
  --success: #2D6A4F;
  --error: #C0392B;
  --shadow-sm: 0 2px 12px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,42,0.14);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.04em;
  cursor: pointer; border: 2px solid transparent; transition: var(--transition);
}
.btn-primary {
  background: var(--gold); color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: transparent; transition: var(--transition);
  padding: 1.2rem 0;
}
.navbar.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-icon { font-size: 1.6rem; }
.nav-logo-text { font-family: var(--font-display); color: var(--white); }
.nav-logo-text span { color: var(--gold); }
.nav-logo-sub { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.05em; padding: 0.5rem 0.9rem; border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links .btn { padding: 0.5rem 1.3rem; font-size: 0.85rem; margin-left: 0.5rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--navy); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.4rem; font-family: var(--font-display); transition: var(--transition); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.8rem; color: var(--white); cursor: pointer; background: none; border: none; }

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.4) 50%, transparent 100%);
}
/* Premium Destination Backgrounds */
.slide-1 { background-image: url('../img/bali.png'); }
.slide-2 { background-image: url('../img/paris.png'); }
.slide-3 { background-image: url('../img/tokyo.png'); }
.slide-4 { background-image: url('../img/capetown.png'); }

.slide-content {
  position: absolute; bottom: 6rem; right: 8%;
  text-align: right; z-index: 1; 
  background: rgba(13,27,42,0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem 2.5rem; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15); box-shadow: var(--shadow-lg);
  transform: translateY(30px); opacity: 0; transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active .slide-content {
  transform: translateY(0); opacity: 1; transition-delay: 0.4s;
}
.slide-emoji { display: none; }
.slide-label { font-size: 0.8rem; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 0.3rem; }
.slide-title { font-size: 2.2rem; color: var(--white); font-family: var(--font-display); margin: 0; }

.hero-content {
  position: relative; z-index: 2; color: var(--white);
  max-width: 700px; padding: 0 1.5rem;
  margin-left: 8%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 0.4rem 1.1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title { margin-bottom: 1.2rem; }
.hero-title .line2 { color: var(--gold); display: block; }
.hero-desc { font-size: 1.1rem; opacity: 0.88; margin-bottom: 2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-indicators {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition); border: none;
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4)); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy); padding: 2rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
}
.stat-item { border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border: none; }
.stat-number { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); display: block; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   PACKAGES / CARDS
   ============================================================ */
.packages-section { background: var(--white); }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-mid); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem;
}
.package-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-visual {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.card-visual::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0.15; transition: var(--transition);
}
.package-card:hover .card-visual::before { opacity: 0.25; }
.cv-beach { background: linear-gradient(135deg, #2E86AB, #A8DADC); }
.cv-mountain { background: linear-gradient(135deg, #2D6A4F, #52B788); }
.cv-city { background: linear-gradient(135deg, #1A1A2E, #4A4E69); }
.cv-romance { background: linear-gradient(135deg, #6B2737, #C0392B); }
.cv-safari { background: linear-gradient(135deg, #744210, #D97706); }
.cv-cruise { background: linear-gradient(135deg, #0D1B2A, #1A4B6E); }

.card-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 50px;
}
.card-body { padding: 1.5rem; }
.card-meta { display: flex; gap: 1rem; margin-bottom: 0.8rem; }
.card-meta span { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.card-body h3 { margin-bottom: 0.6rem; font-size: 1.25rem; }
.card-body p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 1.2rem; line-height: 1.6; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.06); }
.card-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); }
.card-price span { font-size: 0.8rem; font-family: var(--font-body); color: var(--text-light); }

/* ============================================================
   DESTINATIONS PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 10rem 0 5rem; text-align: center; color: var(--white);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.page-hero h1 { position: relative; z-index: 1; margin-bottom: 1rem; }
.page-hero p { position: relative; z-index: 1; color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.8rem; }
.service-card p { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 1.2rem; }
.service-features { display: flex; flex-direction: column; gap: 0.4rem; }
.service-features li { font-size: 0.85rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; }
.service-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ============================================================
   TRIP COST CALCULATOR
   ============================================================ */
.calculator-section { background: var(--cream); }
.calc-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.calc-form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.06);
}
.calc-form-card h2 { margin-bottom: 0.5rem; }
.calc-form-card > p { color: var(--text-mid); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.5rem; letter-spacing: 0.03em;
}
.form-group label span { color: var(--gold); }
.form-control, .form-select {
  width: 100%; padding: 0.85rem 1rem; border: 2px solid #E2E8F0;
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-dark); background: var(--cream); transition: var(--transition);
  outline: none;
}
.form-control:focus, .form-select:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(201,168,76,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.style-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
.style-option { display: none; }
.style-label {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 1rem; border: 2px solid #E2E8F0; border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); text-align: center; font-size: 0.82rem; font-weight: 600;
}
.style-label .style-icon { font-size: 1.6rem; }
.style-option:checked + .style-label { border-color: var(--gold); background: rgba(201,168,76,0.08); color: var(--navy); }

.calc-result {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.06);
  min-height: 300px; display: flex; flex-direction: column; justify-content: center;
}
.result-placeholder { text-align: center; color: var(--text-light); }
.result-placeholder .placeholder-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.result-content { display: none; }
.result-content.show { display: block; }
.result-destination { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; }
.result-total { font-family: var(--font-display); font-size: 3rem; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; }
.result-note { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 2rem; }
.result-breakdown { background: var(--cream); border-radius: var(--radius); padding: 1.2rem; margin-bottom: 1.5rem; }
.breakdown-row { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 0.3rem 0; color: var(--text-mid); }
.breakdown-row.total { font-weight: 700; color: var(--text-dark); border-top: 1px solid #E2E8F0; padding-top: 0.6rem; margin-top: 0.3rem; }
.result-disclaimer { font-size: 0.78rem; color: var(--text-light); font-style: italic; }
.error-msg { color: var(--error); font-size: 0.82rem; margin-top: 0.4rem; display: none; }

/* ============================================================
   APPOINTMENT / CONTACT FORMS
   ============================================================ */
.appointment-section, .contact-section { background: var(--white); }
.appt-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.appt-info h2 { margin-bottom: 1rem; }
.appt-info p { color: var(--text-mid); margin-bottom: 2rem; }
.appt-features { display: flex; flex-direction: column; gap: 1.2rem; }
.appt-feature { display: flex; gap: 1rem; align-items: flex-start; }
.appt-feature-icon { font-size: 1.5rem; width: 2.5rem; flex-shrink: 0; }
.appt-feature h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.appt-feature p { font-size: 0.85rem; color: var(--text-mid); margin: 0; }

.form-card {
  background: var(--cream); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.06);
}
.form-success {
  display: none; text-align: center; padding: 2rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--success); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-mid); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-mid); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.detail-icon { width: 2.8rem; height: 2.8rem; background: rgba(201,168,76,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.detail-text h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.detail-text p { color: var(--text-dark); font-size: 0.95rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 1.5rem; border: 1px solid rgba(0,0,0,0.1); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 450px; background: linear-gradient(135deg, var(--navy) 0%, #1A4B6E 50%, var(--gold) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 8rem;
  box-shadow: var(--shadow-lg); position: relative;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-stat { background: var(--cream); border-radius: var(--radius); padding: 1.2rem; text-align: center; }
.about-stat-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); }
.about-stat-label { font-size: 0.8rem; color: var(--text-mid); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1rem; font-size: 3rem; display: flex; align-items: center; justify-content: center; }
.avatar-1 { background: linear-gradient(135deg, #2E86AB, #A8DADC); }
.avatar-2 { background: linear-gradient(135deg, #C0392B, #E74C3C); }
.avatar-3 { background: linear-gradient(135deg, #2D6A4F, #52B788); }
.avatar-4 { background: linear-gradient(135deg, #744210, #D97706); }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.team-card .role { font-size: 0.82rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 0.5rem; }
.team-card p { font-size: 0.87rem; color: var(--text-mid); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.8rem; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 1.8rem; text-align: center; border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-sm); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-mid); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--navy); padding: 5rem 0; }
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section h2 { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.8rem; margin-top: 3rem; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.testimonial-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.author-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.author-location { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2rem; }
.why-card { text-align: center; padding: 1.5rem; }
.why-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-mid); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1A4B6E 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.cta-section h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080E18; color: rgba(255,255,255,0.7); padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-socials { display: flex; gap: 0.7rem; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: var(--transition); border: 1px solid rgba(255,255,255,0.08); }
.social-btn:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-newsletter input {
  width: 100%; padding: 0.7rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05); color: var(--white); font-family: var(--font-body);
  font-size: 0.88rem; margin-bottom: 0.7rem; outline: none; transition: var(--transition);
}
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .calc-wrapper, .appt-grid, .contact-grid, .about-intro { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero-content { margin-left: 0; text-align: center; }
  .hero-btns { justify-content: center; }
  .slide-content { bottom: 2rem; right: 50%; transform: translateX(50%); text-align: center; padding: 1rem 1.5rem; }
  .hero-slide.active .slide-content { transform: translateX(50%); }
  .slide-title { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .style-options { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .style-options { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
