﻿/* ============================================
   Seetha Wedding Photography - Master Stylesheet
   Theme: Luxury | Romantic | Cinematic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --champagne-gold: #D8C3A5;
  --champagne-light: #E8D5B7;
  --dusty-rose: #D9B8B2;
  --dusty-rose-light: #F0D4DA;
  --ivory: #FAF8F5;
  --ivory-white: #FAF8F5;
  --warm-beige: #F5EDE3;
  --deep-mocha: #4A3B36;
  --rich-mocha: #4A3B36;
  --deep-mocha-light: #6B5A54;
  --soft-white: #FFFFFF;
  --gold-gradient: linear-gradient(135deg, #D8C3A5, #C4A27A, #D8C3A5);
  --rose-gradient: linear-gradient(135deg, #D9B8B2, #C9909B, #D9B8B2);
  --mocha-gradient: linear-gradient(135deg, #4A3B36, #3A302C);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 8px rgba(74,59,54,0.08);
  --shadow-md: 0 8px 30px rgba(74,59,54,0.12);
  --shadow-lg: 0 20px 60px rgba(74,59,54,0.15);
  --shadow-gold: 0 8px 30px rgba(216,195,165,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--deep-mocha);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
::selection { background: var(--champagne-gold); color: var(--deep-mocha); }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; color: var(--deep-mocha); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; }
p { font-size: 1rem; line-height: 1.8; color: var(--deep-mocha-light); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--champagne-gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-mocha);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--deep-mocha-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.gold-text { color: var(--champagne-gold); }
.rose-text { color: var(--dusty-rose); }

/* ===== Glassmorphism ===== */
.glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
}
.glass-dark {
  background: rgba(78,64,59,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(78,64,59,0.1);
}
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
}

/* ===== Animations ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 20px rgba(216,195,165,0.2); } 50% { box-shadow: 0 0 40px rgba(216,195,165,0.4); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes goldShimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes imageReveal { 0% { clip-path: inset(0 0 100% 0); } 100% { clip-path: inset(0 0 0 0); } }
@keyframes borderGlow { 0%, 100% { border-color: var(--champagne-gold); } 50% { border-color: var(--dusty-rose); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-80px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(80px); } to { opacity: 1; transform: translateX(0); } }
@keyframes countUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
@keyframes rotateSlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes tiltLeft { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-2deg); } }
@keyframes tiltRight { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(2deg); } }
@keyframes slideReveal { 0% { width: 0; } 100% { width: 100%; } }
@keyframes stampIn { 0% { opacity: 0; transform: scale(2) rotate(-10deg); } 60% { transform: scale(0.95) rotate(2deg); } 100% { opacity: 1; transform: scale(1) rotate(0deg); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes spinSlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll-left.is-visible { opacity: 1; transform: translateX(0); }
.animate-on-scroll-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll-right.is-visible { opacity: 1; transform: translateX(0); }
.animate-on-scroll-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s ease, transform 0.8s ease; }
.animate-on-scroll-scale.is-visible { opacity: 1; transform: scale(1); }

.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; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* Animation utility classes */
.anim-float { animation: float 4s ease-in-out infinite; }
.anim-float-slow { animation: floatSlow 7s ease-in-out infinite; }
.anim-pulse { animation: pulse 3s ease-in-out infinite; }
.anim-pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }
.anim-breathe { animation: breathe 5s ease-in-out infinite; }
.anim-rotate-slow { animation: rotateSlow 20s linear infinite; }
.anim-spin-slow { animation: spinSlow 30s linear infinite; }
.anim-stamp { animation: stampIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }

/* Stagger children animations */
.stagger-children > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger-children.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.stagger-children.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.stagger-children.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stagger-children.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.is-visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.stagger-children.is-visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

