/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── Variables ────────────────────────────────────── */
:root {
  --gold: #C9A84C;
  --gold-dark: #9B7530;
  --black: #111111;
  --off-white: #F9F7F4;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --border: #E5E7EB;
  --radius: 4px;
  --nav-h: 72px;
}

/* ── Utility ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-dark); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--black); line-height: 1.2; margin-top: 10px; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 12px 24px; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; border: none; transition: all 0.2s; }
.btn-primary { background: var(--black); color: #fff; }
.btn-primary:hover { background: #333; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: #fff; color: var(--black); }

/* ── Top Bar ──────────────────────────────────────── */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  text-align: center;
  padding: 8px 24px;
  letter-spacing: 0.03em;
}
.top-bar a { color: var(--gold); }

/* ── Nav ──────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-top { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--black); }
.nav-logo-sub { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: #374151; transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 0.85rem; font-weight: 600; color: var(--black); white-space: nowrap; }
.nav-book { padding: 10px 20px; font-size: 0.82rem; }
.nav-menu-btn { display: none; background: none; border: none; font-size: 1.4rem; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1600&q=85') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.55); }
.hero-content {
  position: relative; z-index: 1;
  max-width: 640px; padding: 80px 0;
}
.hero-location { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 480px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-badges-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0;
}
.hero-badge {
  flex: 1; padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
  border-right: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}
.hero-badge:last-child { border-right: none; }
.hero-badge-icon { font-size: 1.4rem; }
.hero-badge-text { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; }
.hero-badge-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); }

/* ── Category Chips ───────────────────────────────── */
.categories { padding: 48px 0; border-bottom: 1px solid var(--border); }
.categories-inner { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cat-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-right: 8px; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 500; color: #374151;
  transition: all 0.2s; background: #fff;
}
.cat-chip:hover { border-color: var(--black); color: var(--black); }

