/* ============================================
   AUDIOHOLIC — BLACK & GOLD LUXURY THEME
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #b8960c;
  --primary: #d4af37;
  --primary-light: #f0d060;
  --primary-dark: #b8960c;
  --secondary: #c9a227;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-card: #161616;
  --light: #1a1a1a;
  --gray: #a3a3a3;
  --text: #f5f5f5;
  --muted: #9ca3af;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(0,0,0,0.5);
  --glass: rgba(10,10,10,0.85);
  --glass-border: rgba(212,175,55,0.2);
  --card-bg: #161616;
  --card-border: rgba(212,175,55,0.15);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.35);
  --card-hover-bg: rgba(212,175,55,0.06);
  --card-hover-border: rgba(212,175,55,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* ============================================
   NAVBAR
   ============================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 8px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253,248,236,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  z-index: 9999;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 16px rgba(154,123,10,0.1);
}

header.scrolled {
  padding: 6px 6%;
  box-shadow: 0 4px 24px rgba(154,123,10,0.15);
  border-bottom-color: rgba(212,175,55,0.4);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: clamp(50px, 7vw, 70px);
  width: auto;
  display: block;
  object-fit: contain;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  color: #333333;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover, nav a.active {
  color: #9a7b0a;
  background: rgba(212,175,55,0.18);
}

.nav-book-btn {
  padding: 7px 18px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #111 !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  margin-left: 8px;
  font-size: 13px !important;
}

.nav-book-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #9a7b0a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 6% 60px;
  overflow: hidden;
  box-sizing: border-box;
}

/* two-column inner wrapper */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: #0a0a0a url('images/banner1.jpg') no-repeat center bottom / cover;
}

.hero-bg-img {
  display: none;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: orbFloat 14s ease-in-out infinite;
}

.hero-orb-1 {
  width: 280px;
  height: 280px;
  background: var(--gold);
  top: 10%;
  left: 5%;
  animation-duration: 16s;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: #ff6b35;
  bottom: 20%;
  right: 15%;
  animation-duration: 12s;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 160px;
  height: 160px;
  background: var(--gold-light);
  top: 50%;
  left: 40%;
  animation-duration: 18s;
  animation-delay: -8s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.25) 65%, rgba(0,0,0,0.5) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle var(--dur, 8s) var(--delay, 0s) ease-in infinite;
}

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

.hero-content-left {
  text-align: left;
}

.hero-content-left .hero-tags {
  justify-content: flex-start;
}

.hero-content-left .hero-btns {
  justify-content: flex-start;
}

/* ── Inline stats row ── */
.hero-inline-stats {
  display: flex;
  gap: 0;
  margin-top: 32px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  animation: fadeUp 0.9s 0.8s ease both;
}

.hero-inline-stat {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid rgba(212,175,55,0.2);
}

.hero-inline-stat:last-child { border-right: none; }

.hero-inline-stat .stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-inline-stat .stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* hero right-side form wrapper */
.hero-form-wrap {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s 0.5s ease both;
  max-width: 400px;
  width: 100%;
  justify-self: end;
  margin-top: 20px;
  padding-top: 14px;
}

.hero-form-highlight {
  padding: 3px;
  margin-top: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  box-shadow:
    0 0 0 1px rgba(212,175,55,0.4),
    0 20px 60px rgba(0,0,0,0.45),
    0 0 50px rgba(212,175,55,0.35);
}

.form-highlight-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(212,175,55,0.45);
}

.hero-form-wrap::-webkit-scrollbar { display: none; }

.hero-booking-form {
  background: linear-gradient(180deg, #fffdf7 0%, #fdf8ec 100%) !important;
  border: none !important;
  border-radius: 13px !important;
  padding: 26px 20px 20px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8) !important;
}

.hero-booking-form h3 {
  font-size: 17px !important;
  margin-bottom: 16px !important;
  color: #9a7b0a !important;
  text-align: center;
}

.hero-booking-form .form-row {
  gap: 10px !important;
}

.hero-booking-form .form-group {
  margin-bottom: 6px !important;
}

.hero-booking-form .form-group label {
  font-size: 10px !important;
  margin-bottom: 3px !important;
  color: #555 !important;
  font-weight: 600 !important;
}

.hero-booking-form input,
.hero-booking-form textarea,
.hero-booking-form select {
  padding: 8px 11px !important;
  font-size: 12px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid rgba(154,123,10,0.25) !important;
  color: #1a1a1a !important;
}

