@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --navy: #0a1f44;
  --navy-dark: #061530;
  --blue: #1a4a8a;
  --gold: #f5c518;
  --gold-dark: #d4a800;
  --white: #ffffff;
  --light: #f8f9fa;
  --gray: #6c757d;
  --border: rgba(0,0,0,0.1);
  --radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-padding-top: 64px; }

body {
  margin: 0;
  padding-top: 64px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: var(--white);
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.15;
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); color: var(--white); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--navy); }
h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }

p { margin: 0; line-height: 1.7; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4rem 0; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  display: block;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  height: 42px;
  width: auto;
}
.nav-cta {
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}
.btn-primary:active { transform: scale(0.98); }
.btn-block { width: 100%; margin-top: 1.25rem; }
.btn-large { font-size: 1.1rem; padding: 1rem 2.5rem; }
.btn-cta { background: var(--gold); color: var(--navy-dark); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue) 100%);
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.promo-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin: 1rem 0 1.75rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-number {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.hero-image img {
  width: 100%;
  border-radius: 12px;
  border: 3px solid var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* SERVICES */
.services-section { background: var(--light); }
.services-section h2 { text-align: center; margin-bottom: 2.5rem; }
.services-section .section-label { text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.service-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(245,197,24,0.2);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.service-price {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
.service-list li {
  font-size: 0.88rem;
  color: #444;
  padding: 0.3rem 0;
  padding-left: 1.4rem;
  position: relative;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.promo-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--navy);
  background: rgba(245,197,24,0.12);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* WHY US */
.why-section { background: var(--navy); }
.why-section .section-label { color: var(--gold); }
.why-section h2 { color: var(--white); text-align: center; margin-bottom: 2.5rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.why-card h3 { color: var(--gold); font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* HOW TO BOOK */
.book-section { background: var(--light); }
.book-section h2 { text-align: center; margin-bottom: 2.5rem; }
.book-section .section-label { text-align: center; }
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  flex: 1;
  min-width: 180px;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.85rem; color: var(--gray); }
.step-arrow {
  font-size: 1.5rem;
  color: var(--gold-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.book-cta {
  text-align: center;
}
.book-number {
  margin-top: 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

/* SERVICE AREA */
.area-section { background: var(--white); }
.area-section h2 { text-align: center; margin-bottom: 0.75rem; }
.area-section .section-label { text-align: center; }
.area-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 1.75rem;
}
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.area-tag {
  background: var(--navy);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.area-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

/* BOTTOM CTA */
.bottom-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--blue) 100%);
  text-align: center;
  padding: 4rem 0;
}
.bottom-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.bottom-cta p { color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; }
.bottom-cta .book-number { color: var(--gold); margin-top: 1rem; margin-bottom: 0; }
.first-time {
  margin-top: 0.75rem !important;
  font-size: 0.875rem;
  color: var(--gold) !important;
}

/* FOOTER */
footer {
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  padding: 2rem 0;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}
.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
}
footer p { margin-bottom: 0.4rem; }
footer a { color: var(--gold); }
footer a:hover { color: var(--white); }
.footer-copy { margin-top: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
