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

:root {
  --navy: #0a1628;
  --navy-mid: #1a2f4a;
  --gold: #f0a500;
  --gold-hover: #d4920a;
  --gold-light: rgba(240,165,0,0.10);
  --white: #ffffff;
  --light: #f4f6f9;
  --gray: #6b7280;
  --text: #111827;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.heading-accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0 20px;
}

h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 52px;
  line-height: 1.7;
}

section { padding: 96px 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: 0.1px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(240,165,0,0.25);
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,165,0,0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--border);
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ===== NAV ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

#site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
}

.nav-logo {
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.2px;
  transition: color 0.3s;
}
#site-header.scrolled .nav-logo { color: var(--navy); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

#site-header.scrolled .nav-links a { color: var(--gray); }
#site-header.scrolled .nav-links a:hover { color: var(--navy); background: var(--light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
  box-shadow: 0 2px 10px rgba(240,165,0,0.3);
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-1px) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}
#site-header.scrolled .nav-toggle { color: var(--navy); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../Whistler.png') center center / cover no-repeat;
  padding: 0 32px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.65) 0%,
    rgba(10,22,40,0.50) 60%,
    rgba(10,22,40,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-content > p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ===== CREDENTIAL BAR ===== */
.credential-bar {
  background: var(--navy);
  padding: 36px 32px;
}

.credential-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.cred-stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.cred-value {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.cred-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.cred-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--white);
  padding: 96px 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.step h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.65;
}

.step-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 20px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== ABOUT / FEATURES ===== */
.about { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  border-bottom: 3px solid transparent;
  transition: border-bottom-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gold-light);
  border-radius: 50%;
}

.feature h3 { color: var(--navy); }
.feature p { color: var(--gray); font-size: 0.93rem; line-height: 1.65; }

/* ===== PRICING ===== */
.pricing { background: var(--light); }
.pricing h2 { color: var(--navy); }
.pricing .section-sub { color: var(--gray); }

.pricing-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pricing-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 4px;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0;
}

.price-note { font-size: 0.83rem; color: var(--gray); margin-bottom: 24px; }

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }

/* ===== REVIEWS ===== */
.reviews { background: var(--light); }

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card > p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.reviewer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.reviewer strong { font-size: 0.9rem; color: var(--navy); }
.reviewer span { font-size: 0.8rem; color: var(--gray); }

/* ===== BOOKING FORM ===== */
.booking { background: var(--white); }

.booking-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  max-width: 820px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

input, select, textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.12);
}

textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

.form-success {
  margin-top: 16px;
  padding: 14px 20px;
  background: #ecfdf5;
  color: #065f46;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-error {
  margin-top: 16px;
  padding: 14px 20px;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 8px;
  font-size: 0.95rem;
}

/* ===== CONTACT ===== */
.contact { background: var(--light); text-align: center; }

.contact-items {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 36px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  text-align: left;
  min-width: 260px;
}
.contact-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-item p { font-size: 1rem; font-weight: 700; color: var(--navy); }
.contact-icon { font-size: 1.8rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 36px 32px;
  font-size: 0.88rem;
}
.footer-sub { margin-top: 6px; font-size: 0.8rem; }
.footer a { color: var(--gold); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  .nav { padding: 16px 20px; }
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 12px 16px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--navy) !important; }
  .nav-links a:hover { background: var(--light) !important; }
  .nav-cta { text-align: center; }

  .credential-bar { padding: 28px 20px; }
  .credential-bar-inner { gap: 0; }
  .cred-stat { padding: 0 12px; }
  .cred-value { font-size: 1.6rem; }
  .cred-label { font-size: 0.7rem; }
  .cred-divider { height: 36px; }

  .steps { flex-direction: column; align-items: center; gap: 32px; }
  .step-arrow { transform: rotate(90deg); margin: -16px 0; }
  .step { padding: 0 16px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }

  .pricing-cards { flex-direction: column; }

  .contact-items { flex-direction: column; align-items: center; }
  .contact-item { width: 100%; max-width: 360px; }
}
