/* ===== DESIGN TOKENS ===== */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);

  --content-default: 1100px;
  --content-narrow: 700px;
}

/* ===== LIGHT MODE PALETTE — Vacation Fun ===== */
:root, [data-theme="light"] {
  --color-bg: #fff9f2;
  --color-surface: #ffffff;
  --color-surface-2: #fff4e8;
  --color-border: #f0e4d0;
  --color-text: #1e1408;
  --color-muted: #7a6a50;
  --color-faint: #c4b49a;
  --color-text-inverse: #ffffff;

  /* Primary: bright ocean blue */
  --color-primary: #0076c6;
  --color-primary-hover: #005fa3;
  --color-primary-light: #e0f2ff;

  /* Accent: warm sunny orange */
  --color-accent: #f5820a;
  --color-accent-hover: #d96c00;
  --color-accent-light: #fff3e0;

  /* Success */
  --color-success: #2e7d32;
  --color-success-bg: #e8f5e9;

  /* Warning */
  --color-warn: #e65100;
  --color-warn-bg: #fff3e0;
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
  --color-bg: #0f1117;
  --color-surface: #161b25;
  --color-surface-2: #1c2333;
  --color-border: #2a3347;
  --color-text: #e8eaf0;
  --color-muted: #8a94a8;
  --color-faint: #4a5568;
  --color-text-inverse: #0f1117;

  --color-primary: #3da5ff;
  --color-primary-hover: #60b8ff;
  --color-primary-light: #1a2c3d;

  --color-accent: #ff9e2c;
  --color-accent-hover: #ffb455;
  --color-accent-light: #2d1f00;

  --color-success: #4caf50;
  --color-success-bg: #1b2e1c;

  --color-warn: #ff7043;
  --color-warn-bg: #2d1a0e;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0f1117;
    --color-surface: #161b25;
    --color-surface-2: #1c2333;
    --color-border: #2a3347;
    --color-text: #e8eaf0;
    --color-muted: #8a94a8;
    --color-faint: #4a5568;
    --color-text-inverse: #0f1117;
    --color-primary: #3da5ff;
    --color-primary-hover: #60b8ff;
    --color-primary-light: #1a2c3d;
    --color-accent: #ff9e2c;
    --color-accent-hover: #ffb455;
    --color-accent-light: #2d1f00;
    --color-success: #4caf50;
    --color-success-bg: #1b2e1c;
    --color-warn: #ff7043;
    --color-warn-bg: #2d1a0e;
  }
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  min-height: 100dvh;
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; font-family: 'Chillax', sans-serif; }
p, li { text-wrap: pretty; }
a { color: var(--color-primary); transition: color var(--transition); }
a:hover { color: var(--color-primary-hover); }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; transition: all var(--transition); }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; color: var(--color-text); }
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-text); border-color: var(--color-primary); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--color-accent);
  color: #fff;
  font-family: 'Chillax', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--color-accent) 40%, transparent);
  text-decoration: none;
}
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); box-shadow: 0 6px 24px color-mix(in srgb, var(--color-accent) 50%, transparent); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-large { padding: var(--space-5) var(--space-10); font-size: var(--text-base); }
.btn-primary:disabled { opacity: 0.45; pointer-events: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
}
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: var(--space-12) var(--space-8) var(--space-20);
  max-width: var(--content-default);
  margin: 0 auto;
}
.offer-badge {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.hero-title {
  font-family: 'Chillax', sans-serif;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--space-6);
  max-width: 52ch;
}
.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.perk-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}
.hero-fine {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  max-width: 55ch;
}

/* ===== FLOW SECTION ===== */
.flow-section {
  background: var(--color-bg);
  padding: var(--space-16) var(--space-6);
  min-height: 80vh;
}
.flow-wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* Progress */
.progress-bar {
  margin-bottom: var(--space-12);
}
.progress-track {
  height: 4px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 25%;
}
.progress-steps {
  display: flex;
  justify-content: space-between;
}
.step-dot {
  width: 30px; height: 30px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  color: var(--color-muted);
  transition: all 0.3s ease;
}
.step-dot.active, .step-dot.done {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}
.step-dot.done {
  background: var(--color-success);
  border-color: var(--color-success);
}

