/* ============================================================
   Rock Town River Outfitters — Customer Booking Portal
   book.css
   ============================================================ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --river-blue:    #0A4F7A;
  --deep-water:    #07304A;
  --sunset-orange: #F28C28;
  --river-foam:    #F6F9FB;
  --forest-green:  #4C7A4F;
  --sandstone:     #D8C3A5;
  --white:         #FFFFFF;
  --river-blue-lt: #1A6FA0;
  --orange-lt:     #F9A953;
  --green-lt:      #6B9E6E;
  --red:           #D64545;
  --text-primary:  #0D1B2A;
  --text-secondary:#4A5568;
  --text-muted:    #9AABB9;
  --border:        #DDE5ED;
  --border-lt:     #EEF3F7;
  --shadow-sm:     0 2px 8px rgba(7,48,74,0.08);
  --shadow-md:     0 6px 24px rgba(7,48,74,0.12);
  --shadow-lg:     0 12px 48px rgba(7,48,74,0.16);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     22px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --header-h: 64px;
  --t: 0.2s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--river-foam); color: var(--text-primary); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
img, svg { display: block; }
ul { list-style: none; }

/* ── SITE HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(7,48,74,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.logo-text { line-height: 1.1; }

.logo-main {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--white);
}

.logo-sub {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--t);
}

.header-phone svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.header-phone:hover { color: var(--white); }

.header-staff-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--t);
}

.header-staff-link svg { stroke: currentColor; fill: none; stroke-width: 2; }
.header-staff-link:hover { background: rgba(255,255,255,0.14); color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #07304A 0%, #0A4F7A 40%, #0D5E8A 65%, #07304A 100%);
  padding-top: var(--header-h);
}

/* Floating bubbles for water feel */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  animation: rise 12s infinite ease-in;
}
.bubble:nth-child(1) { width: 80px;  height: 80px;  left: 10%; bottom: -80px; animation-delay: 0s;   animation-duration: 14s; }
.bubble:nth-child(2) { width: 50px;  height: 50px;  left: 25%; bottom: -50px; animation-delay: 3s;   animation-duration: 11s; }
.bubble:nth-child(3) { width: 120px; height: 120px; left: 55%; bottom: -120px;animation-delay: 1.5s; animation-duration: 16s; }
.bubble:nth-child(4) { width: 40px;  height: 40px;  left: 75%; bottom: -40px; animation-delay: 5s;   animation-duration: 10s; }
.bubble:nth-child(5) { width: 70px;  height: 70px;  left: 88%; bottom: -70px; animation-delay: 2s;   animation-duration: 13s; }

@keyframes rise {
  0%   { transform: translateY(0) scale(1);    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-110vh) scale(1.4); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 40px 24px 80px;
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242,140,40,0.18);
  border: 1px solid rgba(242,140,40,0.35);
  color: var(--sunset-orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-eyebrow svg { fill: currentColor; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sunset-orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(242,140,40,0.4);
  transition: all var(--t);
  letter-spacing: 0.2px;
}

.hero-cta svg { stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t); }
.hero-cta:hover { background: var(--orange-lt); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(242,140,40,0.5); }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-cta:active { transform: translateY(0); }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: auto; }

/* ── BOOKING SECTION ── */
.booking-section {
  padding: 40px 0 80px;
  background: var(--river-foam);
  min-height: 50vh;
}

.wizard-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── WIZARD PROMPT (initial state) ── */
.wizard-prompt {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.prompt-wave {
  font-size: 48px;
  margin-bottom: 16px;
  animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
  0%,100% { transform: rotate(-5deg); }
  50%      { transform: rotate(5deg); }
}

.wizard-prompt h2 { font-size: 22px; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.wizard-prompt p  { font-size: 14px; }
.wizard-prompt strong { color: var(--sunset-orange); }

/* ── STEP PROGRESS BAR ── */
.step-progress {
  margin-bottom: 32px;
  padding: 20px 0;
}

.progress-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  padding: 4px;
}

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

.prog-dot {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.prog-step.done .prog-dot {
  background: var(--river-blue);
  border-color: var(--river-blue);
  color: var(--white);
}

.prog-step.active .prog-dot {
  background: var(--sunset-orange);
  border-color: var(--sunset-orange);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(242,140,40,0.2);
}

.prog-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.prog-step.active .prog-label { color: var(--sunset-orange); font-weight: 600; }
.prog-step.done  .prog-label  { color: var(--river-blue); }

.prog-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  min-width: 28px;
  max-width: 80px;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}

.prog-line.done { background: var(--river-blue); }

/* ── STEP HEADER ── */
.step-header {
  text-align: center;
  margin-bottom: 28px;
}

.step-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,79,122,0.08);
  color: var(--river-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ── TOUR CARDS ── */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.tour-card {
  background: var(--white);
  border: 2px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--river-blue);
}