/* Counters — animate number reveal */
.counter-animate { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.counter-animate.is-visible { opacity: 1; transform: translateY(0); }
/* ===== Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 2px 40px rgba(78,64,59,0.08);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--deep-mocha); display: flex; align-items: center; gap: 10px; transition: all 0.4s ease; }
.logo:hover { transform: scale(1.02); }
.logo span { color: var(--champagne-gold); font-weight: 400; font-style: italic; transition: color 0.4s ease; }
.logo:hover span { color: var(--dusty-rose); }
.logo-icon { width: 40px; height: 40px; border: 2px solid var(--champagne-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.4s ease; }
.logo:hover .logo-icon { border-color: var(--dusty-rose); transform: rotate(15deg); }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--deep-mocha-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}
.nav a:hover { color: var(--deep-mocha); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--deep-mocha); }
.nav-cta {
  background: var(--gold-gradient) !important;
  color: var(--soft-white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; z-index: 1001; }
.menu-toggle span { width: 28px; height: 2px; background: var(--deep-mocha); border-radius: 2px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* ===== Hero Section — Editorial Split Layout ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-mocha);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1.06); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(30,20,18,0.88) 0%,
    rgba(40,30,26,0.65) 45%,
    rgba(50,38,34,0.35) 70%,
    rgba(40,30,26,0.5) 100%
  );
  z-index: 1;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,12,0.6) 0%, transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* --- Left: Text Content --- */
.hero-text {
  padding-right: 40px;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--champagne-gold);
  background: rgba(214,185,140,0.12);
  border: 1px solid rgba(214,185,140,0.25);
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s ease forwards;
}
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--soft-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}
.hero-text h1 .gold-text {
  color: var(--champagne-gold);
  font-style: italic;
  position: relative;
}
.hero-text h1 .gold-text::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  opacity: 0.5;
}
.hero-text .description {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 36px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}
.btn:hover::before { transform: translateX(100%) skewX(-15deg); }
.btn-primary {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: var(--soft-white);
  box-shadow: 0 4px 25px rgba(214,185,140,0.35);
  animation: pulseGlow 3s ease-in-out infinite;
}
.btn-primary:hover { background-position: right center; transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 40px rgba(214,185,140,0.5); animation: none; }
.btn-secondary {
  background: transparent;
  color: var(--soft-white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover { border-color: var(--champagne-gold); background: rgba(214,185,140,0.1); transform: translateY(-3px) scale(1.02); box-shadow: 0 4px 25px rgba(214,185,140,0.2); }
.btn-gold-outline {
  background: transparent;
  color: var(--champagne-gold);
  border: 2px solid var(--champagne-gold);
}
.btn-gold-outline:hover { background: var(--champagne-gold); color: var(--soft-white); transform: translateY(-3px) scale(1.02); }
.btn-mocha {
  background: var(--deep-mocha);
  color: var(--soft-white);
}
.btn-mocha:hover { background: var(--deep-mocha-light); transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.75rem; letter-spacing: 1px; }

/* --- Right: Organic Visual Composition --- */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main image with organic frame */
.hero-image-frame {
  position: relative;
  width: 75%;
  max-width: 420px;
  z-index: 2;
  animation: scaleIn 1s ease 0.3s forwards;
  opacity: 0;
  transform-origin: center;
}
.hero-image-main {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(74,59,54,0.45);
}
.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-image-main:hover img { transform: scale(1.06); }
.hero-image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,59,54,0.15), transparent);
  pointer-events: none;
}

/* Organic ring around image */
.hero-image-ring {
  position: absolute;
  inset: -14px;
  border-radius: 18px;
  border: 1.5px solid rgba(216,195,165,0.2);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

/* Floating stats — pure text, no boxes */
.hero-float-stats {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  right: -10px;
  top: 10%;
}
.float-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  animation: fadeInRight 0.8s ease forwards;
  opacity: 0;
}
.float-stat:nth-child(1) { animation-delay: 0.6s; }
.float-stat:nth-child(2) { animation-delay: 0.8s; }
.float-stat:nth-child(3) { animation-delay: 1s; }
.float-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--champagne-gold);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.float-stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 2px;
}

