/* ===== RASMBAGH RESORT — Premium CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --maroon: #6B0F1A;
  --maroon-light: #8B1A2A;
  --maroon-dark: #4A0A12;
  --maroon-glow: rgba(107, 15, 26, 0.35);
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --white: #FDFAF6;
  --off-white: #F5F0E8;
  --cream: #EDE0CC;
  --dark: #1A0A0D;
  --text-dark: #2D1215;
  --text-muted: #7A5A60;
  --glass-bg: rgba(253, 250, 246, 0.12);
  --glass-border: rgba(201, 168, 76, 0.2);
  --shadow-maroon: 0 20px 60px rgba(107, 15, 26, 0.25);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--maroon);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--maroon);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
  opacity: 0.6;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 20px;
  height: 20px;
  background: var(--gold);
}

/* ===== LOADING SCREEN ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  letter-spacing: 0.3em;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

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

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSweep 1.8s ease 0.5s forwards;
}

@keyframes loaderSweep {
  to { left: 100%; }
}

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

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--transition);
}

nav.scrolled {
  background: rgba(26, 10, 13, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 5%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.15em;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

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

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

.hamburger span {
  display: block;
  width: 25px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #0D0408 0%,
    #1F0610 35%,
    #3A0D1E 65%,
    #1A0508 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}

@keyframes float {
  0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) translateX(60px) scale(1.5); opacity: 0; }
}

.hero-ornament {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(107, 15, 26, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 80% 30% at 50% 0%, rgba(107, 15, 26, 0.3) 0%, transparent 70%);
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.5s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroReveal 1.2s ease 1.8s forwards;
}

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

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px) skewY(2deg); }
  to { opacity: 1; transform: translateY(0) skewY(0deg); }
}

.hero-subtitle {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 2.2s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 2.5s forwards;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maroon-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 10px 40px rgba(107,15,26,0.5); transform: translateY(-2px); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 3s forwards;
  opacity: 0;
  cursor: pointer;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

.hero-stats {
  position: absolute;
  bottom: 5rem;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 3s forwards;
}

.stat-item {
  text-align: right;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

/* ===== SECTION COMMON ===== */
section {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1.5rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--maroon);
  opacity: 0.4;
}

.section-tag::before { right: 100%; margin-right: -1.5rem; }
.section-tag::after { left: 100%; margin-left: -1.5rem; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--maroon);
}

.section-desc {
  max-width: 550px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

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

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

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

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

/* ===== ABOUT SECTION ===== */
#about {
  padding: 8rem 5%;
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-image-stack {
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  box-shadow: var(--shadow-maroon);
  filter: brightness(0.95);
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-badge {
  position: absolute;
  top: 40%;
  right: -20px;
  background: var(--maroon);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-maroon);
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  display: block;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.about-content .section-header .section-tag::before,
.about-content .section-header .section-tag::after { display: none; }

.about-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--maroon);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== VENUES / CAROUSEL SECTION ===== */
#venues {
  padding: 8rem 0;
  background: var(--dark);
  overflow: hidden;
}

#venues .section-header .section-title { color: var(--white); }
#venues .section-header .section-desc { color: rgba(255,255,255,0.5); }
#venues .section-header { padding: 0 5%; }

/* 3D ORBITAL CAROUSEL */
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
  overflow: hidden;
}

.carousel-stage {
  position: relative;
  width: 800px;
  height: 400px;
  transform-style: preserve-3d;
}

.carousel-card {
  position: absolute;
  width: 320px;
  height: 400px;
  top: 0;
  left: 50%;
  margin-left: -160px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity, filter;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.8s ease,
              filter 0.8s ease;
}

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

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

.carousel-card-info {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
}

.carousel-card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.carousel-card-info p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-placeholder {
  width: 100%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 5%;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201,168,76,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== PACKAGES SECTION ===== */
#packages {
  padding: 8rem 5%;
  background: var(--off-white);
  position: relative;
}

#packages::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
}

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

.package-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
  transition: all 0.5s var(--transition);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.package-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--maroon);
  transition: width 0.5s ease;
}

.package-card:hover::before { width: 100%; }

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(107,15,26,0.15);
}

.package-card.featured {
  background: var(--maroon);
  color: var(--white);
}

.package-card.featured::before { background: var(--gold); }

.package-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.package-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.package-card.featured .package-tag { color: var(--gold-light); }

.package-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.package-card.featured .package-name { color: var(--white); }

.package-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.package-card.featured .package-desc { color: rgba(255,255,255,0.7); }

.package-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.package-features li {
  font-size: 0.82rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
}

.package-card.featured .package-features li {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

.package-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.pkg-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.9rem 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--maroon);
  color: var(--maroon);
  background: transparent;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.pkg-cta:hover {
  background: var(--maroon);
  color: var(--white);
}

.package-card.featured .pkg-cta {
  border-color: var(--gold);
  color: var(--gold);
}

.package-card.featured .pkg-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== GALLERY SECTION ===== */
#gallery {
  padding: 8rem 5%;
  background: var(--white);
  position: relative;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--text-muted);
  padding: 0.5rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

.gallery-masonry {
  columns: 4 280px;
  column-gap: 1.2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.gallery-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 2px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,15,26,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 400;
}

.gallery-zoom {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

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

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}

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

/* ===== EXPERIENCE SECTION ===== */
#experience {
  padding: 8rem 5%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#experience::before {
  content: 'RASMBAGH';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.experience-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

.experience-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 0.4s ease;
}

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

.experience-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-5px);
}

.exp-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.exp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.exp-desc {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 8rem 5%;
  background: var(--off-white);
  overflow: hidden;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.6s ease;
}

.testimonial-slide.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: -2rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
}

.testimonial-event {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.t-dot.active {
  background: var(--maroon);
  transform: scale(1.2);
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 8rem 5%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.contact-info .section-header .section-title { color: var(--white); }
.contact-info .section-header .section-tag { color: var(--gold); }
.contact-info .section-header .section-tag::before,
.contact-info .section-header .section-tag::after { display: none; }
.contact-info .section-header .ornament-line { margin: 1.5rem 0; }
.contact-info .section-header .section-desc { color: rgba(255,255,255,0.5); text-align: left; margin: 0; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: white;
  padding: 0.9rem 2rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 3rem;
}

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 300;
}

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

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 0.85rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.form-control::placeholder { color: rgba(255,255,255,0.25); }

.form-control option { background: var(--dark); color: var(--white); }

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--maroon);
  color: var(--white);
  border: none;
  padding: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--maroon-light);
  box-shadow: 0 10px 30px rgba(107,15,26,0.4);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
  background: #0A0205;
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-decoration: none;
  display: block;
}

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

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

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

/* ===== BACK TO TOP ===== */
#back-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  background: var(--maroon);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

#back-top.visible {
  opacity: 1;
  visibility: visible;
}

#back-top:hover {
  background: var(--maroon-light);
  transform: translateY(-3px);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 5%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===== PARALLAX ELEMENT ===== */
.parallax-slow { will-change: transform; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-stack { height: 400px; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-masonry { columns: 3 220px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { display: none; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2 160px; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .carousel-card { width: 260px; height: 340px; margin-left: -130px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
