/* =============================================================
   Punta Cana Transportation — Main Stylesheet
   Brand: Navy #0A1F3C | Gold #D4A017 | White #FFFFFF
   Fonts: Montserrat (headings) | Inter (body)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

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

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #212121;
  background: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; }
input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; line-height: 1.25; color: #0A1F3C; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

/* =============================================================
   2. UTILITIES
   ============================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #0A1F3C;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title--light { color: #fff; }

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* =============================================================
   3. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: #D4A017;
  color: #fff;
  border-color: #D4A017;
}
.btn-primary:hover { background: #b8860b; border-color: #b8860b; }

.btn-gold {
  background: #D4A017;
  color: #fff;
  border-color: #D4A017;
}
.btn-gold:hover { background: #b8860b; border-color: #b8860b; }

.btn-ghost {
  background: transparent;
  color: #0A1F3C;
  border-color: #0A1F3C;
}
.btn-ghost:hover { background: #0A1F3C; color: #fff; }

.btn-full { width: 100%; }

.btn-nav {
  background: #D4A017;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-nav:hover { background: #b8860b; }
.btn-nav.active { background: #b8860b; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1da851; }

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1.5rem;
  transition: background 0.2s;
}
.btn-whatsapp-large:hover { background: #1da851; }

/* =============================================================
   4. HEADER
   ============================================================= */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

#main-header.header-scrolled {
  background: #0A1F3C;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #D4A017;
  letter-spacing: 0.08em;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #D4A017; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================================
   5. HERO SECTION
   ============================================================= */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A1F3C 0%, #006994 55%, #00B4D8 100%);
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 10% 20%, rgba(10,31,60,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.5);
  color: #F0C842;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  background: rgba(255,255,255,0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* =============================================================
   6. BOOKING WIDGET CARD
   ============================================================= */
.booking-widget-wrap {
  position: relative;
  z-index: 2;
}

.booking-widget-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 2rem;
  width: 100%;
}