/* Organic decorative SVG curves */
.hero-organic-line {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* Decorative Elements */
.hero-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-decor-circle-1 {
  width: 400px;
  height: 400px;
  background: var(--champagne-gold);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-decor-circle-2 {
  width: 300px;
  height: 300px;
  background: var(--dusty-rose);
  bottom: -80px;
  left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-decor-circle-3 {
  width: 200px;
  height: 200px;
  background: var(--champagne-gold);
  top: 40%;
  left: -60px;
  animation: float 6s ease-in-out infinite;
}
.hero-decor-line {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}
.hero-decor-line svg {
  width: 300px;
  height: 300px;
}

/* Floral accent */
.hero-floral {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  font-size: 6rem;
}
.hero-floral-1 { top: 5%; right: 8%; transform: rotate(30deg); animation: floatSlow 7s ease-in-out infinite; }
.hero-floral-2 { bottom: 8%; left: 45%; transform: rotate(-20deg); animation: floatSlow 9s ease-in-out infinite reverse; }

/* --- Marquee --- */
.hero-marquee-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(74,59,54,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 12px 0;
}
.hero-marquee {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.hero-marquee span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  padding: 0 30px;
  position: relative;
}
.hero-marquee span::after {
  content: '•';
  position: absolute;
  right: -3px;
  color: var(--champagne-gold);
  opacity: 0.4;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
}


/* ===== Section Styles ===== */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--warm-beige); }
.section-dark {
  background: var(--deep-mocha);
  color: var(--soft-white);
}
.section-dark .section-title,
.section-dark h2, .section-dark h3 { color: var(--soft-white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section-divider {
  width: 80px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 20px auto 24px;
  border-radius: 2px;
}
.section-divider-left { margin: 20px 0 24px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* ===== Decorative Elements ===== */
.floral-accent {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
.floral-accent img { width: 200px; height: auto; }
.floral-top-right { top: 0; right: 0; transform: rotate(180deg); }
.floral-bottom-left { bottom: 0; left: 0; }
.floating-heart {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.08;
  animation: floatSlow 6s ease-in-out infinite;
  pointer-events: none;
}

/* ===== Image Reveal ===== */
.img-reveal {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.img-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--deep-mocha);
  z-index: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-reveal.revealed::before { transform: translateY(-101%); }
.img-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.img-reveal:hover img { transform: scale(1.05); }

/* ===== Featured Section / Intro ===== */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78,64,59,0.2), transparent);
}
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--champagne-gold);
  line-height: 1;
}
.experience-badge .label { font-size: 0.85rem; color: var(--deep-mocha-light); max-width: 100px; line-height: 1.4; }
.featured-content { padding: 20px 0; }
.featured-content h2 { margin-bottom: 16px; }
.featured-content p { margin-bottom: 20px; }
.featured-content .btn { margin-top: 12px; }

/* ===== Services / Collections Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.service-card { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease; }
.service-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: var(--shadow-lg); }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(216,195,165,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.service-card:hover .service-card-image img { transform: scale(1.12); }
.service-card-body { padding: 28px; transition: transform 0.4s ease; }
.service-card:hover .service-card-body { transform: translateY(-4px); }
.service-card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78,64,59,0.3), transparent);
}
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 1.3rem; }
.service-card-body p { font-size: 0.95rem; margin-bottom: 16px; }
.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--champagne-gold);
  background: rgba(214,185,140,0.1);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
/* ===== Stats Section ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item { padding: 40px 20px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--champagne-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.stat-item .stat-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.6;
}

/* ===== Testimonial Slider ===== */
.testimonials { position: relative; }
.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonial-track { display: flex; transition: transform 0.6s ease; }
.testimonial-slide {
  min-width: 100%;
  padding: 20px;
  text-align: center;
}
.testimonial-stars {
  color: var(--champagne-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--deep-mocha);
  margin-bottom: 24px;
}
.section-dark .testimonial-text { color: var(--soft-white); }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--champagne-gold);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 1rem; }
.testimonial-role { font-size: 0.85rem; color: var(--deep-mocha-light); }
.section-dark .testimonial-role { color: rgba(255,255,255,0.6); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.testimonial-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--champagne-light);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dot.active { background: var(--champagne-gold); width: 30px; border-radius: 5px; }
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--deep-mocha);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 2;
}
.testimonial-nav:hover { background: var(--champagne-gold); color: var(--soft-white); }
.testimonial-nav-prev { left: -24px; }
.testimonial-nav-next { right: -24px; }

