/* ============================================
   AESTHETIC EVENTS - Premium One Page Website
   ============================================ */

@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&family=Great+Vibes&display=swap');

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --bg-primary: #faf8f5;
  --bg-secondary: #f3efe9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-glass: rgba(0, 0, 0, 0.06);
  --gold: #b8860b;
  --gold-light: #c9952a;
  --rose: #d4567a;
  --rose-light: #e88da5;
  --blush: #f5c0cc;
  --lavender: #a88bc7;
  --peach: #e8b48a;
  --text-primary: #2c2420;
  --text-secondary: #6b5e54;
  --text-accent: #b8860b;
  --gradient-gold: linear-gradient(135deg, #b8860b, #daa520, #b8860b);
  --gradient-rose: linear-gradient(135deg, #d4567a, #e88da5);
  --gradient-hero: linear-gradient(180deg, rgba(250,248,245,0) 0%, rgba(250,248,245,0.6) 50%, #faf8f5 100%);
  --gradient-shimmer: linear-gradient(90deg, transparent, rgba(184,134,11,0.12), transparent);
  --shadow-soft: 0 4px 24px rgba(44, 36, 32, 0.06);
  --shadow-glow: 0 8px 32px rgba(184, 134, 11, 0.12);
  --shadow-rose: 0 8px 32px rgba(212, 86, 122, 0.10);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --transition-smooth: cubic-bezier(0.23, 1, 0.32, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #ece7df;
}

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--bg-primary); }
html::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

body {
  font-family: var(--font-body);
  background: linear-gradient(rgba(250, 248, 245, 0.94), rgba(250, 248, 245, 0.94)), url('bg.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Utility ---- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--transition-smooth);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--transition-smooth) 0.15s;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--transition-smooth) 0.3s;
}

.visible .section-label,
.visible .section-title,
.visible .section-subtitle {
  opacity: 1;
  transform: translateY(0);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: var(--gradient-gold);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--transition-smooth);
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(184, 134, 11, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.6);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(184, 134, 11, 0.4);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.5s var(--transition-smooth);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(184, 134, 11, 0.08);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.12);
}

/* ---- Custom Cursor Glow ---- */
.cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s, visibility 0.8s;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-cake {
  width: 80px;
  height: 80px;
  color: var(--gold);
  animation: preloaderBounce 1s var(--transition-bounce) infinite;
}

.preloader-text {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  margin-top: 1rem;
  animation: preloaderFade 1.5s ease-in-out infinite;
}

@keyframes preloaderBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes preloaderFade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(44, 36, 32, 0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}

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

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.7rem 1.8rem !important;
  background: var(--gradient-gold) !important;
  color: #ffffff !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.4s var(--transition-smooth) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(212,168,83,0.3);
  color: #ffffff !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.4s;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  overflow: hidden;
  padding-top: 80px; /* Account for navbar */
}

.hero-bg-shimmer {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(184,134,11,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(212,86,122,0.03) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(184,134,11,0.04) 0%, transparent 40%);
  z-index: 1;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.float-item {
  position: absolute;
  left: var(--left);
  top: var(--top);
  font-size: var(--size);
  opacity: 0;
  animation: floatStar 4s ease-in-out infinite;
  animation-delay: var(--delay);
  filter: drop-shadow(0 0 10px rgba(184,134,11,0.4));
}

@keyframes floatStar {
  0%, 100% { opacity: 0.2; transform: translateY(0) scale(0.8); }
  50% { opacity: 0.8; transform: translateY(-20px) scale(1.2); }
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-text-wrapper {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.6rem;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--transition-smooth) 0.3s forwards;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(184,134,11,0.4); }
  50% { opacity: 0.6; transform: scale(1.2); box-shadow: 0 0 0 6px rgba(184,134,11,0); }
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--transition-smooth) 0.5s forwards;
}

.hero-heading .line-light {
  display: block;
  color: var(--text-primary);
  font-weight: 400;
}

.hero-heading .line-gold {
  display: block;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-heading .line-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  margin-top: -0.5rem;
  transform: rotate(-3deg);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--transition-smooth) 0.7s forwards;
}