.tour-card.selected {
  border-color: var(--sunset-orange);
  box-shadow: 0 0 0 3px rgba(242,140,40,0.2);
}

.tour-card-header {
  position: relative;
  height: 110px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
}

.tour-emoji { font-size: 36px; line-height: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }

.tour-avail-badge {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.selected-check {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 26px; height: 26px;
  background: var(--sunset-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  border: 2px solid rgba(255,255,255,0.8);
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.25s ease;
}

.tour-card.selected .selected-check { opacity: 1; transform: scale(1); }

.tour-card-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.tour-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
}

.tour-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--river-foam);
  border: 1px solid var(--border-lt);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 6px;
}

.meta-tag.price {
  background: rgba(10,79,122,0.07);
  border-color: rgba(10,79,122,0.12);
  color: var(--river-blue);
  font-weight: 700;
}

.tour-highlights {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-item {
  font-size: 11.5px;
  color: var(--forest-green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--border-lt);
}

.btn-select-tour {
  width: 100%;
  padding: 9px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--river-blue);
  color: var(--river-blue);
  background: transparent;
  transition: all var(--t);
}

.btn-select-tour:hover { background: var(--river-blue); color: var(--white); }
.tour-card.selected .btn-select-tour { background: var(--sunset-orange); border-color: var(--sunset-orange); color: var(--white); }

/* ── DATE PICKER ── */
.date-section { margin-bottom: 32px; }

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-lt);
}

.date-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.date-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-lt);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--t);
  min-width: 68px;
}

.date-pill:hover:not(.full) { border-color: var(--river-blue); transform: translateY(-2px); }
.date-pill.selected { border-color: var(--sunset-orange); background: rgba(242,140,40,0.05); box-shadow: 0 0 0 3px rgba(242,140,40,0.15); }
.date-pill.full { opacity: 0.5; cursor: not-allowed; background: var(--river-foam); }
.date-pill.limited { border-color: rgba(242,140,40,0.3); }

.date-day-name {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.date-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.date-month {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.date-avail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}

.date-avail-dot.available { background: var(--forest-green); }
.date-avail-dot.limited   { background: var(--sunset-orange); }
.date-avail-dot.full      { background: var(--red); }

.date-pill.selected .date-day-name,
.date-pill.selected .date-month { color: rgba(242,140,40,0.7); }
.date-pill.selected .date-num   { color: var(--sunset-orange); }

/* ── TIME SLOTS ── */
.time-section { margin-top: 8px; }

.time-prompt {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 14px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.time-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-lt);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t);
  text-align: center;
}

.time-slot:hover:not(.full) { border-color: var(--river-blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.time-slot.selected { border-color: var(--sunset-orange); background: rgba(242,140,40,0.05); box-shadow: 0 0 0 3px rgba(242,140,40,0.15); }
.time-slot.full { opacity: 0.5; cursor: not-allowed; background: var(--river-foam); }

.time-main {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.time-slot.selected .time-main { color: var(--sunset-orange); }

.time-seats {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.time-seats.low { color: var(--sunset-orange); font-weight: 600; }
.time-seats.full-label { color: var(--red); }

/* ── GUEST SELECTOR ── */
.guest-section { max-width: 480px; margin: 0 auto; }

.guest-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-lt);
}

.guest-row:last-child { border-bottom: none; }

.guest-label {
  display: flex;
  flex-direction: column;
}

.guest-type { font-size: 15px; font-weight: 600; color: var(--text-primary); }
.guest-note { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }

.guest-counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
}

.counter-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--river-blue);
  transition: all var(--t);
  background: var(--white);
  user-select: none;
}

.counter-btn:hover { background: var(--river-blue); color: var(--white); }
.counter-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.counter-btn:disabled:hover { background: var(--white); color: var(--river-blue); }

.counter-val {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 40px;
  text-align: center;
}

.guest-total {
  background: rgba(10,79,122,0.06);
  border: 1px solid rgba(10,79,122,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.guest-total-label { font-size: 14px; font-weight: 600; color: var(--river-blue); }
.guest-total-num   { font-size: 22px; font-weight: 800; color: var(--river-blue); }

.capacity-warning {
  background: rgba(214,69,69,0.07);
  border: 1px solid rgba(214,69,69,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--red);
  font-weight: 500;
  text-align: center;
}

/* ── CUSTOMER FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: span 2; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-label .req { color: var(--sunset-orange); margin-left: 2px; }

.form-input, .form-select {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text-primary);
  width: 100%;
  transition: all var(--t);
  -webkit-appearance: none;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--river-blue);
  box-shadow: 0 0 0 3px rgba(10,79,122,0.1);
}

.form-input.invalid { border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,69,69,0.1); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='%239AABB9' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Waiver */
.waiver-box {
  background: var(--white);
  border: 2px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
  transition: border-color var(--t);
}

.waiver-box.checked { border-color: var(--forest-green); background: rgba(76,122,79,0.03); }

.waiver-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.waiver-checkbox {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--forest-green);
  cursor: pointer;
}

.waiver-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.waiver-text strong { color: var(--text-primary); }

/* Payment Options */
.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}

