/* ============================================================
   LUXURY LANDING PAGE REDESIGN
   ============================================================ */

/* The header must ALWAYS be solid on this page */
.site-header { background: var(--navy) !important; box-shadow: 0 2px 20px rgba(7,24,46,.22) !important; }

.lux-main { background: #fff; }
.lux-section { padding: clamp(4rem, 8vw, 6rem) 0; }
.bg-warm { background-color: var(--bg-warm); }

/* 1. LUXURY HERO OVERLAP */
.lux-hero { padding-bottom: 12rem; /* Make room for overlap */ }

.lux-overlap-container {
  margin-top: -8rem; /* Pull up into the hero */
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
}

.lux-bento-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: start;
}

/* Gallery */
.lux-gallery {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 1rem;
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lg-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}
.lg-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lg-thumb {
  position: relative;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
}
.lg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lg-thumb:hover img { transform: scale(1.05); }
.lg-more .lg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,32,53,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.lg-more:hover .lg-overlay { background: rgba(15,32,53,0.85); }
.lg-overlay svg { width: 24px; height: 24px; color: var(--gold); margin-bottom: 0.5rem; }
.lg-overlay span { font-weight: 700; font-size: 0.9rem; }

/* Booking Card */
.lux-booking-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
}
.lb-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.lb-price-wrap { display: flex; flex-direction: column; }
.lb-price-lbl { font-size: 0.9rem; color: var(--ink-soft); }
.lb-price { font-size: 2.2rem; font-weight: 900; color: var(--navy); line-height: 1; margin: 0.2rem 0; }
.lb-tax { font-size: 0.8rem; color: var(--ink-light); }
.lb-rating { display: flex; flex-direction: column; align-items: flex-end; }
.lb-rating svg { color: var(--gold); fill: var(--gold); width: 20px; height: 20px; margin-bottom: 0.2rem; }
.lb-rating strong { font-size: 1.1rem; color: var(--navy); }
.lb-rating a { font-size: 0.85rem; color: var(--ink-soft); text-decoration: underline; }

.lb-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  margin: 2rem 0;
}
.lb-meta-item { display: flex; align-items: center; gap: 0.8rem; }
.lb-icon { width: 40px; height: 40px; background: var(--bg-warm); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.lb-icon svg { width: 18px; height: 18px; }
.lb-info { display: flex; flex-direction: column; }
.lb-info span { font-size: 0.8rem; color: var(--ink-soft); }
.lb-info strong { font-size: 0.95rem; font-weight: 700; color: var(--navy); }

.lb-code { background: var(--bg-warm); padding: 1rem; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; font-size: 0.95rem; }
.lb-code span { color: var(--ink-soft); }
.lb-code strong { color: var(--navy); font-family: monospace; font-size: 1.1rem; }

.lb-btn { padding: 1.2rem; font-size: 1.1rem; border-radius: 12px; box-shadow: 0 8px 20px rgba(200,155,94,0.3); }
.lb-actions { display: flex; justify-content: space-between; margin-top: 1.5rem; }
.lb-actions button { background: none; border: none; color: var(--navy); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 0.4rem; cursor: pointer; transition: color 0.2s; }
.lb-actions button:hover { color: var(--gold); }
.lb-actions button svg { width: 18px; height: 18px; color: var(--ink-soft); transition: color 0.2s; }
.lb-actions button:hover svg { color: var(--gold); }

/* 2. FEATURES GRID */
.lux-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.lux-f-card { background: #fff; padding: 2.5rem 2rem; border-radius: var(--r-xl); text-align: center; border: 1px solid var(--line); transition: transform 0.3s, box-shadow 0.3s; }
.lux-f-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(200,155,94,0.3); }
.lf-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; border-radius: 50%; background: var(--bg-warm); color: var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.lf-icon svg { width: 30px; height: 30px; }
.lux-f-card h4 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.lux-f-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; margin: 0; }

/* 3. TIMELINE */
.lux-sticky-map { position: sticky; top: 120px; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--line); background: #fff; }
.ls-img { width: 100%; height: 350px; object-fit: cover; }
.ls-content { padding: 1.5rem; text-align: center; }
.ls-icon { width: 24px; height: 24px; color: var(--gold); margin-bottom: 0.5rem; }
.ls-content h5 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.ls-content p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

.lux-timeline { position: relative; padding-right: 20px; }
.lux-timeline::before { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 2px; background: rgba(200,155,94,0.2); }
.lt-item { position: relative; margin-bottom: 3rem; padding-right: 3rem; }
.lt-item:last-child { margin-bottom: 0; }
.lt-dot { position: absolute; right: -7px; top: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--bg-warm); border: 3px solid var(--gold); z-index: 2; box-shadow: 0 0 0 4px #fff; }
.lt-item.active .lt-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(200,155,94,0.2); }

