/* =============================================
   Spotlight 360 — Main Stylesheet
   Colours: Jet Black #0A0A0A | Charcoal #1A1A1A
            Champagne Gold #C9A96A | Warm Ivory #F2EDE2
            Pure White #FFFFFF
   Fonts:   Cinzel (headings) | Montserrat (body)
============================================= */

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

:root {
  --black:      #0A0A0A;
  --charcoal:   #1A1A1A;
  --gold:       #C9A96A;
  --gold-light: #e2c48a;
  --gold-dark:  #a07d45;
  --ivory:      #F2EDE2;
  --white:      #FFFFFF;
  --text-muted: #888;
  --border:     rgba(201, 169, 106, 0.2);

  --font-heading: 'Cinzel', serif;
  --font-body:    'Montserrat', sans-serif;

  --nav-h: 80px;
  --section-pad: 120px;
  --container: 1200px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---------- SELECTION ---------- */
::selection { background: var(--gold); color: var(--black); }

/* ---------- UTILITY ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background-position: 100% 0%;
  color: var(--black);
  box-shadow: 0 8px 30px rgba(201, 169, 106, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(201, 169, 106, 0.3);
  transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* =============================================
   NAVIGATION
============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0,0,0,0.5);
  height: 68px;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 22px;
  font-size: 0.72rem;
  border-radius: 2px;
  margin-left: 8px;
  transition: all var(--transition);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   SECTION SHARED STYLES
============================================= */
section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1rem;
  color: var(--ivory);
  opacity: 0.7;
  max-width: 560px;
  margin-bottom: 64px;
  line-height: 1.8;
}

/* Gold divider line */
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 16px;
}

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,169,106,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,169,106,0.06) 0%, transparent 60%),
    var(--black);
  overflow: hidden;
}

/* Animated particle dots */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(201,169,106,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 15%, rgba(201,169,106,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(201,169,106,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 80%, rgba(201,169,106,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 55%, rgba(201,169,106,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 90%, rgba(201,169,106,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 40%, rgba(201,169,106,0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 35% 55%, rgba(201,169,106,0.15) 0%, transparent 100%);
  pointer-events: none;
}

/* Spotlight beams */
#hero::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 20%;
  width: 2px;
  height: 80%;
  background: linear-gradient(180deg, rgba(201,169,106,0.25) 0%, transparent 100%);
  transform: rotate(15deg);
  pointer-events: none;
  box-shadow: 300px 0 2px rgba(201,169,106,0.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--black) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 32px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
  background: linear-gradient(135deg, var(--white) 0%, var(--ivory) 40%, var(--gold-light) 60%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.55s forwards;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--ivory);
  opacity: 0;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.8;
  animation: fadeUp 0.9s var(--ease) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.85s forwards;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.4s forwards;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
.hero-scroll-hint p {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* =============================================
   ABOUT
============================================= */
#about {
  background: var(--charcoal);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .lead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--ivory);
  opacity: 0.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* About visual */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111 0%, #1e1a14 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--border);
  color: var(--gold);
}

.placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.about-image-placeholder p {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}

.about-frame-border {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid var(--border);
  z-index: -1;
  background: linear-gradient(135deg, rgba(201,169,106,0.05), transparent);
}

/* =============================================
   SERVICES
============================================= */
#services {
  background: var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--charcoal);
  padding: 48px 32px;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  background: #1f1e1b;
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ivory);
  opacity: 0.65;
  line-height: 1.8;
}

/* =============================================
   HOW IT WORKS
============================================= */
#how-it-works {
  background: var(--charcoal);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 32px;
}

.step-connector {
  flex-shrink: 0;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,169,106,0.2));
  margin-top: 28px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  transition: opacity var(--transition);
}

.step:hover .step-number {
  opacity: 0.6;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--ivory);
  opacity: 0.65;
  line-height: 1.8;
}

/* =============================================
   GALLERY
============================================= */
#gallery {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
  margin-bottom: 32px;
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #141410 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.gallery-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,106,0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-placeholder {
  border-color: rgba(201,169,106,0.5);
}

.gallery-item:hover .gallery-placeholder::after {
  opacity: 1;
}

.gallery-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-icon {
  opacity: 0.7;
}

.gallery-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.4;
}

.gallery-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* =============================================
   PACKAGES
============================================= */
#packages {
  background: var(--charcoal);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 32px;
}

.package-card {
  background: var(--black);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform var(--transition);
}

.package-card:hover {
  transform: translateY(-6px);
}

.package-card--featured {
  background: linear-gradient(160deg, #1a1608 0%, #0f0d05 100%);
  border: 1px solid rgba(201,169,106,0.4);
  transform: translateY(-8px);
  z-index: 1;
}

.package-card--featured:hover {
  transform: translateY(-14px);
}

.package-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 20px;
  white-space: nowrap;
}