.hero-chandigarh {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: -1rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 3.5vw, 1.1rem);
  white-space: nowrap;
  color: var(--gold);
  opacity: 0;
  animation: heroFadeUp 1s var(--transition-smooth) 0.8s forwards;
}

.hero-chandigarh svg {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s var(--transition-smooth) 0.9s forwards;
}

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

/* ---- Animated Cakes ---- */
.hero-cakes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.cake {
  position: absolute;
  font-size: 0;
  opacity: 0;
}

.cake-left {
  left: 5%;
  bottom: 10%;
  animation: cakePopLeft 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.5s forwards;
}

.cake-right {
  right: 5%;
  bottom: 8%;
  animation: cakePopRight 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.8s forwards;
}

.cake-emoji {
  width: 140px;
  height: 140px;
  color: var(--gold);
  display: block;
  filter: drop-shadow(0 0 30px rgba(212,168,83,0.3));
  animation: cakeFloat 4s ease-in-out infinite;
}

.cake-right .cake-emoji {
  animation-delay: 0.5s;
}

.cake-sparkle {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0;
}

.cake-left .cake-sparkle:nth-child(2) {
  top: -20px; left: 10px;
  animation: sparkle 2s ease-in-out 2.5s infinite;
}
.cake-left .cake-sparkle:nth-child(3) {
  top: 0; right: -15px;
  animation: sparkle 2s ease-in-out 2.8s infinite;
}
.cake-left .cake-sparkle:nth-child(4) {
  top: -30px; right: 20px;
  animation: sparkle 2s ease-in-out 3.1s infinite;
}

.cake-right .cake-sparkle:nth-child(2) {
  top: -15px; left: 5px;
  animation: sparkle 2s ease-in-out 2.7s infinite;
}
.cake-right .cake-sparkle:nth-child(3) {
  top: -25px; right: -10px;
  animation: sparkle 2s ease-in-out 3s infinite;
}
.cake-right .cake-sparkle:nth-child(4) {
  top: 5px; left: -20px;
  animation: sparkle 2s ease-in-out 3.3s infinite;
}

.cake-left-mid {
  left: 2%;
  bottom: 35%;
  animation: cakePopLeft 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) 2.1s forwards;
}

.cake-left-bottom {
  left: 8%;
  bottom: 55%;
  animation: cakePopRight 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) 2.4s forwards;
}

.cake-right-mid {
  right: 2%;
  bottom: 38%;
  animation: cakePopRight 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) 2.2s forwards;
}

.cake-right-bottom {
  right: 7%;
  bottom: 58%;
  animation: cakePopLeft 1.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) 2.5s forwards;
}

.cake-left-mid .cake-emoji,
.cake-right-mid .cake-emoji {
  width: 100px;
  height: 100px;
  animation-delay: 1s;
}

.cake-emoji-sm {
  width: 70px !important;
  height: 70px !important;
}

/* Hide extra cakes on mobile */
@media (max-width: 768px) {
  .cake-left-mid, .cake-left-bottom,
  .cake-right-mid, .cake-right-bottom {
    display: none;
  }
}

@keyframes cakePopLeft {
  0% { opacity: 0; transform: translateY(100px) scale(0) rotate(-20deg); font-size: 0; }
  60% { opacity: 1; transform: translateY(-20px) scale(1.15) rotate(5deg); font-size: 1rem; }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); font-size: 1rem; }
}

@keyframes cakePopRight {
  0% { opacity: 0; transform: translateY(100px) scale(0) rotate(20deg); font-size: 0; }
  60% { opacity: 1; transform: translateY(-20px) scale(1.15) rotate(-5deg); font-size: 1rem; }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); font-size: 1rem; }
}

