/* ============================================================
   booking.css — yeeylo.icu/booking
   ============================================================ */

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

:root {
  --purple:      #8B5CF6;
  --purple-glow: rgba(139, 92, 246, 0.4);
  --gradient:    linear-gradient(135deg, #8B5CF6, #EC4899);
  --gold:        #F59E0B;
  --whatsapp:    #25D366;
  --bg:          #000;
  --card-bg:     #111117;
  --card-border: rgba(255,255,255,0.08);
  --white:       #fff;
  --muted:       rgba(255,255,255,0.5);
  --font-head:   'Space Grotesk', sans-serif;
  --font-body:   'Inter', sans-serif;
  --radius:      16px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(139,92,246,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 90%, rgba(236,72,153,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   ANIMATIONS — translateY only, content always visible
   ============================================================ */
@keyframes slideUp {
  from { transform: translateY(18px); }
  to   { transform: translateY(0); }
}

.anim    { animation: slideUp 0.5s var(--ease) both; }
.anim-d1 { animation-delay: 0.08s; }
.anim-d2 { animation-delay: 0.16s; }
.anim-d3 { animation-delay: 0.24s; }

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.booking-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px 80px;
  gap: 40px;
}

/* Back nav */
.back-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.back-link {
  color: var(--purple);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.7; }

/* Header */
.booking-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.booking-header p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
}

/* ============================================================
   OFFERS GRID
   ============================================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  align-items: start;
}

/* ============================================================
   OFFER CARD
   ============================================================ */
.offer-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.offer-card:hover {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 16px 50px rgba(139,92,246,0.12);
  transform: translateY(-4px);
}

/* Featured */
.offer-card--featured {
  border-color: var(--purple);
  box-shadow: 0 0 30px rgba(139,92,246,0.2);
}

.offer-card--featured:hover {
  box-shadow: 0 20px 60px rgba(139,92,246,0.3);
}

/* Badge */
.offer-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Card name */
.offer-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Price */
.offer-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-old {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-now {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.price-now--gold {
  color: var(--gold);
}

.price-per {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Features */
.offer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.offer-features li::before {
  content: '✓';
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
}

.offer-card--mvp .offer-features li::before {
  color: var(--gold);
}

/* Book button */
.btn-card {
  display: block;
  width: 100%;
  padding: 13px 20px;
  text-align: center;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-card:hover {
  border-color: var(--purple);
  background: rgba(139,92,246,0.12);
  transform: translateY(-2px);
}

/* ============================================================
   SOCIAL / CTA BLOCK
   ============================================================ */
.social-block {
  width: 100%;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-social:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.btn-social--whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
  border: 1.5px solid rgba(37, 211, 102, 0.35);
}

.btn-social--insta {
  background: rgba(139,92,246,0.12);
  color: var(--purple);
  border: 1.5px solid rgba(139,92,246,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .booking-page { padding: 32px 14px 60px; }
  .social-block { padding: 22px 16px; }
  .btn-social   { width: 100%; justify-content: center; }
}

/* Legal footer */
.legal-footer {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.legal-footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

.legal-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.legal-footer a:hover { color: var(--purple); }