.package-header {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.package-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.package-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 8px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.package-duration {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.package-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.package-features li {
  font-size: 0.88rem;
  color: var(--ivory);
  opacity: 0.8;
  padding-left: 20px;
  position: relative;
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

.package-card--featured .package-features li::before {
  opacity: 1;
}

.packages-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.packages-note a {
  color: var(--gold);
}

/* =============================================
   CONTACT
============================================= */
#contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.7;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 14px 18px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,106,0.1);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: rgba(220, 80, 80, 0.5);
}

.form-success {
  font-size: 0.88rem;
  color: var(--gold);
  text-align: center;
  min-height: 24px;
  letter-spacing: 0.05em;
}

/* Contact info card */
.contact-info-card {
  background: var(--charcoal);
  padding: 48px 40px;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.contact-info-card > p {
  font-size: 0.92rem;
  color: var(--ivory);
  opacity: 0.6;
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail a {
  font-size: 0.9rem;
  color: var(--ivory);
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-availability {
  font-size: 0.85rem;
  color: var(--ivory);
  opacity: 0.6;
  line-height: 1.8;
}

.availability-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 1 !important;
  margin-bottom: 6px;
}

/* =============================================
   FOOTER
============================================= */
#footer {
  background: var(--charcoal);
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.5;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--ivory);
  opacity: 0.5;
  max-width: 300px;
  line-height: 1.8;
}

.footer-links-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--ivory);
  opacity: 0.55;
  transition: opacity var(--transition), color var(--transition);
}

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

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  opacity: 0.6;
  transition: all var(--transition);
  border-radius: 2px;
}

.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
  background: rgba(201,169,106,0.08);
}

.social-icons svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--ivory);
  opacity: 0.35;
  letter-spacing: 0.05em;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 90px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .package-card--featured { transform: none; }
  .package-card--featured:hover { transform: translateY(-6px); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-image-frame { max-width: 100%; max-height: 340px; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 0 32px;
    border-top: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; text-align: center; }
  .nav-links .nav-cta { margin: 16px 32px 0; width: calc(100% - 64px); text-align: center; }
  .nav-toggle { display: flex; }

  .steps {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), rgba(201,169,106,0.2));
    margin: 0 0 0 32px;
  }
  .step { padding: 0; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16/9;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .about-stats { flex-direction: column; gap: 24px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { aspect-ratio: 16/9; }
}

/* =============================================
   PACKAGES — UPDATED LAYOUT
   (real pricing, extra time, includes, terms)
============================================= */

/* --- Badge top (limited availability tag) --- */
.package-badge-top {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,106,0.35);
  padding: 4px 14px;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* --- Package note text (replaces feature list) --- */
.package-note {
  font-size: 0.88rem;
  color: var(--ivory);
  opacity: 0.6;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 32px;
}

/* --- Extra time section --- */
.packages-extra {
  margin-top: 72px;
  padding: 56px 48px;
  background: var(--black);
  border: 1px solid var(--border);
  text-align: center;
}

.packages-extra-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.packages-extra-sub {
  font-size: 0.88rem;
  color: var(--ivory);
  opacity: 0.55;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 680px;
  margin: 0 auto;
}

.extra-card {
  background: var(--charcoal);
  padding: 36px 32px;
  transition: background var(--transition);
}

.extra-card:hover {
  background: #1f1e1b;
}

.extra-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.extra-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.extra-card p {
  font-size: 0.88rem;
  color: var(--ivory);
  opacity: 0.65;
  line-height: 1.7;
}

.extra-card p strong {
  color: var(--ivory);
  opacity: 1;
  font-weight: 600;
}

/* --- What's included --- */
.packages-includes {
  margin-top: 64px;
  padding: 48px;
  background: var(--charcoal);
  border-left: 2px solid var(--gold);
}

.packages-section-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.includes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 48px;
}

.includes-list li {
  font-size: 0.9rem;
  color: var(--ivory);
  opacity: 0.8;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* --- Terms grid (Travel / Deposit / Cancellation) --- */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.terms-card {
  background: var(--black);
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.terms-card:hover {
  border-top-color: var(--gold);
  background: #0d0d09;
}

.terms-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}

.terms-icon svg {
  width: 100%;
  height: 100%;
}

.terms-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.terms-card p,
.terms-card li {
  font-size: 0.86rem;
  color: var(--ivory);
  opacity: 0.65;
  line-height: 1.8;
}

.terms-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.terms-card li {
  padding-left: 16px;
  position: relative;
}

.terms-card li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
}

.terms-card strong {
  color: var(--ivory);
  opacity: 1;
  font-weight: 600;
}

/* --- Responsive overrides --- */
@media (max-width: 1024px) {
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .includes-list {
    grid-template-columns: 1fr;
  }

  .packages-extra {
    padding: 40px 28px;
  }
}

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

  .packages-includes {
    padding: 32px 24px;
  }

  .terms-card {
    padding: 32px 24px;
  }
}

/* =============================================
   ABOUT — WHY CHOOSE US
============================================= */
.about-why {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-icon {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.why-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--ivory);
  opacity: 0.6;
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   FAQ
============================================= */
#faq {
  background: var(--black);
}

.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--charcoal);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ivory);
  transition: color var(--transition), background var(--transition);
}

.faq-question:hover {
  color: var(--gold);
  background: rgba(201,169,106,0.04);
}

.faq-question[aria-expanded="true"] {
  color: var(--gold);
}

/* Animated +/× icon */
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.6;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Horizontal bar */
.faq-icon::before {
  width: 8px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Vertical bar */
.faq-icon::after {
  width: 1.5px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon {
  opacity: 1;
  transform: rotate(45deg);
}

/* Answer panel */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer > p {
  padding: 0 32px 24px;
  font-size: 0.9rem;
  color: var(--ivory);
  opacity: 0.65;
  line-height: 1.85;
}

/* =============================================
   COOKIE BANNER
============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 20px 32px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner:not([hidden]) {
  display: block;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.85rem;
  color: var(--ivory);
  opacity: 0.75;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 10px 28px;
  font-size: 0.72rem;
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    flex: 1;
    text-align: center;
  }
}

/* =============================================
   FORM — field hint text
============================================= */
.field-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.5;
}