@keyframes cakeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(2deg); }
  75% { transform: translateY(8px) rotate(-2deg); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* ---- Title Balloons ---- */
.title-balloon {
  position: absolute;
  width: 70px;
  height: 105px;
  pointer-events: auto;
  z-index: -1;
  cursor: pointer;
}

.tb-left {
  left: -80px;
  bottom: -20px;
  animation: floatTitleUpLeft 12s linear forwards;
}

.tb-right {
  right: -80px;
  bottom: -60px;
  animation: floatTitleUpRight 14s linear forwards;
}

@keyframes floatTitleUpLeft {
  0% { transform: translateY(100px) rotate(-10deg); opacity: 0; }
  5% { opacity: 0.9; }
  100% { transform: translateY(-120vh) rotate(15deg); opacity: 0.9; }
}

@keyframes floatTitleUpRight {
  0% { transform: translateY(100px) rotate(10deg); opacity: 0; }
  5% { opacity: 0.9; }
  100% { transform: translateY(-120vh) rotate(-15deg); opacity: 0.9; }
}

.pop-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
}

.mirror-sparkle {
  position: fixed;
  background: radial-gradient(circle, #ffffff 20%, var(--gold) 60%, rgba(212,168,83,0) 100%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  pointer-events: none;
  z-index: 99;
  transform: translate(-50%, -50%);
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  opacity: 0;
  animation: heroFadeLeft 1.2s var(--transition-smooth) 0.6s forwards;
}

@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-image-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 600px;
  border-radius: 240px 240px 0 0;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(184, 134, 11, 0.15);
  border: 8px solid #ffffff;
}

.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.hero-image-inner:hover img {
  transform: scale(1.1);
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(184, 134, 11, 0.2);
  pointer-events: none;
  overflow: hidden;
}

.hero-image-glow::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(30deg);
  animation: shimmer 6s infinite linear;
}

@keyframes shimmer {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  30% { transform: translate(400%, 400%) rotate(30deg); }
  100% { transform: translate(400%, 400%) rotate(30deg); }
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
}

/* ---- Hero Scroll Indicator ---- */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--transition-smooth) 2.5s forwards;
}

.hero-scroll span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ---- Stats Bar ---- */
.stats-bar {
  position: relative;
  padding: 4rem 0;
  background: rgba(243, 239, 233, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--transition-smooth);
}

.visible .stat-item { opacity: 1; transform: translateY(0); }
.visible .stat-item:nth-child(1) { transition-delay: 0.1s; }
.visible .stat-item:nth-child(2) { transition-delay: 0.2s; }
.visible .stat-item:nth-child(3) { transition-delay: 0.3s; }
.visible .stat-item:nth-child(4) { transition-delay: 0.4s; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---- Services Section ---- */
.services {
  padding: 7rem 0;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 0 0 2rem 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s var(--transition-smooth);
  opacity: 0;
  transform: translateY(40px);
  box-shadow: 0 2px 16px rgba(44, 36, 32, 0.04);
}

.visible .service-card { opacity: 1; transform: translateY(0); }
.visible .service-card:nth-child(1) { transition-delay: 0.1s; }
.visible .service-card:nth-child(2) { transition-delay: 0.2s; }
.visible .service-card:nth-child(3) { transition-delay: 0.3s; }
.visible .service-card:nth-child(4) { transition-delay: 0.4s; }

.service-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.service-card:hover .service-image {
  transform: scale(1.06);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(184,134,11,0.25);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(184,134,11,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -30px;
  margin-left: 1.8rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(44, 36, 32, 0.06);
  transition: all 0.5s var(--transition-smooth);
}

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

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--bg-secondary);
  border-color: var(--gold);
  box-shadow: 0 6px 16px rgba(184, 134, 11, 0.15);
}

.service-card-content {
  padding: 0 1.8rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.35rem 1rem;
  background: rgba(184,134,11,0.07);
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ---- Gallery / Showcase ---- */
.gallery {
  padding: 7rem 0;
  background: rgba(243, 239, 233, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--transition-smooth);
}

.visible .gallery-item { opacity: 1; transform: scale(1); }
.visible .gallery-item:nth-child(1) { transition-delay: 0.1s; }
.visible .gallery-item:nth-child(2) { transition-delay: 0.2s; }
.visible .gallery-item:nth-child(3) { transition-delay: 0.3s; }
.visible .gallery-item:nth-child(4) { transition-delay: 0.4s; }
.visible .gallery-item:nth-child(5) { transition-delay: 0.5s; }
.visible .gallery-item:nth-child(6) { transition-delay: 0.6s; }

.gallery-item:nth-child(1) { grid-row: span 2; }

.gallery-item-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(252,252,252,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s;
}

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

.gallery-item-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.gallery-item-overlay p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ---- Why Choose Us ---- */
.why-us {
  padding: 7rem 0;
  position: relative;
}

.why-us-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 16px rgba(44, 36, 32, 0.04);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition-smooth);
}