.pay-option {
  position: relative;
}

.pay-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.pay-option-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: all var(--t);
}

.pay-option input:checked + .pay-option-label {
  border-color: var(--sunset-orange);
  background: rgba(242,140,40,0.05);
  box-shadow: 0 0 0 3px rgba(242,140,40,0.15);
}

.pay-option-label:hover { border-color: var(--river-blue); }

.pay-icon { font-size: 20px; }
.pay-name { font-size: 12.5px; font-weight: 700; color: var(--text-primary); }
.pay-desc { font-size: 11px; color: var(--text-muted); }

/* ── SUMMARY (Step 5) ── */
.summary-card {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.summary-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-lt);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--river-foam);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-lt);
}

.summary-row:last-child { border-bottom: none; }

.sum-label { font-size: 13px; color: var(--text-secondary); }
.sum-value { font-size: 13.5px; font-weight: 600; color: var(--text-primary); }
.sum-value.highlight { color: var(--river-blue); }

.summary-total {
  background: linear-gradient(135deg, var(--deep-water), var(--river-blue));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.summary-total-label { font-size: 14px; font-weight: 600; opacity: 0.8; }
.summary-total-amount { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }

.summary-detail {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 2px;
}

.confirm-terms {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ── CONFIRMATION SCREEN ── */
.confirmation-screen {
  text-align: center;
  padding: 40px 20px 60px;
  animation: fadeSlideUp 0.5s ease;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.confirm-check {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--forest-green), #2D5A30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(76,122,79,0.3);
  animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.confirm-check svg { stroke: var(--white); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.confirm-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.confirm-num {
  display: inline-block;
  background: var(--river-blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  padding: 8px 24px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.confirm-msg {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.confirm-summary {
  background: var(--white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 20px;
  max-width: 420px;
  margin: 0 auto 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-lt);
  font-size: 13.5px;
}

.confirm-row:last-child { border-bottom: none; }
.confirm-row-label { color: var(--text-muted); }
.confirm-row-value { font-weight: 600; color: var(--text-primary); }

.confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── ERROR BANNER ── */
.error-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(214,69,69,0.08);
  border: 1px solid rgba(214,69,69,0.25);
  color: var(--red);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  animation: shake 0.3s ease;
}

.error-banner svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-5px); }
  75%      { transform: translateX(5px); }
}

/* ── WIZARD NAVIGATION ── */
.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
  gap: 10px;
}

.btn-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 2px solid var(--border);
  background: var(--white);
  transition: all var(--t);
}

.btn-back svg { stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.btn-back:hover { border-color: var(--river-blue); color: var(--river-blue); }

.btn-next {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--river-blue);
  border: none;
  transition: all var(--t);
  box-shadow: 0 4px 16px rgba(10,79,122,0.25);
}

.btn-next svg { stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t); }
.btn-next:hover { background: var(--river-blue-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,79,122,0.3); }
.btn-next:hover svg { transform: translateX(3px); }
.btn-next:active { transform: translateY(0); }

.btn-confirm {
  background: var(--forest-green);
  box-shadow: 0 4px 16px rgba(76,122,79,0.25);
}

.btn-confirm:hover { background: var(--green-lt); box-shadow: 0 6px 20px rgba(76,122,79,0.3); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--river-blue);
  transition: all var(--t);
}

.btn-primary:hover { background: var(--river-blue-lt); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--river-blue);
  background: var(--white);
  border: 2px solid var(--border);
  transition: all var(--t);
}

.btn-secondary:hover { border-color: var(--river-blue); transform: translateY(-1px); }

/* ── FOOTER ── */
.site-footer {
  background: var(--deep-water);
  color: var(--white);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 40px;
  align-items: start;
}

.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: 1;
}

.footer-contact a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}

.footer-contact a:hover { color: var(--white); }

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  grid-column: 2;
  grid-row: 1 / 3;
}

.footer-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
}

.footer-links a:hover { color: var(--white); }
.footer-sep { color: rgba(255,255,255,0.2); }

.footer-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  grid-column: 1;
  margin-top: 4px;
}

/* ── UTILITIES ── */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-options { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .header-phone { display: none; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 14px; }
  .hero-cta { font-size: 15px; padding: 14px 28px; }
  .trust-sep { display: none; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .tour-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .payment-options { grid-template-columns: 1fr; }
  .wizard-nav { flex-direction: column-reverse; }
  .btn-back, .btn-next { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-column: 1; grid-row: auto; }
  .prog-label { font-size: 9px; }
  .prog-dot { width: 28px; height: 28px; font-size: 12px; }
  .prog-line { min-width: 16px; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .confirm-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  .tour-card-header { height: 90px; }
  .tour-emoji { font-size: 28px; }
}
