/* ============================================
   BELLAMOUR ROOM DESIGNS — Luxury Romantic Brand
   Color Palette: Burgundy, Gold, Black
   ============================================ */

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

:root {
  --burgundy: #7B1A2E;
  --burgundy-dark: #5A1220;
  --burgundy-light: #9E2D45;
  --gold: #C9A84C;
  --gold-light: #DFC06A;
  --gold-muted: #B89A3F;
  --black: #0D0D0D;
  --charcoal: #1A1A1A;
  --dark-gray: #2A2A2A;
  --cream: #FDF8F0;
  --cream-dark: #F5EDD8;
  --rose: #D4A5A5;
  --rose-light: #E8C8C8;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-light: #FAF7F2;
  --text-muted: #8A8580;
  --overlay: rgba(13, 13, 13, 0.7);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

/* --- Layout Helpers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  border: 2px solid var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 26, 46, 0.3);
}

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-white {
  background: var(--cream);
  color: var(--burgundy);
  border: 2px solid var(--cream);
}

.btn-white:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 2px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(253, 248, 240, 0.7);
  transition: color var(--transition);
  position: relative;
}

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px !important;
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  background: var(--burgundy) !important;
  color: var(--cream) !important;
  border: 1px solid var(--burgundy) !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--burgundy-light) !important;
  border-color: var(--burgundy-light) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Sections --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: transform 20s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 13, 0.6) 0%,
    rgba(13, 13, 13, 0.4) 40%,
    rgba(13, 13, 13, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253, 248, 240, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page Hero (smaller) */
.page-hero {
  min-height: 50vh;
  padding-top: 100px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

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

/* --- Decorative Elements --- */
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.section-header h2 em {
  font-style: italic;
  color: var(--burgundy);
}

.section-header p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Dark section variant */
.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section-dark .section-header h2 em {
  color: var(--gold);
}

.section-dark .section-header p {
  color: rgba(253, 248, 240, 0.6);
}

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

.package-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 48px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, var(--white) 100%);
}

.package-card.featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.package-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  margin-bottom: 20px;
}

.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 4px;
}

.package-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.package-features {
  list-style: none;
  margin-bottom: 36px;
}

.package-features li {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.package-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.package-card .btn {
  width: 100%;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-gray);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 13, 13, 0.6) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-item-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
}

/* Featured gallery items spanning 2 cols */
.gallery-item.featured {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}

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

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  counter-reset: step;
}

.process-step {
  counter-increment: step;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  padding: 48px;
  border-left: 3px solid var(--gold);
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card cite::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* --- Forms --- */
.form-section {
  max-width: 700px;
  margin: 0 auto;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-submit {
  margin-top: 32px;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 60px 40px;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--burgundy);
}

.form-success p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Stats --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(253, 248, 240, 0.5);
}

/* --- Add-ons --- */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.addon-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.addon-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.addon-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--cream);
}

.addon-item .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

/* --- Travel Info --- */
.travel-info {
  margin-top: 60px;
  padding: 48px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  text-align: center;
}

.travel-info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--cream);
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.travel-item {
  padding: 16px;
}

.travel-item .location {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.travel-item .fee {
  font-size: 0.85rem;
  color: var(--gold);
}

/* --- Partner Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefit-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --- About Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.value-item {
  text-align: center;
  padding: 40px 32px;
}

.value-item .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.value-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--burgundy);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-banner h2 em {
  color: var(--gold);
  font-style: italic;
}

.cta-banner p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(253, 248, 240, 0.7);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(253, 248, 240, 0.5);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(253, 248, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(253, 248, 240, 0.5);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(253, 248, 240, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(253, 248, 240, 0.3);
  letter-spacing: 1px;
}

/* --- Animations (Intersection Observer) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s 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; }

/* --- Instagram Feed Section --- */
.instagram-section {
  padding: 80px 0;
  text-align: center;
}

.instagram-header {
  margin-bottom: 40px;
}

.instagram-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.instagram-header a {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color var(--transition);
}

.instagram-header a:hover {
  color: var(--burgundy);
}

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

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }

  /* Mobile Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    color: var(--cream);
  }

  .nav-cta {
    margin-top: 16px;
  }

  /* Layout adjustments */
  .hero-content { padding: 0 24px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

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

  .packages-grid { grid-template-columns: 1fr; }

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

  .gallery-item.featured {
    grid-column: span 2;
  }

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

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

  .cta-banner { padding: 80px 24px; }

  .scroll-indicator { display: none; }

  .stats-row { gap: 24px; }
  .stat-item h3 { font-size: 2.2rem; }
}

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

  .gallery-item.featured {
    grid-column: span 1;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; max-width: 300px; }
}

/* --- Mobile menu overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* --- Loading spinner for forms --- */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  right: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