.visible .why-card { opacity: 1; transform: translateY(0); }
.visible .why-card:nth-child(1) { transition-delay: 0.1s; }
.visible .why-card:nth-child(2) { transition-delay: 0.25s; }
.visible .why-card:nth-child(3) { transition-delay: 0.4s; }

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,86,122,0.2);
  box-shadow: 0 12px 40px rgba(212, 86, 122, 0.08);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #f8f4ee;
  border: 1px solid rgba(184,134,11,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s var(--transition-smooth);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(184,134,11,0.08);
  border-color: rgba(184,134,11,0.2);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: 7rem 0;
  background: rgba(243, 239, 233, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

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

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  position: relative;
  transition: all 0.5s;
  box-shadow: 0 4px 20px rgba(44, 36, 32, 0.03);
}

.testimonial-card:hover {
  border-color: rgba(184, 134, 11, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 36, 32, 0.08);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-display);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 7rem 0;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(243, 239, 233, 0.5) 50%, var(--bg-primary) 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(184,134,11,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(212,86,122,0.08) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-emoji {
  width: 80px;
  height: 80px;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  display: block;
  animation: cakeFloat 3s ease-in-out infinite;
}

.cta-emoji svg {
  width: 100%;
  height: 100%;
}

.cta-section .section-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s var(--transition-smooth) 0.4s;
}

.visible .cta-buttons { opacity: 1; transform: translateY(0); }

/* ---- Footer ---- */
.footer {
  padding: 4rem 0 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--transition-smooth);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44, 36, 32, 0.04);
}

.footer-social-icon:hover {
  background: rgba(184,134,11,0.08);
  border-color: rgba(184,134,11,0.25);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.12);
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-social-icon:hover svg {
  color: var(--gold);
}

.contact-link {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  transition: color 0.3s, transform 0.3s;
}

.footer-column a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ---- Confetti Burst (JS triggered) ---- */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  z-index: 10001;
  pointer-events: none;
  animation: confettiFall 3s ease-in forwards;
}

@keyframes confettiFall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
}

/* ---- Shimmer Divider ---- */
.shimmer-divider {
  width: 100%;
  height: 1px;
  background: var(--gradient-shimmer);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

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

/* ---- Mobile Nav ---- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(252,252,252,0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

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

.mobile-nav-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  transition: color 0.3s;
}

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 4rem;
  }
  .hero-text-wrapper {
    max-width: 700px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image-wrapper {
    justify-content: center;
    width: 100%;
  }
  .hero-image-inner {
    height: 500px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }

  .why-us-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-socials { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }

  .hero-image-inner {
    height: 400px;
    border-width: 5px;
  }
}

@media (max-width: 480px) {
  .hero-heading { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-heading .line-script { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { width: 300px; }
  
  .hero-image-inner {
    height: 320px;
    border-radius: 120px 120px 20px 20px;
  }
}

/* ---- Gallery Background Colors ---- */
.gallery-item:nth-child(1) .gallery-item-bg {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}
.gallery-item:nth-child(2) .gallery-item-bg {
  background: linear-gradient(135deg, #ffe0b2, #ffcc80);
}
.gallery-item:nth-child(3) .gallery-item-bg {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.gallery-item:nth-child(4) .gallery-item-bg {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}
.gallery-item:nth-child(5) .gallery-item-bg {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.gallery-item:nth-child(6) .gallery-item-bg {
  background: linear-gradient(135deg, #fff9c4, #fff59d);
}