/* ===== Instagram Gallery ===== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.instagram-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.instagram-item:hover img { transform: scale(1.1); }
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(78,64,59,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--soft-white);
  font-size: 1.5rem;
}
.instagram-item:hover .instagram-overlay { opacity: 1; }

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 600px; margin: 0 auto 32px; }
.cta-section .btn { margin: 0 8px; }
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78,64,59,0.85), rgba(78,64,59,0.7));
}
.cta-content { position: relative; z-index: 1; }
/* ===== About Page Styles ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image .signature-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--soft-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}
.about-image .signature-badge span { font-family: var(--font-heading); font-style: italic; color: var(--champagne-gold); font-size: 1.2rem; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--soft-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--warm-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--champagne-gold);
}
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; }

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  width: 42%;
  background: var(--soft-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--champagne-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--champagne-gold);
  border: 4px solid var(--ivory);
  box-shadow: 0 0 0 3px var(--champagne-gold);
  top: 28px;
  z-index: 1;
}
.timeline-spacer { width: 42%; }
/* ===== Wedding Stories / Portfolio Page ===== */
.portfolio-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--deep-mocha);
  position: relative;
  overflow: hidden;
}
.portfolio-header-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.3;
}
.portfolio-header h1 { color: var(--soft-white); position: relative; z-index: 1; }
.portfolio-header p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; }

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--champagne-light);
  border-radius: 50px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--deep-mocha-light);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--champagne-gold);
  border-color: var(--champagne-gold);
  color: var(--soft-white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.story-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--soft-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.story-card { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease; }
.story-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: var(--shadow-lg); }
.story-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr 1fr; }
.story-card-image {
  height: 320px;
  overflow: hidden;
  position: relative;
}
.story-card.featured .story-card-image { height: 100%; min-height: 420px; }
.story-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.story-card:hover .story-card-image img { transform: scale(1.12); }
.story-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,59,54,0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.story-card:hover .story-card-image::after { opacity: 1; }
.story-card-image .story-category {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--deep-mocha);
}
.story-card-body { padding: 28px; }
.story-card-body h3 { margin-bottom: 12px; }
.story-card-body .story-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--deep-mocha-light);
}
.story-card-body .story-meta span { display: flex; align-items: center; gap: 6px; }
.story-card-body p { font-size: 0.95rem; margin-bottom: 16px; }
.story-link {
  color: var(--champagne-gold);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.story-link:hover { gap: 14px; color: var(--deep-mocha); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(78,64,59,0.95);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--soft-white);
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  background: none;
  border: none;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--soft-white);
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  background: none;
  border: none;
  padding: 16px;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
/* ===== Packages Page ===== */
.packages-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--deep-mocha);
  position: relative;
  overflow: hidden;
}
.packages-header-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.25;
}
.packages-header h1 { color: var(--soft-white); position: relative; z-index: 1; }
.packages-header p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}
.package-card {
  background: var(--soft-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.package-card { transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease; }
.package-card:hover { transform: translateY(-12px) scale(1.01); box-shadow: var(--shadow-lg); border-color: rgba(216,195,165,0.2); }
.package-card.featured {
  border-color: var(--champagne-gold);
  box-shadow: 0 8px 40px rgba(214,185,140,0.2);
  transform: scale(1.03);
}
.package-card.featured:hover { transform: scale(1.03) translateY(-10px); }
.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-gradient);
  color: var(--soft-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.package-header {
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(78,64,59,0.06);
}
.package-name { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 8px; }
.package-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--champagne-gold);
  line-height: 1;
}
.package-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--deep-mocha-light);
}
.package-duration {
  font-size: 0.85rem;
  color: var(--deep-mocha-light);
  margin-top: 8px;
}
.package-body { padding: 28px; }
.package-features { margin-bottom: 24px; }
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(78,64,59,0.06);
  font-size: 0.95rem;
}
.package-features li:last-child { border-bottom: none; }
.package-features .check { color: var(--champagne-gold); font-weight: 700; flex-shrink: 0; }
.package-features .cross { color: #ccc; flex-shrink: 0; }
.package-body .btn { width: 100%; justify-content: center; }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--soft-white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--champagne-gold); }
.faq-icon {
  font-size: 1.5rem;
  transition: var(--transition);
  color: var(--champagne-gold);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  font-size: 0.95rem;
  color: var(--deep-mocha-light);
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* Comparison Table */
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--soft-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 16px 24px; text-align: center; border-bottom: 1px solid rgba(78,64,59,0.06); }
.compare-table th { font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; background: var(--warm-beige); }
.compare-table th:first-child { text-align: left; }
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--champagne-gold); font-size: 1.2rem; }
.compare-table .cross { color: #ddd; font-size: 1.2rem; }
.compare-table .popular { background: rgba(214,185,140,0.08); }
.compare-table .popular th { background: var(--champagne-gold); color: var(--soft-white); }
/* ===== Contact Page ===== */
.contact-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--deep-mocha);
  position: relative;
  overflow: hidden;
}
.contact-header-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.25;
}
.contact-header h1 { color: var(--soft-white); position: relative; z-index: 1; }
.contact-header p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-details { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--champagne-gold);
}
.contact-detail-text h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-detail-text p { font-size: 0.95rem; }
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-mocha);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1.1rem;
}
.social-link:hover { background: var(--champagne-gold); color: var(--soft-white); transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 25px rgba(216,195,165,0.3); }