.hero-booking-form input:focus,
.hero-booking-form textarea:focus,
.hero-booking-form select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2) !important;
}

.hero-booking-form input::placeholder,
.hero-booking-form textarea::placeholder {
  color: #999 !important;
}

.hero-booking-form textarea {
  min-height: 48px !important;
}

.hero-booking-form .btn-full {
  margin-top: 2px !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
}

/* ── CTA section booking form — same cream bg, full-size overrides ── */
.booking-section .hero-booking-form {
  padding: 40px 36px !important;
}

.booking-section .hero-booking-form h3 {
  font-size: 22px !important;
  margin-bottom: 28px !important;
}

.booking-section .hero-booking-form .form-row {
  gap: 16px !important;
}

.booking-section .hero-booking-form .form-group {
  margin-bottom: 16px !important;
}

.booking-section .hero-booking-form .form-group label {
  font-size: 13px !important;
  margin-bottom: 6px !important;
  color: #555 !important;
  font-weight: 600 !important;
}

.booking-section .hero-booking-form input,
.booking-section .hero-booking-form textarea,
.booking-section .hero-booking-form select {
  padding: 12px 16px !important;
  font-size: 15px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid rgba(154,123,10,0.25) !important;
  color: #1a1a1a !important;
}

.booking-section .hero-booking-form textarea {
  min-height: 110px !important;
}

.booking-section .hero-booking-form .btn-full {
  margin-top: 8px !important;
  padding: 14px 32px !important;
  font-size: 15px !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}

.hero-badge::before { content: '🎬'; }
.hero-badge::after  { content: '✨'; }

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #ffffff;
  animation: fadeUp 0.9s 0.2s ease both;
}

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

.hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.5s ease both;
}

.hero-tag {
  padding: 8px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.hero-tag:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212,175,55,0.15);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.6s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(212,175,55,0.5);
}

.btn-outline:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1.2s 1s ease both;
}

.scroll-wheel {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel::before {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,55,0.2);
}

.stat-item {
  padding: 16px 30px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.25);
  flex: 1;
  max-width: 200px;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  padding: 80px 8%;
}

