/* ══════════════════════════════════════════
   booking.css — booking page only
   ══════════════════════════════════════════ */

/* ── BOOKING BODY OVERRIDE ── */
/* Booking uses foam background, not white */
body {
  background: var(--foam);
  min-height: 100vh;
}

/* Booking also styles h4 */
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; }

.hero-strip {
      background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
      padding: 22px 16px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero-strip-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.18;
  z-index:0;
}

.hero-strip-inner{
  position:relative;
  z-index:1;
}
    
    .hero-strip h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; position: relative; margin-bottom: 8px; }
    .hero-strip h1 em { font-style: italic; color: var(--ocean-light); }
    .hero-strip p { color: rgba(255,255,255,0.8); font-size: 15px; position: relative; }
    
    .badge {
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.3);
      color: #fff;
      font-size: 11px;
      padding: 5px 12px;
      border-radius: 20px;
      letter-spacing: 0.3px;
      flex: 0 0 auto;
      white-space: nowrap;
    }

    /* ── MAIN LAYOUT ── */
    .page-wrap {
  max-width: 960px;
  margin: 24px auto 60px;   /* ✅ no negative margin */
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 2;               /* ✅ ensures it sits above hero visuals */
}

    /* ── CARD ── */
    .card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .card-header {
      padding: 24px 28px 0;
      border-bottom: 1px solid rgba(10,61,98,0.07);
      padding-bottom: 16px;
      margin-bottom: 24px;
    }
    .card-header h2 { font-size: 1.5rem; color: var(--ocean); font-weight: 600; }
    .card-header p { font-size: 13px; color: var(--text-muted); margin-top: 3px; }
    .card-body { padding: 0 28px 28px; }

    /* ── STEP INDICATOR ── */
    .steps {
      display: flex;
      align-items: center;
      padding: 20px 28px;
      gap: 0;
      border-bottom: 1px solid rgba(10,61,98,0.07);
      margin-bottom: 28px;
    }
    .step {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
    }
    .step-num {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--foam);
      color: var(--text-muted);
      font-size: 13px;
      font-weight: 500;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .step.active .step-num { background: var(--ocean); color: #fff; }
    .step.done .step-num { background: var(--green); color: #fff; }
    .step-label { font-size: 12px; color: var(--text-muted); font-weight: 400; }
    .step.active .step-label { color: var(--ocean); font-weight: 500; }
    .step-line { flex: 1; height: 1px; background: rgba(10,61,98,0.12); margin: 0 8px; }

    /* ── FORM PANELS ── */
    .form-panel { display: none; }
    .form-panel.active { display: block; animation: fadeIn 0.3s ease; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

    /* ── DATE PICKER ── */
    .date-grid {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 4px;
      margin-bottom: 20px;
      width: 100%;
    }
    .cal-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
    .cal-nav button {
      background: var(--foam);
      border: none;
      width: 32px; height: 32px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
      color: var(--ocean);
      transition: background 0.2s;
    }
    .cal-nav button:hover { background: var(--ocean-light); color: #fff; }
    .cal-month{
  font-family:'Poppins',sans-serif;
  font-size: 1.1rem;
  color: var(--ocean);
  font-weight: 700;
  letter-spacing: -0.2px;
}
    .day-header { text-align: center; font-size: 11px; color: var(--text-muted); padding: 4px 0; letter-spacing: 0.5px; }
    .day-cell {
      width: 100%;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.15s;
      color: var(--text);
      border: 1px solid transparent;
      font-weight: 400;
    }
    .day-cell:hover:not(.disabled):not(.empty):not(.selected) {
  background: var(--foam);
  border-color: var(--ocean-light);
}

.day-cell.selected {
  background: var(--ocean);
  color: #fff;
  font-weight: 500;
  border-color: var(--ocean);
}
    .day-cell.today { border-color: var(--ocean-light); color: var(--ocean-mid); }
    .day-cell.disabled { color: #ccc; cursor: not-allowed; }
    .day-cell.empty { cursor: default; }
    .day-cell.past { color: #d0d0d0; cursor: not-allowed; }

    .date-note {
      font-size: 12px;
      color: var(--text-muted);
      background: var(--foam);
      padding: 10px 14px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    /* ── GUEST COUNTER ── */
    .guest-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 0;
      border-bottom: 1px solid rgba(10,61,98,0.07);
    }
    .guest-row:last-child { border-bottom: none; }
    .guest-info h4 { font-size: 1rem; color: var(--ocean); margin-bottom: 2px; }
    .guest-info p { font-size: 12px; color: var(--text-muted); }
    .counter {
      display: flex;
      align-items: center;
      gap: 0;
      border: 1px solid rgba(10,61,98,0.15);
      border-radius: 8px;
      overflow: hidden;
    }
    .counter-btn {
      width: 38px; height: 38px;
      background: var(--foam);
      border: none;
      font-size: 20px;
      color: var(--ocean);
      cursor: pointer;
      transition: background 0.2s;
      display: flex; align-items: center; justify-content: center;
      font-weight: 300;
    }
    .counter-btn:hover { background: var(--ocean-light); color: #fff; }
    .counter-val {
      width: 42px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-size: 16px;
      font-weight: 500;
      color: var(--ocean);
      background: #fff;
      user-select: none;
    }

    .guest-section{
  margin-bottom:24px;
}

.guest-type{
  font-size:1rem;
  color:var(--ocean);
  font-weight:600;
  margin-bottom:2px;
}

    /* ── FORM FIELDS ── */
    .field-group { display: flex; flex-direction: column; gap: 16px; }
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field label { font-size: 13px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.2px; }
    .field input, .field textarea, .field select {
      padding: 11px 14px;
      border: 1px solid rgba(10,61,98,0.18);
      border-radius: var(--radius);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: #fff;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      width: 100%;
    }
    .field input:focus, .field textarea:focus {
      border-color: var(--ocean-mid);
      box-shadow: 0 0 0 3px rgba(26,111,168,0.08);
    }
    .field input.error { border-color: var(--red); }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field textarea { min-height: 90px; resize: vertical; }

.hp-field{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}

.review-block{
  margin-bottom:24px;
}

.review-table{
  display:grid;
  gap:0;
  border:1px solid rgba(10,61,98,0.12);
  border-radius:8px;
  overflow:hidden;
}

.review-row{
  display:flex;
  justify-content:space-between;
  padding:12px 16px;
  border-bottom:1px solid rgba(10,61,98,0.07);
  font-size:13px;
}

.review-row--total{
  background:var(--foam);
}

.review-label{
  color:var(--text-muted);
}

.review-value{
  color:var(--text);
  text-align:right;
  font-weight:400;
}

.review-row--total .review-value{
  font-weight:600;
}

    /* ── BUTTONS ── */
    .btn-row { display: flex; gap: 12px; margin-top: 28px; }
    .btn-next, .btn-back, .btn-confirm {
      padding: 13px 28px;
      border-radius: var(--radius);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      display: flex; align-items: center; gap: 8px;
    }
    .btn-next, .btn-confirm { background: var(--ocean); color: #fff; flex: 1; justify-content: center; }
    .btn-next:hover, .btn-confirm:hover { background: var(--ocean-mid); }
    .btn-next:disabled { background: #ccc; cursor: not-allowed; }
    .btn-back { background: var(--foam); color: var(--ocean); }
    .btn-back:hover { background: #dbeef8; }

    /* ── SIDEBAR: SUMMARY ── */
    .summary-card { position: sticky; top: 20px; }
    .summary-card .card-body { padding: 0 24px 24px; }
    .summary-img { width: 100%; height: 160px; object-fit: cover; }
    .summary-title { font-size: 1.2rem; color: var(--ocean); margin: 20px 0 4px; }
    .summary-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
    .summary-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid rgba(10,61,98,0.07);
      font-size: 13px;
    }
    .summary-row:last-of-type { border-bottom: none; }
    .summary-row .lbl { color: var(--text-muted); }
    .summary-row .val { color: var(--text); font-weight: 500; text-align: right; }
    .summary-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0 0;
      margin-top: 8px;
      border-top: 2px solid rgba(10,61,98,0.12);
    }
    .summary-total .lbl { font-size: 14px; font-weight: 500; color: var(--ocean); }
    .summary-total .price small { font-size: 1rem; }
    .summary-total .price{
  font-family:'Poppins',sans-serif;
  font-size: 1.9rem;
  color: var(--ocean);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.summary-row-hidden{
  display:none;
}

.payment-note{
  background:var(--foam);
  border-radius:8px;
  padding:16px;
  font-size:13px;
  color:var(--text-muted);
  line-height:1.7;
  margin-bottom:20px;
}

.payment-note-title{
  color:var(--ocean);
  display:block;
  margin-bottom:6px;
}

.confirm-note{
  background:#f0fbf4;
  border:1px solid #b7e4c7;
  border-radius:8px;
  padding:14px 16px;
  font-size:13px;
  color:#1a7a3c;
  margin-bottom:20px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.confirm-note-icon{
  font-size:18px;
  line-height:1;
}


    .includes-list { margin-top: 16px; border-top: 1px solid rgba(10,61,98,0.07); padding-top: 14px; }
    .includes-list p { font-size: 11px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; }
    .inc-item { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
    .inc-item::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 11px; }

    /* ── SUCCESS STATE ── */
    .success-panel { display: none; text-align: center; padding: 60px 28px; }
    .success-panel.active { display: block; animation: fadeIn 0.5s ease; }
    .success-icon { font-size: 64px; margin-bottom: 16px; }
    .success-panel h2 { font-size: 2rem; color: var(--ocean); margin-bottom: 10px; }
    .success-panel p { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 380px; margin: 0 auto 24px; }
    .success-help{
  font-size:13px;
  color:var(--text-muted);
  margin-bottom:16px;
}
    .success-ref {
      display: inline-block;
      background: var(--foam);
      border: 1px dashed var(--ocean-light);
      color: var(--ocean);
      font-family: monospace;
      font-size: 16px;
      padding: 10px 20px;
      border-radius: var(--radius);
      margin-bottom: 28px;
      letter-spacing: 2px;
    }
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      color: #fff;
      padding: 13px 24px;
      border-radius: var(--radius);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
    }
    .btn-whatsapp:hover { background: #1ebe5a; }

    /* ── LOADING SPINNER ── */
    .spinner { display: none; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── ERROR MSG ── */
    .form-error { display: none; background: #fdf0f0; border: 1px solid #f5c6c6; color: var(--red); padding: 10px 14px; border-radius: var(--radius); font-size: 13px; margin-top: 12px; }
    .form-error.show { display: block; }

    /* ── VALIDATION ── */
    .val-msg { font-size: 11px; color: var(--red); display: none; margin-top: 2px; }
    .val-msg.show { display: block; }

    @media (max-width: 720px) {
      .page-wrap { grid-template-columns: 1fr; }
      .summary-card { order: -1; position: static; }
      .field-row { grid-template-columns: 1fr; }
      .steps { padding: 16px; }
      .step-label { display: none; }
    }
  


    /* Steps: use sunset for active accent */
    .step.active .step-num{ background: var(--sunset); }
    .step.done .step-num{ background: var(--green); }
    .hero-strip h1 em{ color: var(--sunset); }
    .day-cell.selected{
      background: var(--ocean);
      box-shadow: 0 0 0 3px rgba(247,127,58,0.20);
    }