/* ── Rentals Grid ─────────────────────────────────── */
.rentals { padding: 80px 0; }
.rentals-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 16px; }
.rentals-header-right { font-size: 0.875rem; color: var(--gray); }
.rentals-header-right a { color: var(--black); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.rentals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.rental-card { border: 1px solid var(--border); transition: box-shadow 0.2s; }
.rental-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.rental-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--light-gray); }
.rental-card-gallery { position: relative; width: 100%; height: 100%; }
.rental-card-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: none; }
.rental-card-gallery img.active { display: block; }
.rental-card:hover .rental-card-gallery img { transform: scale(1.04); }
.gallery-nav { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.2s; }
.gallery-dot.active { background: #fff; width: 20px; border-radius: 4px; }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: #fff; border: none; padding: 8px 12px; cursor: pointer; font-size: 1rem; transition: background 0.2s; z-index: 5; }
.gallery-arrow:hover { background: rgba(0,0,0,0.7); }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.rental-card-body { padding: 20px; }
.rental-card-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.rental-card-desc { font-size: 0.82rem; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }
.rental-color-picker { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 0.82rem; }
.rental-color-picker label { font-weight: 600; color: var(--black); white-space: nowrap; }
.rental-color-picker select { padding: 6px 10px; border: 1px solid var(--border); border-radius: 3px; font-size: 0.82rem; color: #374151; background: #fff; cursor: pointer; }
.rental-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rental-price { font-size: 1.25rem; font-weight: 700; color: var(--black); }
.rental-price span { font-size: 0.75rem; font-weight: 400; color: var(--gray); }
.rental-book-btn {
  padding: 9px 18px; font-size: 0.8rem; font-weight: 600;
  background: var(--black); color: #fff; border: none;
  letter-spacing: 0.04em; transition: background 0.2s;
}
.rental-book-btn:hover { background: var(--gold-dark); }

/* delivery card */
.delivery-card {
  grid-column: 1 / -1;
  background: var(--black); color: #fff;
  padding: 28px 32px;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.delivery-icon { font-size: 2.2rem; }
.delivery-body { flex: 1; }
.delivery-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.delivery-body p { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.delivery-price { font-size: 2.2rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.delivery-price span { font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.5); display: block; }

/* ── How It Works ─────────────────────────────────── */
.how { padding: 80px 0; background: var(--off-white); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.how-step { text-align: center; padding: 32px 24px; background: #fff; border: 1px solid var(--border); }
.how-num { width: 48px; height: 48px; background: var(--black); color: var(--gold); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.how-title { font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.how-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ── Booking Section ──────────────────────────────── */
.booking { padding: 80px 0; }
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.booking-left h2 { margin-bottom: 16px; }
.booking-left p { font-size: 0.95rem; color: var(--gray); margin-bottom: 24px; line-height: 1.7; }
.booking-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.booking-feature { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; }
.booking-feature-icon { width: 28px; height: 28px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
.booking-right { border: 1px solid var(--border); }
.booking-right-header { background: var(--black); color: #fff; padding: 20px 24px; }
.booking-right-header h3 { font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; }
.booking-right-header p { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.booking-widget-area { padding: 32px 24px; min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--off-white); }
.booking-widget-placeholder { text-align: center; }
.booking-widget-placeholder .widget-icon { font-size: 3rem; margin-bottom: 16px; }
.booking-widget-placeholder h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.booking-widget-placeholder p { font-size: 0.82rem; color: var(--gray); max-width: 280px; margin: 0 auto 20px; line-height: 1.6; }
.book-now-btn {
  padding: 14px 32px; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--gold); color: var(--black); border: none;
  transition: all 0.2s; width: 100%; max-width: 280px;
}
.book-now-btn:hover { background: var(--gold-dark); color: #fff; }

/* ── Occasions ────────────────────────────────────── */
.occasions { padding: 80px 0; background: var(--black); }
.occasions h2 { color: #fff; }
.occasions .section-label { color: var(--gold); }
.occasions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 40px; }
.occasion-card { border: 1px solid rgba(255,255,255,0.12); padding: 28px 16px; text-align: center; transition: border-color 0.2s; }
.occasion-card:hover { border-color: var(--gold); }
.occasion-icon { font-size: 1.8rem; margin-bottom: 12px; }
.occasion-name { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* ── Testimonial ──────────────────────────────────── */
.testimonial { padding: 80px 0; background: var(--off-white); }
.testimonial-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 24px; }
.testimonial blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.15rem, 2.5vw, 1.45rem); font-style: italic; color: var(--black); line-height: 1.6; margin-bottom: 24px; }
.testimonial cite { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }

/* ── FAQ ──────────────────────────────────────────── */
.faq { padding: 80px 0; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.faq-left p { font-size: 0.95rem; color: var(--gray); margin-top: 12px; line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.925rem; font-weight: 600; color: var(--black); gap: 16px;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-a { display: none; font-size: 0.875rem; color: var(--gray); padding-bottom: 20px; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── Contact Banner ───────────────────────────────── */
.contact-banner { background: var(--gold); padding: 56px 0; }
.contact-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.contact-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--black); }
.contact-banner p { font-size: 0.95rem; color: rgba(0,0,0,0.65); margin-top: 6px; }
.contact-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────── */
footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo-top { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; font-weight: 700; }
.footer-logo-sub { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.footer-desc { font-size: 0.82rem; line-height: 1.7; margin-top: 14px; max-width: 260px; }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.78rem; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.2s; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── Waiver Modal ─────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; width: 100%; max-width: 580px;
  max-height: 92vh; overflow-y: auto;
  display: flex; flex-direction: column;
}
.modal-head {
  background: var(--black); color: #fff;
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: flex-start;
  position: sticky; top: 0; z-index: 1;
  border-bottom: 3px solid var(--gold);
}
.modal-head h3 { font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; }
.modal-head p { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 3px; }
.modal-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.4rem; line-height: 1; padding: 0; margin-left: 16px; flex-shrink: 0; }
.modal-close:hover { color: #fff; }
.modal-body { padding: 28px; flex: 1; }
.waiver-section { margin-bottom: 22px; }
.waiver-section h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #eee; }
.waiver-section p, .waiver-section li { font-size: 0.85rem; color: #444; line-height: 1.75; }
.waiver-section ul { padding-left: 18px; margin-top: 6px; }
.waiver-section li { margin-bottom: 4px; }
.agree-box { background: #FFFBF0; border: 1px solid #E8D5A3; padding: 18px 20px; margin: 24px 0 20px; }
.agree-box label { display: flex; gap: 12px; font-size: 0.875rem; color: var(--black); cursor: pointer; }
.agree-box input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold-dark); }
.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 28px 28px; }
.modal-cancel { padding: 13px; background: transparent; border: 1.5px solid var(--border); font-size: 0.85rem; font-weight: 600; color: var(--gray); transition: all 0.2s; }
.modal-cancel:hover { border-color: var(--black); color: var(--black); }
.modal-proceed { padding: 13px; background: var(--gold); border: none; font-size: 0.85rem; font-weight: 700; color: var(--black); letter-spacing: 0.05em; transition: all 0.2s; }
.modal-proceed:hover:not(:disabled) { background: var(--gold-dark); color: #fff; }
.modal-proceed:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Mobile Nav ───────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: #fff; padding: 80px 24px 32px;
  flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 16px 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--black); }

/* ── Booking Modal ────────────────────────────────── */
.booking-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px;
  overflow-y: auto;
}
.booking-modal-overlay.open { display: flex; }

.booking-modal {
  background: #fff; width: 100%; max-width: 700px;
  max-height: 90vh; overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: 8px;
}

.booking-modal-header {
  background: var(--black); color: #fff;
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}

.booking-modal-header h2 { font-size: 1.3rem; font-weight: 700; margin: 0; }
.booking-step-counter { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.booking-modal-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.4rem; line-height: 1; padding: 0; cursor: pointer; }
.booking-modal-close:hover { color: #fff; }

.booking-modal-body {
  flex: 1; overflow-y: auto; padding: 28px;
}

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

.booking-step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.booking-step > p { margin-bottom: 24px; }

/* Dates */
.booking-dates {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px;
}
.booking-date-group { display: flex; flex-direction: column; }
.booking-date-group label { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--black); }
.booking-date-group input { padding: 10px 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 0.9rem; }

/* Enlarge the calendar picker widget on mobile */
@supports (accent-color: red) {
  .booking-date-group input[type="date"] {
    padding: 10px 12px;
  }
}

/* Form input error state */
.booking-form-group input.field-error,
.booking-date-group input.field-error { border-color: #dc2626; border-width: 2px; background-color: #fee2e2; }

/* Items List */
.booking-items-section h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.booking-items-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.booking-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; border: 1px solid var(--border); border-radius: 4px;
  background: #fafafa;
}

.booking-item input[type="checkbox"] {
  width: 18px; height: 18px; cursor: pointer; accent-color: var(--gold-dark);
}

.booking-item label {
  display: flex; align-items: center; gap: 12px; flex: 1; cursor: pointer; margin: 0;
}

.item-name { font-weight: 600; color: var(--black); font-size: 0.9rem; }
.item-price { font-size: 0.8rem; color: var(--gray); }

.booking-item .item-qty {
  width: 60px; padding: 6px 8px; border: 1px solid var(--border); border-radius: 3px;
  font-size: 0.85rem; text-align: center;
}

/* Method Selection */
.booking-method h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; color: var(--black); }
.booking-radio-group { display: flex; flex-direction: column; gap: 10px; }
.booking-radio-group label {
  display: flex; align-items: center; gap: 10px; font-size: 0.9rem; cursor: pointer; margin: 0;
  padding: 10px; border: 1px solid var(--border); border-radius: 4px; background: #fafafa;
}
.booking-radio-group input[type="radio"] {
  width: 18px; height: 18px; cursor: pointer; accent-color: var(--gold-dark);
}

/* Summary */
.booking-summary { display: flex; flex-direction: column; gap: 20px; }
.summary-section { padding: 16px; background: var(--light-gray); border-radius: 4px; }
.summary-section h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.summary-section p { font-size: 0.9rem; color: #374151; margin: 0; }

.summary-items { display: flex; flex-direction: column; gap: 6px; }
.summary-item {
  display: flex; justify-content: space-between; font-size: 0.9rem; color: #374151;
}

.summary-total {
  display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700;
  padding: 16px; background: var(--off-white); border-radius: 4px; color: var(--black);
}

/* Form Fields */
.booking-form-group {
  display: flex; flex-direction: column; margin-bottom: 16px;
}
.booking-form-group label {
  font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--black);
}
.booking-form-group input {
  padding: 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 0.9rem; min-height: 44px;
}

/* Waiver Section */
.booking-waiver-section {
  background: var(--off-white); padding: 20px; border-radius: 4px; margin: 20px 0;
}
.booking-waiver-section h4 {
  font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--black);
}
.waiver-content { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.waiver-item { font-size: 0.85rem; }
.waiver-item strong { display: block; color: var(--black); margin-bottom: 4px; }
.waiver-item p { margin: 0; color: var(--gray); line-height: 1.5; }

.agree-box { background: #FFFBF0; border: 1px solid #E8D5A3; padding: 14px 16px; border-radius: 4px; margin-top: 16px; }
.agree-box label {
  display: flex; gap: 10px; font-size: 0.875rem; color: var(--black); cursor: pointer; margin: 0;
}
.agree-box input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold-dark);
}

/* Final Summary */
.booking-final-summary { display: flex; flex-direction: column; gap: 16px; }
.final-summary-block {
  padding: 16px; background: var(--light-gray); border-radius: 4px;
}
.final-summary-block h4 {
  font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--black);
}
.final-summary-block p {
  font-size: 0.9rem; color: #374151; margin: 0 0 6px;
}

.final-note {
  padding: 16px; background: #E8F3F8; border-left: 4px solid var(--gold); border-radius: 2px;
  font-size: 0.9rem; color: #1a5f7a;
}

/* Modal Footer */
.booking-modal-footer {
  padding: 20px 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 12px;
}

.booking-btn-secondary {
  padding: 11px 24px; font-size: 0.85rem; font-weight: 600;
  background: transparent; border: 1.5px solid var(--border); color: var(--gray);
  transition: all 0.2s; cursor: pointer; border-radius: 4px;
}
.booking-btn-secondary:hover {
  border-color: var(--black); color: var(--black);
}

.booking-btn-primary {
  padding: 11px 32px; font-size: 0.85rem; font-weight: 700;
  background: var(--black); color: #fff; border: none;
  transition: all 0.2s; cursor: pointer; border-radius: 4px;
}
.booking-btn-primary:hover {
  background: #333;
}

.booking-submit-btn {
  background: var(--gold) !important; color: var(--black) !important;
}
.booking-submit-btn:hover {
  background: var(--gold-dark) !important; color: #fff !important;
}

/* Confirmation Message */
.booking-confirmation {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}

.booking-confirmation-content {
  background: #fff; padding: 40px; border-radius: 8px;
  text-align: center; max-width: 400px;
}

.booking-confirmation-content h2 {
  color: var(--gold-dark); font-size: 1.5rem; margin-bottom: 12px;
}

.booking-confirmation-content p {
  color: var(--gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 12px;
}

.booking-confirmation-content button {
  padding: 12px 32px; background: var(--black); color: #fff;
  border: none; border-radius: 4px; font-weight: 600; cursor: pointer;
  margin-top: 16px;
}

.booking-confirmation-content button:hover {
  background: #333;
}

/* Close modal on overlay click */
.booking-modal-overlay {
  cursor: pointer;
}

.booking-modal-overlay > div {
  cursor: default;
}

/* Responsive */
@media (max-width: 640px) {
  .booking-dates { grid-template-columns: 1fr; }
  .booking-modal-header { flex-direction: column; text-align: center; }
  .booking-modal-body { padding: 16px; }
  .booking-confirmation-content { padding: 24px; }

  /* Mobile: Slightly larger input to trigger bigger calendar widget */
  .booking-date-group input[type="date"] {
    padding: 12px;
    font-size: 16px;
  }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .rentals-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-inner { grid-template-columns: 1fr; gap: 32px; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-menu-btn { display: block; }
  .rentals-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .hero { padding-bottom: 120px; }
  .hero-content { padding: 40px 0; }
  .hero-badges-inner { flex-direction: column; }
  .hero-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .modal-actions { grid-template-columns: 1fr; }
  .rentals-header { flex-direction: column; align-items: flex-start; }
  .contact-banner-inner { flex-direction: column; }
}