/* Step indicator bar */
.step-indicator-bar {
  display: flex;
  align-items: center;
  margin-bottom: 1.75rem;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.step-dot span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E0E0E0;
  color: #757575;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.step-dot label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #9e9e9e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.step-dot.active span,
.step-dot.completed span {
  background: #D4A017;
  color: #fff;
}
.step-dot.active label,
.step-dot.completed label { color: #D4A017; }

.step-line {
  flex: 1;
  height: 2px;
  background: #E0E0E0;
  margin: 0 6px;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.step-line.completed { background: #D4A017; }

/* Step panels */
.step-panel { display: none; }
.step-panel.active { display: block; }
.step-panel.hidden { display: none; }

.step-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #0A1F3C;
}

/* Form elements inside widget */
.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #424242;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #212121;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #D4A017;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"] { cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field-error {
  background: #FFEBEE;
  border: 1px solid #ef9a9a;
  color: #C62828;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

/* Vehicle grid inside step 2 */
.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vehicle-card {
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: #fff;
  position: relative;
}

.vehicle-card:hover:not(.disabled) {
  border-color: #D4A017;
  box-shadow: 0 4px 12px rgba(212,160,23,0.15);
}

.vehicle-card.selected {
  border-color: #D4A017;
  background: #FFF9EC;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.2);
}

.vehicle-card.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #F5F5F5;
}

.vehicle-icon { font-size: 2rem; margin-bottom: 0.4rem; }
.vehicle-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: #0A1F3C; margin-bottom: 0.2rem; }
.vehicle-cap { font-size: 0.75rem; color: #757575; margin-bottom: 0.4rem; }
.vehicle-price { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: #D4A017; }
.vehicle-duration { font-size: 0.75rem; color: #9e9e9e; margin-top: 0.2rem; }
.vehicle-unavail { font-size: 0.75rem; color: #C62828; margin-top: 0.3rem; }

/* Spinner */
.spinner-wrap {
  text-align: center;
  padding: 2rem 0;
}
.spinner-wrap p { margin-top: 1rem; color: #757575; font-size: 0.9rem; }

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #E0E0E0;
  border-top-color: #D4A017;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Order summary */
.order-summary {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}
.order-summary h4 { font-size: 0.9rem; margin-bottom: 0.75rem; color: #0A1F3C; }
.order-row { display: flex; justify-content: space-between; margin-bottom: 0.4rem; color: #424242; }
.order-row.total { font-weight: 700; font-size: 1rem; color: #0A1F3C; border-top: 1px solid #E0E0E0; padding-top: 0.5rem; margin-top: 0.5rem; }

/* Stripe card element */
.stripe-card-element {
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  background: #fff;
  transition: border-color 0.2s;
  min-height: 44px;
}
.stripe-card-element.StripeElement--focus { border-color: #D4A017; box-shadow: 0 0 0 3px rgba(212,160,23,0.15); }

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #757575;
  margin: 0.75rem 0;
}

/* Step buttons */
.btn-step-back {
  background: transparent;
  border: none;
  color: #757575;
  font-size: 0.9rem;
  padding: 0;
  margin-top: 0.5rem;
  cursor: pointer;
}
.btn-step-back:hover { color: #0A1F3C; }

/* =============================================================
   7. WHY CHOOSE US
   ============================================================= */
.why-us-section { background: #F5F5F5; }

.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cards-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #0A1F3C;
}

.feature-card p { font-size: 0.9rem; color: #616161; line-height: 1.6; }

/* =============================================================
   8. HOW IT WORKS
   ============================================================= */
.how-it-works-section { background: #fff; }

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #F5F5F5;
  border-radius: 12px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0A1F3C;
  color: #D4A017;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.step-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.step-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: #616161; }

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: #D4A017;
  margin-top: 60px;
}

/* =============================================================
   9. FLEET
   ============================================================= */
.fleet-section {
  background: linear-gradient(135deg, #0A1F3C 0%, #1A3255 100%);
}

.fleet-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.fleet-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.fleet-icon { font-size: 3rem; margin-bottom: 1rem; }

.fleet-card h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.1rem; }
.fleet-capacity { color: #D4A017; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.fleet-desc { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 0.75rem; }
.fleet-price { color: #fff; font-size: 0.9rem; margin-bottom: 1.25rem; }
.fleet-price strong { color: #D4A017; font-size: 1.2rem; }

/* =============================================================
   10. CONTACT
   ============================================================= */
.contact-section { background: #E8F4FD; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-list { display: flex; flex-direction: column; gap: 0.9rem; }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-icon { font-size: 1.2rem; }

.whatsapp-link { color: #1da851; font-weight: 600; }

.contact-note-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-note-card h3 { margin-bottom: 1rem; }
.contact-note-card p { color: #616161; margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.7; }

/* =============================================================
   11. FOOTER
   ============================================================= */
.site-footer { background: #0A1F3C; color: rgba(255,255,255,0.75); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #D4A017;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: #D4A017; }

.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact p { font-size: 0.88rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* =============================================================
   12. BOOKING PAGE (booking.php)
   ============================================================= */
.booking-page-body { background: #F5F5F5; }

.page-hero {
  background: linear-gradient(135deg, #0A1F3C 0%, #1A3255 100%);
  padding: 6rem 0 3rem;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }

.booking-page-section { padding: 3rem 0 5rem; }

.booking-page-container { max-width: 860px; }

.booking-card-full {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  padding: 2.5rem;
}

/* Step indicator (full booking page version) */
.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E0E0E0;
  color: #9e9e9e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.step-item span:last-child {
  font-size: 0.72rem;
  font-weight: 600;
  color: #9e9e9e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-item.active .step-circle,
.step-item.completed .step-circle {
  background: #D4A017;
  color: #fff;
}

.step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A1F3C;
  margin-bottom: 1.5rem;
}

.booking-step { display: none; }
.booking-step.active { display: block; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-full { grid-column: 1 / -1; }

.optional { font-weight: 400; color: #9e9e9e; font-size: 0.8rem; }

.step3-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.payment-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.route-summary {
  background: #E8F4FD;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: #0A1F3C;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.booking-error {
  background: #FFEBEE;
  border: 1px solid #ef9a9a;
  color: #C62828;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.card-error {
  color: #C62828;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  min-height: 1.2rem;
}

.stripe-card-input {
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  padding: 0.85rem;
  background: #fff;
  min-height: 44px;
  transition: border-color 0.2s;
}

.input-icon-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}
.input-icon-wrap input { padding-left: 2.2rem; }

.btn-pay {
  flex: 1;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

/* =============================================================
   13. CONFIRMATION PAGE
   ============================================================= */
.confirmation-section {
  min-height: 80vh;
  padding: 8rem 0 5rem;
  background: #F5F5F5;
}

.confirmation-container { max-width: 640px; text-align: center; }

.confirm-icon-wrap { margin-bottom: 1.5rem; }

.confirm-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto;
}

.confirm-icon.success {
  background: #E8F5E9;
  color: #2E7D32;
}

.confirm-icon.error {
  background: #FFEBEE;
  color: #C62828;
}

.animate-check {
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.confirm-title { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
.confirm-subtitle { color: #616161; font-size: 1.05rem; margin-bottom: 2rem; }

.booking-ref-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #0A1F3C;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}
.ref-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.ref-number { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: #D4A017; letter-spacing: 0.08em; }

.confirm-details-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.confirm-item { display: flex; flex-direction: column; gap: 0.25rem; }
.confirm-label { font-size: 0.78rem; font-weight: 600; color: #9e9e9e; text-transform: uppercase; letter-spacing: 0.06em; }
.confirm-value { font-size: 0.95rem; color: #212121; font-weight: 500; }
.confirm-price { font-size: 1.2rem; font-weight: 700; color: #D4A017; }
.confirm-item-full { grid-column: 1 / -1; }

.confirm-email-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #E8F5E9;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: #2E7D32;
  margin-bottom: 2rem;
}

.confirm-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }

.confirmation-error { padding: 3rem 0; }

/* =============================================================
   14. RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; text-align: center; }
  .booking-widget-wrap { display: none; } /* widget in hero hidden on tablet, use booking page */
  .hero-content { max-width: 100%; }
  .trust-badges { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .step3-layout, .payment-layout { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* Mobile nav */
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #0A1F3C;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }
  .nav-links .btn-nav {
    margin: 1rem 1.5rem;
    width: calc(100% - 3rem);
    text-align: center;
  }
  .hamburger { display: flex; }

  .hero-section { padding: 5rem 0 3rem; min-height: auto; }
  .hero-inner { padding-bottom: 2rem; }
  .booking-widget-wrap { display: block; } /* show widget in hero on mobile */

  .vehicles-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }

  .cards-4 { grid-template-columns: 1fr 1fr; }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }
  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }
  .step-card { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid > div:first-child { padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }

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

  .booking-card-full { padding: 1.5rem; }
  .step-actions { flex-direction: column-reverse; }
  .step-actions .btn-ghost { width: 100%; }
}

@media (max-width: 480px) {
  .cards-4 { grid-template-columns: 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.9rem; }
}