/* Alternating section backgrounds */
.section-light {
  background: #111111;
  position: relative;
  border-top: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.section-light > * {
  position: relative;
  z-index: 1;
}

.section-light .card {
  background: var(--card-bg);
  border-color: var(--card-border);
}

.section-light .card h3 { color: #ffffff; }
.section-light .card p  { color: var(--muted); }
.section-light .card-link { color: var(--gold); }
.section-light .card-icon { background: rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.2); }

.section-light .title { color: #ffffff; }
.section-light .section-tag { color: var(--gold); }
.section-light .section-sub { color: var(--muted); }

.section-light .step h4 { color: #ffffff; }
.section-light .step p  { color: var(--muted); }
.section-light .step-num {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  color: var(--gold);
}

.section-light .section-tag::before,
.section-light .section-tag::after { opacity: 0.4; }

.section-dark {
  background: #0a0a0a;
  border-top: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.section-light-gold {
  background: linear-gradient(180deg, #fdf8ec 0%, #f5e6c8 50%, #f0dfa8 100%);
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.25);
}

.section-light-gold .title { color: #1a1a1a; }
.section-light-gold .title .gold { color: #9a7b0a; }
.section-light-gold .section-tag { color: #b8960c; }
.section-light-gold .section-sub { color: #555555; }
.section-light-gold .step h4 { color: #1a1a1a; }
.section-light-gold .step p { color: #666666; }

.section-dark .step h4 { color: #ffffff; }
.section-dark .step p { color: var(--muted); }

.section-light-gold .marquee-wrapper::before {
  background: linear-gradient(to right, #f5e6c8, transparent);
}
.section-light-gold .marquee-wrapper::after {
  background: linear-gradient(to left, #f5e6c8, transparent);
}

.section-gold {
  background: linear-gradient(180deg, #0d0d0d 0%, #111111 50%, #0d0d0d 100%);
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  font-weight: 600;
}

.section-tag::before,
.section-tag::after {
  content: '—';
  margin: 0 8px;
  opacity: 0.3;
}

.title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.title .gold { color: var(--gold); }

.section-sub {
  font-size: 16px;
  color: var(--gray);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CELEBRATION CARDS
   ============================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.card.reveal.visible,
.card.visible {
  animation: cardPop 0.65s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--card-hover-bg);
  border-color: var(--card-hover-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.card-link:hover { gap: 10px; color: var(--gold-light); }

/* Celebration highlight cards */
.celebration-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.5s ease;
}

.celebration-card.reveal.visible {
  animation: cardPop 0.7s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

.celebration-card.reveal.visible:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.12);
}

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

.celebration-card:hover img { transform: scale(1.08); }

.celebration-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: background 0.4s ease;
}

.celebration-card:hover .celebration-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(212,175,55,0.1) 100%);
}

.celebration-card-tag {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.celebration-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.celebration-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
}

.celebration-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PERFECT FOR SECTION
   ============================================ */
.perfect-for-section {
  padding-bottom: 80px;
}

.perfect-for-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.pf-card {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.13) 0%, transparent 70%),
    var(--card-bg);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 12px;
  padding: 24px 16px 20px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--card-shadow), 0 0 18px rgba(212,175,55,0.07);
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.pf-card.reveal.visible {
  animation: cardPop 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.pf-card.reveal.visible:hover {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(212,175,55,0.28) 0%, transparent 70%),
    var(--card-hover-bg);
  border-color: var(--gold);
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.25);
}

.pf-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  color: var(--gold);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.pf-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.pf-card:hover .pf-icon {
  transform: scale(1.12);
  background: rgba(212,175,55,0.18);
  border-color: var(--gold);
}

.pf-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.pf-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .perfect-for-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .perfect-for-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 500px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-visual:hover img { transform: scale(1.04); }

.about-visual-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-visual-badge .badge-icon { font-size: 28px; }

.about-visual-badge .badge-text { font-size: 13px; line-height: 1.4; }

.about-visual-badge strong { display: block; color: var(--gold); font-size: 16px; }

.about-text h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 20px; color: #ffffff; }

.about-text p { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }

.features-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #ccc;
}

.features-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================
   EXPERIENCE / PROCESS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}

.step {
  text-align: center;
  padding: 30px 20px;
}

.step.reveal.visible {
  animation: cardPop 0.6s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

.step.reveal.visible:hover .step-num {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(212,175,55,0.35);
}

.step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease, background 0.3s ease;
}

.step:hover .step-num {
  background: rgba(212,175,55,0.25);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #ffffff; }
.step p { font-size: 13px; color: var(--muted); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span { font-size: 13px; color: var(--gold); font-weight: 600; }

/* Legacy gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
}

.gallery img.visible {
  opacity: 1;
  transform: scale(1);
}

.gallery img:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* ============================================
   TESTIMONIALS — MARQUEE
   ============================================ */
.testimonials {
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* fade edges */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  will-change: transform;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-wrapper--testimonials .testimonial-card {
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.marquee-wrapper--testimonials .testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials-track {
  display: flex;
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  opacity: 1;
  transform: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.15);
}

/* push author to bottom of card */
.testimonial-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(212,175,55,0.12);
  margin-top: auto;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; color: #ffffff; }
.author-event { font-size: 12px; color: var(--gold); }

/* ============================================
   BOOKING / CONTACT
   ============================================ */
.booking-section {
  position: relative;
  overflow: hidden;
}

/* Light gold booking variant — no dark photo overlay */
.booking-section.section-light-gold .booking-bg {
  display: none;
}

.booking-section.section-light-gold::before,
.booking-section.section-light-gold::after {
  display: none;
}

.booking-section.section-light-gold .booking-info h2,
.booking-section.section-light-gold .booking-info .title {
  color: #1a1a1a;
}

.booking-section.section-light-gold .booking-info .title .gold {
  color: #9a7b0a;
}

.booking-section.section-light-gold .booking-info p {
  color: #555555;
}

.booking-section.section-light-gold .contact-points li {
  color: #444444;
}

.booking-section.section-light-gold .contact-points li strong {
  color: #1a1a1a;
}

.booking-section.section-light-gold .location-map-wrap {
  border-color: rgba(154,123,10,0.3);
  background: rgba(255,255,255,0.5);
}

.booking-section.section-light-gold .location-map-label {
  background: rgba(212,175,55,0.15);
  border-bottom-color: rgba(154,123,10,0.2);
}

.booking-section.section-light-gold .location-map-label strong {
  color: #9a7b0a;
}

.booking-section.section-light-gold .location-map-label span {
  color: #666666;
}

/* ── background image with zoom-on-hover ── */
.booking-section .booking-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1578681994506-b8f463449011?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  z-index: 0;
}

.booking-section:hover .booking-bg {
  transform: scale(1.06);
}

/* dark overlay so text stays readable */
.booking-section .booking-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(10,8,5,0.75) 50%,
    rgba(0,0,0,0.80) 100%
  );
}

/* gold shimmer streaks */
.booking-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.booking-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.booking-info h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; color: #ffffff; }

.booking-info p { color: var(--muted); font-size: 15px; margin-bottom: 30px; line-height: 1.8; }

.contact-points { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.contact-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #ccc;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.booking-form {
  background: rgba(22,22,22,0.95);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.booking-form h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
  color: var(--gold);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  color: #ffffff;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  background: rgba(212,175,55,0.05);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }

select option { background: #1a1a1a; color: #ffffff; }

textarea { resize: vertical; min-height: 110px; }

.btn-full { width: 100%; justify-content: center; margin-top: 8px; }

/* ── Location Map ── */
.location-map-wrap {
  margin-top: 32px;
  border: 1.5px solid rgba(212,175,55,0.3);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(212,175,55,0.04);
}

.location-map-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.location-map-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.location-map-label strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.location-map-label span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.location-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

.location-map-frame iframe {
  display: block;
  filter: grayscale(30%) contrast(1.1) brightness(0.85) sepia(20%);
  transition: filter 0.4s ease;
}

.location-map-frame:hover iframe {
  filter: grayscale(0%) contrast(1) brightness(1) sepia(0%);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #080808;
  border-top: 1px solid rgba(212,175,55,0.15);
}

footer.footer-light-gold {
  background: linear-gradient(180deg, #fdf8ec 0%, #f5e6c8 50%, #f0dfa8 100%);
  border-top: 1px solid rgba(212,175,55,0.35);
}

footer.footer-light-gold .footer-brand p { color: #555555; }

footer.footer-light-gold .footer-col h4 { color: #9a7b0a; }

footer.footer-light-gold .footer-col ul li a {
  color: #444444;
}

footer.footer-light-gold .footer-col ul li a:hover { color: #9a7b0a; }

footer.footer-light-gold .footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.3);
  color: #777777;
}

footer.footer-light-gold .social-btn {
  background: rgba(212,175,55,0.15);
  border-color: rgba(154,123,10,0.3);
  color: #9a7b0a;
}

footer.footer-light-gold .social-btn:hover {
  background: #9a7b0a;
  border-color: #9a7b0a;
  color: #fdf8ec;
}

.footer-main {
  padding: 60px 8% 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .logo { display: inline-flex; align-items: center; margin-bottom: 16px; }
.footer-brand .logo img { height: 40px; width: auto; }

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 300px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 8%;
  border-top: 1px solid rgba(212,175,55,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

@keyframes heroKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.1) translate(-1.5%, -1%); }
  100% { transform: scale(1.06) translate(1%, 0.5%); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  33%       { transform: translate(30px, -20px) scale(1.1); opacity: 0.45; }
  66%       { transform: translate(-20px, 15px) scale(0.95); opacity: 0.25; }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  80%       { transform: translateY(12px); opacity: 0; }
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(212,175,55,0)); }
  50%       { filter: drop-shadow(0 0 12px rgba(212,175,55,0.5)); }
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) translateX(var(--x,0)); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) translateX(var(--x2,20px)); opacity: 0; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

@keyframes wordReveal {
  from { opacity: 0; transform: translateY(24px) rotateX(12deg); }
  to   { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes cardPop {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes tagSlide {
  from { opacity: 0; letter-spacing: 6px; transform: translateY(-10px); }
  to   { opacity: 1; letter-spacing: 2px; transform: translateY(0); }
}

@keyframes heroLineReveal {
  from { opacity: 0; transform: translateY(30px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Text shimmer */
.text-shimmer {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s ease-in-out infinite;
}

.hero-title-animate {
  animation: heroLineReveal 1s 0.15s ease both;
}

.hero-sub-animate {
  animation: heroLineReveal 1s 0.35s ease both;
}

.section-header.visible .tag-slide {
  animation: tagSlide 0.8s ease both;
}

.animate-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.animate-title.in-view .word {
  opacity: 1;
  transform: translateY(0);
}

/* Animated text showcase */
.text-showcase {
  padding: 70px 8%;
  text-align: center;
  border-top: 1px solid rgba(212,175,55,0.1);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.text-showcase-inner {
  max-width: 800px;
  margin: 0 auto 36px;
}

.text-rotate-heading {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.text-showcase.section-light-gold .text-rotate-heading,
.text-showcase.section-light-gold .text-rotate-line {
  color: #1a1a1a;
}

.text-showcase.section-light-gold .text-showcase-sub {
  color: #555555;
}

.text-rotate-line {
  display: block;
}

.text-rotate {
  display: inline-block;
  height: 1.3em;
  overflow: hidden;
  position: relative;
  width: auto;
  text-align: center;
}

.text-rotate-track {
  display: flex;
  flex-direction: column;
  animation: rotateWords 10s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.text-rotate-track span {
  display: block;
  height: 1.3em;
  line-height: 1.3em;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes rotateWords {
  0%, 16%   { transform: translateY(0); }
  20%, 36%  { transform: translateY(-1.3em); }
  40%, 56%  { transform: translateY(-2.6em); }
  60%, 76%  { transform: translateY(-3.9em); }
  80%, 96%  { transform: translateY(-5.2em); }
  100%      { transform: translateY(-6.5em); }
}

.text-showcase-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 16px;
  animation: heroLineReveal 0.9s 0.4s ease both;
}

.feature-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.feature-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 24px 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-chip-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s ease;
}

.feature-chip h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}

.feature-chip.reveal.visible {
  animation: cardPop 0.65s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.feature-chip.reveal.visible:hover {
  transform: translateY(-8px) scale(1.03);
  background: var(--card-hover-bg);
  border-color: var(--card-hover-border);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), 0 0 16px rgba(212,175,55,0.12);
}

.feature-chip.reveal.visible:hover .feature-chip-icon {
  transform: scale(1.15);
}

.feature-chip.reveal.visible:hover h4 {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .feature-chips { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .feature-chips { grid-template-columns: 1fr; }
  .feature-chip { min-height: 110px; }
}

/* Celebration grid */
.celebration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Reveal on scroll base states */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   SCREEN PAGE
   ============================================ */
.screen-hero {
  height: 65vh;
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.screen-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=1920&auto=format&fit=crop') center/cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.screen-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
}

.screen-hero-content { position: relative; z-index: 1; }

.screen-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* ============================================
   PRICING / PACKAGES
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.package-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(212,175,55,0.55);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  border-radius: 24px;
  padding: 38px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.package-card.visible { opacity: 1; transform: translateY(0); }

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 32px rgba(212,175,55,0.2), inset 0 1px 0 rgba(212,175,55,0.1);
  background: linear-gradient(160deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.package-icon { font-size: 46px; margin-bottom: 16px; }

.package-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: #ffffff; }

.package-card > p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }

.package-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin: 20px 0;
}

.price-currency { font-size: 20px; color: var(--gold); font-weight: 700; line-height: 1.6; }
.price-amount { font-size: 52px; font-weight: 800; color: var(--gold); line-height: 1; }
.price-period { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

.package-features { list-style: none; text-align: center; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }

.package-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #ccc; }

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

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 24px rgba(212,175,55,0.15);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 350px; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }

  /* collapse hero to single column on tablet */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-content,
  .hero-content-left { text-align: center; }
  .hero-tags,
  .hero-content-left .hero-tags { justify-content: center; }
  .hero-btns,
  .hero-content-left .hero-btns { justify-content: center; }
  .hero-form-wrap { max-height: none; overflow-y: visible; }
  .hero-form-wrap { max-width: 100%; justify-self: center; }
  .hero-form-highlight { max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .section { padding: 80px 6%; }
  header { padding: 14px 6%; }

  nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(253,248,236,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    z-index: 9998;
    box-shadow: 0 8px 24px rgba(154,123,10,0.12);
  }

  nav.open { display: flex; }

  nav a { padding: 12px 16px; border-radius: 12px; }

  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(32px, 8vw, 50px); }

  .hero-stats { display: none; }

  .stat-item { max-width: unset; }

  .form-row { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .process-steps::before { display: none; }

  .gallery-masonry { columns: 1; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .section-header { margin-bottom: 40px; }
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.25s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.25s ease;
}

.fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.fab-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
  color: #111;
}

.fab-call:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 28px rgba(212,175,55,0.55);
}

.fab-whatsapp {
  background: #25d366;
}

.fab-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

@media (max-width: 480px) {
  .fab-wrap { bottom: 20px; right: 16px; gap: 12px; }
  .fab { width: 46px; height: 46px; }
}
