/* NPR MEDIA - Premium Booking Website Styles */
/* Dark luxury theme with golden accents */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #0d0a08;
  --bg-card: #1a1512;
  --bg-card-hover: #231d18;
  --gold: #c9a227;
  --gold-light: #e5c76b;
  --gold-dark: #a67c00;
  --gold-border: rgba(201, 162, 39, 0.5);
  --white: #f5f5f5;
  --white-muted: #b8b8b8;
  --success: #2ecc71;
  --success-hover: #27ae60;
  --primary-blue: #3498db;
  --primary-blue-hover: #2980b9;
  --danger: #e74c3c;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Sparkle/Bokeh Background Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 10, 8, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-border);
  padding: 1rem 2rem;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.header-contact:hover {
  color: var(--gold-light);
}

.header-contact svg {
  width: 18px;
  height: 18px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(13, 10, 8, 0.9) 0%, rgba(13, 10, 8, 0.7) 100%),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920') center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-profile {
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  text-align: left;
  max-width: 1200px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--white-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--success);
  color: white;
}

.btn-primary:hover {
  background: var(--success-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-dark);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold-border);
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section-title .decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.section-title .line {
  width: 80px;
  height: 2px;
  background: var(--gold);
}

.section-title p {
  color: var(--white-muted);
  font-size: 1.1rem;
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--white-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ========== SERVICE CARDS (Quick Book) ========== */
.service-cards {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-dark);
}

.service-cards::-webkit-scrollbar {
  height: 6px;
}

.service-cards::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

.service-cards::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.service-card {
  flex: 0 0 280px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  padding: 1.25rem;
}

.service-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.service-card-content .price {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ========== PROFILE CARDS ========== */
.profile-card {
  text-align: center;
}

.profile-card .card-image {
  aspect-ratio: 1;
}

.profile-card .card-image img {
  object-fit: cover;
}

.profile-card .card-content {
  padding: 1.5rem;
}

.profile-card .experience {
  color: var(--white-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.profile-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.how-step {
  text-align: center;
  padding: 1.5rem;
}

.how-step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}

.how-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.how-step p {
  color: var(--white-muted);
  font-size: 0.9rem;
}

/* ========== BOOKING FLOW BANNER ========== */
.booking-flow {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  padding: 3rem 2rem;
}

.booking-flow-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-muted);
  font-size: 0.95rem;
}

.flow-step .number {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.flow-arrow {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--gold-border);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.footer-feature h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.footer-feature p {
  color: var(--white-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ========== PAGE PROGRESS ========== */
.page-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
  color: var(--white-muted);
  font-size: 0.9rem;
}

.page-progress .current {
  color: var(--gold);
  font-weight: 600;
}

/* ========== STEP INDICATOR ========== */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.step-circle {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white-muted);
}

.step-circle.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.step-circle.completed {
  background: rgba(201, 162, 39, 0.3);
  border-color: var(--gold);
  color: var(--gold);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--gold-border);
}

/* ========== FORM ELEMENTS ========== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--white-muted);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-control::placeholder {
  color: var(--white-muted);
  opacity: 0.7;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a227' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ========== CHECKBOX & RADIO ========== */
.checkbox-item, .radio-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-item:hover, .radio-item:hover {
  border-color: var(--gold);
}

.checkbox-item.selected, .radio-item.selected {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.checkbox-item input, .radio-item input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-item .price, .radio-item .price {
  margin-left: auto;
  color: var(--gold);
  font-weight: 600;
}

/* ========== PRICE SUMMARY SIDEBAR ========== */
.price-summary {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.price-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-border);
}

.price-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.price-summary-row.total {
  border-top: 1px solid var(--gold-border);
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.price-summary .discount {
  color: var(--success);
  font-size: 0.9rem;
}

/* ========== CALENDAR MODAL ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  max-width: 450px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.25rem;
}

.modal-close {
  background: none;
  border: none;
  color: var(--white-muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--gold);
}

.modal-body {
  padding: 1.5rem;
}

.calendar {
  width: 100%;
  border-collapse: collapse;
}

.calendar th, .calendar td {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.calendar th {
  color: var(--white-muted);
  font-weight: 500;
}

.calendar td {
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
}

.calendar td.available:hover {
  background: rgba(46, 204, 113, 0.2);
}

.calendar td.booked {
  color: var(--white-muted);
  opacity: 0.5;
  cursor: not-allowed;
}

.calendar td.limited {
  background: rgba(230, 126, 34, 0.2);
}

.calendar td.selected {
  background: var(--gold);
  color: var(--bg-dark);
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.calendar-nav button {
  background: var(--bg-dark);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.calendar-nav button:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.availability-legend {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--white-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.available { background: var(--success); }
.legend-dot.booked { background: var(--danger); }
.legend-dot.limited { background: #e67e22; }

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gold-border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Model 2 - Event Type Options */
.event-type-options .radio-item {
  cursor: pointer;
}

/* Model 2 - Payment Structure (20/50/30) */
.payment-structure-model2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}

.payment-option .payment-percent {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  min-width: 50px;
}

.payment-option .price {
  margin-left: auto;
  font-weight: 600;
  color: var(--gold);
}

/* ========== TWO COLUMN LAYOUT ========== */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .two-column-layout {
    grid-template-columns: 1fr;
  }
  
  .price-summary {
    position: static;
  }
}

/* ========== PACKAGE CARDS ========== */
.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  border-color: var(--gold);
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.package-card h4 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.package-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.package-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold-border);
  font-size: 0.95rem;
  color: var(--white-muted);
}

.package-features li:last-child {
  border-bottom: none;
}

/* ========== EVENT CARDS ========== */
.event-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.event-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 4/5;
}

.event-card:hover,
.event-card.selected {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.event-card.selected::after {
  content: '✓';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.event-card-image {
  position: absolute;
  inset: 0;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.event-card-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.event-card-overlay p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

/* ========== ADD-ONS LIST ========== */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.addon-item:hover {
  border-color: var(--gold);
}

.addon-item input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
  cursor: pointer;
}

.addon-item span:first-of-type {
  flex: 1;
}

.addon-item .price {
  color: var(--gold);
  font-weight: 600;
}

/* ========== STICKY CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 10, 8, 0.98);
  border-top: 1px solid var(--gold-border);
  padding: 1rem 2rem;
  z-index: 999;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }
  
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .how-it-works {
    grid-template-columns: 1fr 1fr;
  }
  
  .booking-flow-inner {
    flex-direction: column;
  }
  
  .event-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .package-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-profile {
    flex-direction: column !important;
    text-align: center !important;
  }
  
  .platform-assurances {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .how-it-works {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* Multiday layout */
.multiday-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 400px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1200px) {
  .multiday-grid {
    grid-template-columns: 1fr;
  }
}