.contact-form { background: var(--soft-white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--deep-mocha);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(78,64,59,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--deep-mocha);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--champagne-gold);
  box-shadow: 0 0 0 4px rgba(214,185,140,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group .btn { width: 100%; justify-content: center; }

/* Map */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-sm);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--soft-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--soft-white);
  color: var(--deep-mocha);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }
/* ===== Page Header (inner pages) ===== */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--deep-mocha);
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.3;
}
.page-header h1 { color: var(--soft-white); position: relative; z-index: 1; }
.page-header p { color: rgba(255,255,255,0.7); position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }

/* ===== Footer ===== */
.footer {
  background: var(--deep-mocha);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--soft-white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer h4 {
  color: var(--soft-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--champagne-gold); padding-left: 4px; }
.footer-newsletter p { font-size: 0.9rem; margin-bottom: 16px; color: rgba(255,255,255,0.6); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  color: var(--soft-white);
  font-family: var(--font-body);
  outline: none;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  color: var(--soft-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter-form button:hover { transform: scale(1.05); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--champagne-gold); }
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; padding: 140px 40px 100px; text-align: center; }
  .hero-text { padding-right: 0; }
  .hero-text .description { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { min-height: 400px; }
  .hero-image-frame { width: 65%; max-width: 360px; }
  .hero-float-stats { position: relative; flex-direction: row; right: auto; top: auto; gap: 24px; justify-content: center; margin-top: 24px; }
  .float-stat { align-items: center; }
  .hero-organic-line { display: none; }
  .scroll-indicator { left: 50%; transform: translateX(-50%); bottom: 70px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { gap: 40px; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-card.featured { grid-column: 1; grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(250,247,242,0.98); backdrop-filter: blur(24px); justify-content: center; align-items: center; gap: 28px; }
  .menu-toggle { display: flex; }
  .hero-inner { padding: 130px 24px 100px; gap: 40px; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text .description { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-visual { min-height: 350px; }
  .hero-image-frame { width: 70%; max-width: 300px; }
  .hero-float-stats { position: relative; flex-direction: row; right: auto; top: auto; gap: 18px; justify-content: center; margin-top: 20px; }
  .float-stat { align-items: center; }
  .float-stat-number { font-size: 1.5rem; }
  .float-stat-label { font-size: 0.55rem; }
  .hero-organic-line { display: none; }
  .scroll-indicator { display: none; }
  .hero-marquee-wrap { padding: 10px 0; }
  .hero-marquee span { font-size: 0.65rem; letter-spacing: 2px; padding: 0 20px; }
  .hero-floral { display: none; }
  .btn { padding: 14px 28px; font-size: 0.85rem; }
  .featured-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-image { height: 350px; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-8px); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2.2rem; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; }
  .timeline-content { width: calc(100% - 60px); margin-left: 60px; }
  .timeline-dot { left: 20px; }
  .timeline-spacer { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .testimonial-nav { display: none; }
  .whatsapp-btn { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
  .section { padding: 60px 0; }
  .page-header { padding: 140px 0 60px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-inner { padding: 120px 16px 90px; }
  .hero-text h1 { font-size: 1.8rem; }
  .hero-image-frame { width: 80%; max-width: 260px; }
  .hero-float-stats { gap: 12px; }
  .float-stat-number { font-size: 1.3rem; }
  .float-stat-label { font-size: 0.5rem; }
  .experience-badge { padding: 14px 20px; bottom: 16px; left: 16px; }
  .experience-badge .number { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item { padding: 20px 12px; }
}