/* Flow Steps */
.flow-step { display: none; }
.flow-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.step-header { margin-bottom: var(--space-8); }
.step-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.step-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.step-desc {
  font-size: var(--text-base);
  color: var(--color-muted);
  max-width: 56ch;
}

/* Qualify checkboxes */
.qualify-list { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-6); }
.qualify-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.qualify-item:hover { border-color: var(--color-primary); }
.qualify-item input[type="checkbox"] { display: none; }
.check-box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  margin-top: 2px;
}
.qualify-item input:checked ~ .check-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.qualify-item input:checked ~ .check-box::after {
  content: '';
  display: block;
  width: 5px; height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.qualify-item input:checked ~ .qualify-text strong { color: var(--color-primary); }
.qualify-text { flex: 1; }
.qualify-text strong { display: block; font-weight: 600; margin-bottom: var(--space-1); }
.qualify-text span { font-size: var(--text-sm); color: var(--color-muted); }

.alert {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
}
.alert-warn { background: var(--color-warn-bg); color: var(--color-warn); border: 1px solid color-mix(in srgb, var(--color-warn) 30%, transparent); }

/* Offer cards */
.offer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.offer-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.offer-card.featured {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}
.offer-card-icon { font-size: 2rem; margin-bottom: var(--space-3); }
.offer-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.offer-card p { font-size: var(--text-sm); color: var(--color-muted); }
.offer-details-list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.offer-details-list li {
  font-size: var(--text-sm);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.offer-details-list li::before { content: '·'; color: var(--color-accent); font-weight: 900; }
.badge-no {
  display: inline-block;
  background: #fee2e2;
  color: #dc2626;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: var(--space-2);
}
[data-theme="dark"] .badge-no { background: #3b1111; color: #f87171; }
.what-to-expect {
  padding: var(--space-5) var(--space-6);
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
}
.what-to-expect h3 { font-size: var(--text-base); margin-bottom: var(--space-2); color: var(--color-primary); }
.what-to-expect p { font-size: var(--text-sm); color: var(--color-muted); }

/* Calendar */
.date-picker-wrap { margin-bottom: var(--space-8); }
.date-calendar {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  overflow: hidden;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}
.cal-header h3 { font-size: var(--text-lg); font-weight: 600; }
.cal-nav {
  display: flex;
  gap: var(--space-2);
}
.cal-nav button {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1;
}
.cal-nav button:hover { border-color: var(--color-primary); color: var(--color-primary); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-1);
}
.cal-day-name {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  padding: var(--space-2) 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-text);
  min-height: 36px;
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--color-primary-light); color: var(--color-primary); }
.cal-day.selected { background: var(--color-primary); color: white; font-weight: 700; box-shadow: var(--shadow-sm); }
.cal-day.disabled { color: var(--color-faint); cursor: not-allowed; text-decoration: line-through; }
.cal-day.empty { cursor: default; }
.cal-day.today { font-weight: 700; color: var(--color-accent); }

.selected-date-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-success-bg);
  color: var(--color-success);
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
}
.selected-date-card strong { display: block; font-size: var(--text-base); }
.stay-reminder {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--color-warn-bg);
  color: var(--color-warn);
  border-radius: var(--radius-md);
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.form-group input {
  padding: var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-size: var(--text-base);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 15%, transparent); }
.form-group input::placeholder { color: var(--color-faint); }

.booking-summary {
  padding: var(--space-6);
  background: var(--color-accent-light);
  border: 1.5px solid color-mix(in srgb, var(--color-accent) 25%, transparent);
  border-radius: var(--radius-lg);
}
.booking-summary h4 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-4); color: var(--color-accent); }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--color-muted); }
.price-highlight { font-size: var(--text-lg); font-weight: 700; color: var(--color-accent); }

.form-agree { margin-top: var(--space-2); }
.form-agree .qualify-item { background: var(--color-surface-2); }

.step-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
  align-items: center;
}