.lt-card { background: #fff; border-radius: 16px; padding: 2rem; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: box-shadow 0.3s; }
.lt-item:hover .lt-card { box-shadow: var(--sh-md); border-color: rgba(200,155,94,0.3); }
.lt-day-badge { display: inline-block; padding: 4px 12px; background: var(--navy); color: var(--gold); font-size: 0.85rem; font-weight: 700; border-radius: 99px; margin-bottom: 1rem; }
.lt-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.lt-desc { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 1.5rem; }

.lt-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; background: var(--bg-warm); padding: 1rem 1.5rem; border-radius: 12px; }
.lt-meta-item { display: flex; align-items: center; gap: 1rem; }
.lt-meta-item > svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
.lt-meta-item span { display: block; font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 0.2rem; }
.lt-meta-item strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); }

/* 4. HOTELS */
.lux-hotel-card { background: #fff; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform 0.3s, box-shadow 0.3s; }
.lux-hotel-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.lhc-img { height: 220px; overflow: hidden; }
.lhc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.lux-hotel-card:hover .lhc-img img { transform: scale(1.05); }
.lhc-body { padding: 1.5rem; text-align: center; }
.lhc-body .stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); margin-bottom: 1rem; }
.lhc-body h4 { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.lhc-body span { font-size: 0.9rem; color: var(--ink-soft); display: block; }

/* 5. INCLUSIONS */
.lux-inc-wrapper { background: #fff; border-radius: var(--r-xl); padding: 4rem; box-shadow: var(--sh-lg); border: 1px solid var(--line); }
.li-title { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.8rem; }
.li-title svg { width: 28px; height: 28px; }
.lux-inc-list, .lux-exc-list { list-style: none; padding: 0; margin: 0; }
.lux-inc-list li, .lux-exc-list li { position: relative; padding-right: 1.8rem; font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.6; }
.lux-inc-list li::before, .lux-exc-list li::before { content: ''; position: absolute; right: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; }
.lux-inc-list li::before { background: var(--green); }
.lux-exc-list li::before { background: #E53E3E; }

/* 6. REVIEWS */
.lux-review-card { background: #fff; padding: 3rem; border-radius: var(--r-xl); border: 1px solid var(--line); box-shadow: var(--sh-md); position: relative; height: 100%; display: flex; flex-direction: column; }
.lr-quote { position: absolute; top: 1rem; right: 2rem; font-size: 6rem; line-height: 1; color: var(--bg-warm); font-family: serif; font-weight: 900; z-index: 0; }
.lr-text { font-size: 1.15rem; color: var(--navy); line-height: 1.8; font-style: italic; position: relative; z-index: 1; margin-bottom: 2rem; flex-grow: 1; }
.lr-user { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.lr-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.lr-avatar svg { width: 24px; height: 24px; }
.lr-user strong { display: block; font-size: 1.1rem; color: var(--navy); font-weight: 800; }
.lr-user span { font-size: 0.85rem; color: var(--ink-soft); }
.lux-review-card .stars svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }

/* 7. CTA */
.lux-cta-sec { background: var(--navy); padding: 6rem 0; color: #fff; position: relative; overflow: hidden; }
.lux-cta-sec::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&q=80&w=1920') center/cover; opacity: 0.05; }
.lux-cta-sec h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; position: relative; z-index: 1; }
.lux-cta-sec p { font-size: 1.2rem; color: rgba(255,255,255,0.8); position: relative; z-index: 1; }
.lc-actions { position: relative; z-index: 1; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.lc-actions .btn-x { padding: 1.2rem 2.5rem; font-size: 1.1rem; border-radius: 99px; }

/* Responsive */
@media (max-width: 1199px) {
  .lux-bento-grid { grid-template-columns: 1fr 350px; }
  .lux-inc-wrapper { padding: 3rem 2rem; }
}
@media (max-width: 991px) {
  .lux-overlap-container { margin-top: -3rem; }
  .lux-bento-grid { grid-template-columns: 1fr; }
  .lux-features { grid-template-columns: repeat(2, 1fr); }
  .lg-main img { height: 350px; }
}
@media (max-width: 767px) {
  .lux-features { grid-template-columns: 1fr; }
  .lux-inc-wrapper { padding: 2rem 1.5rem; }
}
@media (max-width: 576px) {
  .lg-thumbs { grid-template-columns: repeat(2, 1fr); }
  .lg-thumb:last-child { display: none; } /* Hide one to keep even grid */
  .lb-meta-grid { grid-template-columns: 1fr; }
  .lc-actions .btn-x { width: 100%; }
}