/* Confirmation */
.confirmation-wrap { text-align: center; padding: var(--space-8) 0; }
.confirm-icon { display: flex; justify-content: center; margin-bottom: var(--space-6); }
.confirm-details {
  max-width: 400px;
  margin: var(--space-8) auto;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: left;
}
.confirm-note {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-top: var(--space-6);
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-6);
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
}
.section-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}
.section-inner--narrow { max-width: var(--content-narrow); }
.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.section-sub {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 60ch;
  margin-bottom: var(--space-10);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
.highlight-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.highlight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.highlight-icon { font-size: 2rem; margin-bottom: var(--space-4); }
.highlight-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.highlight-card p { font-size: var(--text-sm); color: var(--color-muted); }

.cta-center { text-align: center; }

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-6);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-8); }
.faq-item {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  text-align: left;
  gap: var(--space-4);
}
.faq-q:hover { color: var(--color-primary); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-q svg { transform: rotate(-180deg); }
.faq-a {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
}
.faq-item.open .faq-a { display: block; }
.faq-a p { padding-top: var(--space-4); }
.faq-a ul { padding: var(--space-4) 0 0 var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.faq-a ul li { list-style: disc; list-style-position: outside; }

/* ===== FOOTER ===== */
.footer {
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-12) var(--space-6) var(--space-8);
}
[data-theme="dark"] .footer { background: var(--color-surface); color: var(--color-text); border-top: 1px solid var(--color-border); }
.footer-inner {
  max-width: var(--content-default);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: var(--space-6);
}
[data-theme="dark"] .footer-inner { border-bottom-color: var(--color-border); }
.footer-brand svg { margin-bottom: var(--space-3); opacity: 0.9; }
.footer-brand p { font-size: var(--text-sm); opacity: 0.6; }
.footer-contact p { font-size: var(--text-sm); line-height: 1.8; opacity: 0.75; }
.footer-contact a { color: inherit; opacity: 0.9; }
.footer-contact a:hover { opacity: 1; }
.footer-legal {
  max-width: var(--content-default);
  margin: 0 auto;
  font-size: var(--text-xs);
  opacity: 0.4;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-content { padding-inline: var(--space-6); padding-bottom: var(--space-16); }
  .step-actions { flex-direction: column; }
  .step-actions .btn-primary, .step-actions .btn-secondary { width: 100%; justify-content: center; }
  .highlights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .header-inner { padding-inline: var(--space-4); }
  .flow-section { padding-inline: var(--space-4); }
}

/* ===== RESORT PHOTO GRID ===== */
.resort-photos {
  margin-bottom: var(--space-12);
}
.resort-photo-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-3);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.resort-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.resort-photo:hover { transform: scale(1.03); }
.resort-photo--tall {
  grid-row: 1 / 3;
  height: 100%;
  min-height: 300px;
}
@media (max-width: 640px) {
  .resort-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .resort-photo--tall {
    grid-row: auto;
    height: 200px;
  }
  .resort-photo { height: 160px; }
}

/* ===== PAYMENT STEP ===== */
.payment-summary-bar {
  background: var(--color-accent-light);
  border: 1.5px solid color-mix(in srgb, var(--color-accent) 25%, transparent);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
}
.pay-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
}
.pay-line strong { font-size: var(--text-lg); font-weight: 700; color: var(--color-accent); }
.pay-line--bonus { margin-top: var(--space-2); color: var(--color-success); font-size: var(--text-xs); font-weight: 600; }

.card-logos {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
}
.card-logo {
  display: flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.card-number-wrap { position: relative; }
.card-number-wrap input { padding-right: var(--space-16); }
.card-type-badge {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary);
  pointer-events: none;
}

.secure-notice {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-muted);
  padding: var(--space-3) var(--space-4);
  background: var(--color-success-bg);
  border-radius: var(--radius-md);
  margin-top: var(--space-2);
}

.payment-note {
  font-size: var(--text-xs);
  color: var(--color-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  margin-top: var(--space-4);
  line-height: 1.5;
}

.btn-pay {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-10);
  background: var(--color-success);
  color: white;
  font-family: 'Chillax', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--color-success) 35%, transparent);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-pay:hover { background: var(--color-success-hover, #1b5e20); transform: translateY(-1px); }
.btn-pay:disabled { opacity: 0.6; pointer-events: none; }

.payment-form { display: flex; flex-direction: column; gap: var(--space-5); }
