/* ============================================================
   Yash Studio Gudha — Dark Luxury Theme (Black + Gold)
   [Framer 3D Responsive Edition]
   ============================================================ */

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

:root {
  --bg:       #030303;
  --bg2:      #080808;
  --panel:    rgba(20, 20, 20, 0.4);
  --panel-2:  rgba(30, 30, 30, 0.5);
  --text:     rgba(255, 255, 255, 0.95);
  --muted:    rgba(255, 255, 255, 0.65);
  --gold:     #e2af3d;
  --gold-2:   rgba(226, 175, 61, 0.15);
  --gold-3:   rgba(226, 175, 61, 0.08);
  --stroke:   rgba(255, 255, 255, 0.06);
  --stroke-glow: rgba(226, 175, 61, 0.3);
  --radius:   24px;
  
  /* Advanced Framer Physics/Springs */
  --spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  --spring-bouncy: cubic-bezier(0.34, 1.56, 0.64, 1.15);
  --shadow-sm: 0 8px 24px rgba(0,0,0,0.6);
  --shadow-md: 0 16px 40px rgba(0,0,0,0.8), inset 0 1px 1px rgba(255,255,255,0.1);
  --shadow-lg: 0 30px 60px rgba(0,0,0,0.9), inset 0 2px 2px rgba(255,255,255,0.15);
  
  --glass-border: 1px solid rgba(255,255,255,0.08);
  --glass-grad: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
  --gold-grad: linear-gradient(135deg, #fceca4, #d4a32a);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 100px; /* Accounts for fixed navbar */
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  /* Massive cinematic background gradients */
  background-image: radial-gradient(1200px 800px at 15% 0%, rgba(226, 175, 61, 0.08), transparent 60%),
                    radial-gradient(900px 900px at 85% 30%, rgba(226, 175, 61, 0.05), transparent 50%),
                    radial-gradient(1000px 1000px at 50% 100%, rgba(226, 175, 61, 0.04), transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold-2); color: var(--gold); }

h1, h2, h3, h4, .font-playfair {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

/* ── Universal Glass & 3D Utility classes ── */
.glass {
  background: var(--glass-grad);
  border: var(--glass-border);
  border-top-color: rgba(255,255,255,0.15);
  border-left-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.glass-strong {
  background: linear-gradient(145deg, rgba(40,40,40,0.6) 0%, rgba(10,10,10,0.8) 100%);
  border: var(--glass-border);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}

/* ============================================================
   DYNAMIC ISLAND NAVBAR (Framer Floating header)
   ============================================================ */
.navbar {
  background: transparent !important;
  border-bottom: none !important;
  padding-top: 24px;
  height: auto;
  transition: all 0.5s var(--spring);
  z-index: 1040;
}
.navbar > .container {
  background: rgba(12, 12, 12, 0.45);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 60px;
  padding: 8px 16px;
  transition: all 0.5s var(--spring);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.navbar.scrolled { padding-top: 12px; }
.navbar.scrolled > .container {
  background: rgba(8, 8, 8, 0.85);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  border-color: rgba(226, 175, 61, 0.2);
  padding: 8px 24px;
}

.navbar-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 18px !important;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--gold) !important;
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

/* 3D Dropdown */
.navbar .dropdown-menu {
  background: rgba(15,15,15,0.88);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--gold);
  border-radius: 20px;
  padding: 12px;
  backdrop-filter: blur(30px);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  transform-origin: top;
  animation: drop3D 0.5s var(--spring-bouncy);
}
@keyframes drop3D {
  0%   { opacity: 0; transform: perspective(1000px) rotateX(-15deg) translateY(-20px) scale(0.95); }
  100% { opacity: 1; transform: perspective(1000px) rotateX(0) translateY(0) scale(1); }
}
.navbar .dropdown-item {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.navbar .dropdown-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  transform: translateX(6px);
}

/* ============================================================
   BUTTONS (Framer 3D Push)
   ============================================================ */
.btn-book-now, .btn-gold {
  position: relative;
  background: var(--gold-grad);
  color: #111 !important;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--spring);
  box-shadow: 0 10px 30px rgba(226, 175, 61, 0.25), inset 0 2px 0 rgba(255,255,255,0.5);
  z-index: 1;
}
.btn-book-now:hover, .btn-gold:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(226, 175, 61, 0.4), inset 0 2px 0 rgba(255,255,255,0.7);
}
.btn-book-now:active, .btn-gold:active {
  transform: translateY(2px) scale(0.95);
  box-shadow: 0 4px 12px rgba(226, 175, 61, 0.2);
}

.btn-outline-gold {
  border: 1px solid rgba(226, 175, 61, 0.4);
  background: rgba(226, 175, 61, 0.05);
  color: var(--gold);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: all 0.4s var(--spring);
  backdrop-filter: blur(10px);
}
.btn-outline-gold:hover {
  background: rgba(226, 175, 61, 0.15);
  border-color: var(--gold);
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 12px 32px rgba(226, 175, 61, 0.2);
}
.btn-outline-gold:active { transform: scale(0.95); }

/* ============================================================
   HERO (Immersive Cinematic)
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 1200px; /* Essential for 3D depth */
}
.hero::before {
  content: ''; position: absolute; inset: -10%;
  background: url('../images/hero.jpg') center / cover no-repeat;
  filter: brightness(0.45) contrast(1.1);
  animation: heroBreathing 25s ease-in-out infinite alternate;
  z-index: -2;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(3,3,3,0.3) 40%, rgba(3,3,3,0.8) 100%);
  z-index: -1;
}
@keyframes heroBreathing {
  0% { transform: scale(1) translateZ(0); }
  100% { transform: scale(1.1) translateZ(40px); }
}

.hero-content {
  position: relative; z-index: 1; padding-top: 100px;
}
.hero-badge {
  display: inline-block;
  background: rgba(20,20,20,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  color: var(--gold);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 8px 18px; border-radius: 50px;
  margin-bottom: 28px; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.1; margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 20%, #999999 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.hero-desc {
  color: rgba(255,255,255,0.85); font-size: 1.15rem;
  max-width: 600px; line-height: 1.8; margin-bottom: 36px;
}

/* ============================================================
   SECTIONS & TYPOGRAPHY
   ============================================================ */
section { padding: 130px 0; position: relative; z-index: 2; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: #fff; background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800;
  letter-spacing: -0.5px; line-height: 1.15;
}
.section-subtitle { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.title-underline {
  width: 70px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 30px;
}
.bg-section-alt { background: linear-gradient(to bottom, transparent, rgba(226, 175, 61, 0.03) 50%, transparent); }

/* ============================================================
   PURE CSS 3D CARD HOVER (The "Framer" Magic)
   ============================================================ */
.card-hover {
  transition: all 0.6s var(--spring);
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
}
.card-hover::before {
  /* Internal top-light reflection */
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0);
  border-top: 1px solid rgba(255,255,255,0.2);
  pointer-events: none; z-index: 10;
  transition: all 0.6s var(--spring);
}
.card-hover:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale3d(1.03, 1.03, 1.03) translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: rgba(45,45,45,0.5);
  border-color: rgba(226, 175, 61, 0.3);
}
.card-hover:hover::before {
  border-top: 1px solid rgba(255,255,255,0.4);
  border-left: 1px solid rgba(255,255,255,0.2);
}

/* ============================================================
   PLANNING TOOLS 
   ============================================================ */
.planner-icon-wrap {
  width: 110px; height: 110px; border-radius: 35px; /* iOS Squircle */
  background: linear-gradient(135deg, rgba(40,40,40,0.9), rgba(10,10,10,1));
  border: 1px solid rgba(255,255,255,0.08); box-shadow: inset 0 2px 10px rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 2.2rem;
  transition: all 0.5s var(--spring);
}
.planner-icon-wrap:hover {
  transform: translateY(-12px) scale(1.08) rotateX(8deg);
  background: linear-gradient(135deg, rgba(55,55,55,1), rgba(15,15,15,1));
  border-color: rgba(226, 175, 61, 0.4);
  box-shadow: 0 20px 40px rgba(226, 175, 61, 0.15), inset 0 2px 2px rgba(255,255,255,0.4);
}
.planner-icon-wrap .gold {
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.planner-label { font-size: 0.95rem; font-weight: 500; letter-spacing: 0.5px; color: #fff; }

/* ============================================================
   EVENT CATEGORIES
   ============================================================ */
.event-cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.event-cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--spring);
}
.event-cat-card:hover img { transform: scale(1.1); }
.event-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  transition: opacity 0.5s;
}
.event-cat-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.event-cat-sub { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.cat-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 0.75rem; font-weight: 600; padding: 6px 14px; border-radius: 50px;
}

/* ============================================================
   TRENDING VENUES
   ============================================================ */
.venue-card {
  border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer;
  background: var(--panel); border: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px;
}
.venue-card img {
  width: 100%; height: 280px; object-fit: cover;
  transition: transform 0.7s var(--spring-bouncy);
}
.venue-card:hover img { transform: scale(1.08); }
.venue-info {
  padding: 24px;
  background: linear-gradient(135deg, rgba(35,35,35,0.7), rgba(15,15,15,0.9));
  backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.1);
}
.venue-name { font-weight: 700; font-size: 1.15rem; margin-bottom: 4px; }
.venue-count { font-size: 0.85rem; color: var(--gold); }
.venue-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(20,20,20,0.8); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2);
  color: var(--gold); font-size: 0.8rem; font-weight: 600; padding: 6px 16px; border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* ============================================================
   REAL WEDDINGS GRID
   ============================================================ */
.couple-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer; margin-bottom: 24px;
  display: flex; /* Ensures column flexing works properly */
}
.couple-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.15); border-top-color: rgba(255,255,255,0.3);
}
.couple-card img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.9s var(--spring);
}
.couple-card.tall img { height: 100%; min-height: 500px; }
.couple-card:hover img { transform: scale(1.08); }
.couple-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 15%, rgba(0,0,0,0.4) 70%, transparent 100%);
  padding: 30px 24px;
}
.couple-name { font-size: 1.3rem; font-weight: 700; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.8);}
.couple-venue { font-size: 0.9rem; color: var(--gold); font-weight: 500; }

/* ============================================================
   GALLERY / PORTFOLIO
   ============================================================ */
.gallery-tab-btn {
  background: rgba(30,30,30,0.5); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px); color: var(--muted);
  padding: 12px 28px; border-radius: 50px; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: all 0.4s var(--spring);
  letter-spacing: 0.5px;
}
.gallery-tab-btn:hover { background: rgba(60,60,60,0.7); color: #fff; transform: translateY(-3px);}
.gallery-tab-btn.active {
  background: #fff; color: #000; font-weight: 600;
  box-shadow: 0 10px 20px rgba(255,255,255,0.2); transform: translateY(-2px);
}

.gallery-img-wrap { border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-img-wrap img {
  width: 100%; height: 300px; object-fit: cover;
  transition: transform 0.7s var(--spring), filter 0.7s;
}
.gallery-img-wrap::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.15); border-top-color: rgba(255,255,255,0.3);
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.1); filter: brightness(1.15); }

/* ============================================================
   SERVICES & PRICING
   ============================================================ */
.service-icon-wrap {
  width: 70px; height: 70px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(45,45,45,0.9), rgba(15,15,15,1));
  border: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.25);
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0;
}

.pricing-popular { position: relative; border-color: rgba(226, 175, 61, 0.4) !important; box-shadow: 0 20px 50px rgba(226, 175, 61, 0.1); }
.pricing-popular::before {
  content: 'POPULAR CHOICE'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #000;
  font-size: 0.75rem; font-weight: 800; padding: 6px 18px; border-radius: 50px; letter-spacing: 1px;
  box-shadow: 0 6px 16px rgba(226, 175, 61, 0.4); z-index: 2;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-cover-img { filter: grayscale(0.1); transition: all 0.5s ease; }
.card-hover:hover .blog-cover-img { transform: scale(1.08); filter: grayscale(0); }
.blog-category-badge {
  display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold); font-size: 0.75rem; font-weight: 600; padding: 6px 14px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ============================================================
   ABOUT STATS
   ============================================================ */
.about-stat-card {
  background: var(--glass-grad); border: var(--glass-border); border-top-color: rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 36px 20px; text-align: center;
  transition: all 0.5s var(--spring); box-shadow: var(--shadow-sm); height: 100%;
}
.about-stat-card:hover {
  transform: translateY(-8px); border-color: rgba(226, 175, 61, 0.4); background: rgba(35,35,35,0.6);
}
.about-stat-num {
  font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 700;
  background: linear-gradient(180deg, #fff 20%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; margin-bottom: 8px;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-control, .form-select {
  background: rgba(15, 15, 15, 0.7) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-top-color: rgba(255,255,255,0.2) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 18px 24px !important;
  font-size: 1rem !important;
  transition: all 0.4s var(--spring) !important;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.3) !important;
}
.form-control:focus, .form-select:focus {
  background: rgba(30, 30, 30, 0.9) !important;
  box-shadow: 0 0 0 4px rgba(226, 175, 61, 0.2), inset 0 2px 4px rgba(0,0,0,0.1) !important;
  border-color: rgba(226, 175, 61, 0.6) !important;
  transform: translateY(-2px);
}
.form-control::placeholder { color: rgba(255,255,255,0.35) !important; }
.form-label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-left: 6px; margin-bottom: 8px;}

/* ============================================================
   FOOTER (Rich Depth Component)
   ============================================================ */
.footer {
  background: #020202; border-top: 1px solid rgba(255,255,255,0.08); padding: 100px 0 0;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 70%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.6;
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 24px; font-weight: 800; letter-spacing: 0.5px;
}
.footer h6 { color: #fff; font-size: 0.95rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 24px; text-transform: uppercase;}
.footer a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.95rem; transition: all 0.3s;}
.footer a:hover { color: #fff; transform: translateX(8px); display: inline-block;}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 14px; }

.footer-social a {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  color: #fff !important; font-size: 1.1rem; transition: all 0.4s var(--spring);
}
.footer-social a:hover { background: #fff; color: #000 !important; transform: translateY(-6px) scale(1.1); box-shadow: 0 10px 20px rgba(255,255,255,0.3);}

.footer-newsletter input {
  background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.15) !important;
  color: #fff !important; border-radius: 16px 0 0 16px !important; padding: 16px 20px !important;
}
.footer-newsletter .btn {
  border-radius: 0 16px 16px 0; background: #fff; color: #000; font-weight: 700; padding: 16px 28px; transition: background 0.3s;
}
.footer-newsletter .btn:hover { background: var(--gold); }

/* ============================================================
   REVEAL ANIMATIONS (3D Pop-in)
   ============================================================ */
.reveal {
  opacity: 0; transform: perspective(1000px) rotateX(-5deg) translateY(60px) scale(0.92);
  transition: opacity 0.8s ease, transform 1s var(--spring);
  will-change: transform, opacity;
}
.reveal.in-view { opacity: 1; transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1); }

.g-4 > .reveal:nth-child(1) { transition-delay: 0s; }
.g-4 > .reveal:nth-child(2) { transition-delay: 0.1s; }
.g-4 > .reveal:nth-child(3) { transition-delay: 0.2s; }
.g-4 > .reveal:nth-child(4) { transition-delay: 0.3s; }
.g-4 > .reveal:nth-child(5) { transition-delay: 0.4s; }
.g-4 > .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; width: 68px; height: 68px; border-radius: 50%;
  background: #25D366; color: #fff !important; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; text-decoration: none; box-shadow: 0 12px 36px rgba(37,211,102,0.4); z-index: 1050;
  transition: all 0.5s var(--spring);
}
.whatsapp-float:hover { transform: scale(1.15) rotate(-8deg) translateY(-4px); box-shadow: 0 20px 50px rgba(37,211,102,0.6); }

/* ============================================================
   RESPONSIVE GRID & UI BREAKPOINTS (Perfect on all devices)
   ============================================================ */

/* Tablet & Smaller Laptops (Max 991px) */
@media (max-width: 991px) {
  .navbar { padding-top: 10px; }
  .navbar > .container { padding: 12px 20px; border-radius: 20px; }
  .navbar .collapse { 
    background: rgba(10,10,10,0.95); margin-top: 16px; border-radius: 16px; 
    padding: 24px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(30px);
  }
  .navbar .nav-link { font-size: 1.1rem; padding: 12px 16px !important;}
  
  .hero { min-height: 85vh; }
  .hero-content { padding-top: 80px; }
  .hero h1 { background: #fff; -webkit-background-clip: text; }
  .couple-card { display: block; }
  .couple-card.tall img, .couple-card img { height: 400px; }
  .about-stat-num { font-size: 2.4rem; }
}

/* Tablet Portrait (Max 768px) */
@media (max-width: 768px) {
  section { padding: 90px 0; }
  .section-title { font-size: 2.2rem; }
  .couple-card.tall img, .couple-card img { height: 350px; }
  .gallery-img-wrap img { height: 260px; }
  .venue-card img { height: 240px; }
}

/* Mobile Devices (Max 576px) */
@media (max-width: 576px) {
  /* Prevent horizontal scroll issues */
  body { overflow-x: hidden; }
  .container { padding-left: 20px; padding-right: 20px; }
  
  /* Section Spacing */
  section { padding: 75px 0; }
  
  /* Navbar */
  .navbar { padding-top: 8px; }
  .navbar > .container { border-radius: 16px; padding: 10px 16px; width: calc(100% - 32px);}
  .navbar-brand span { font-size: 1.2rem; }
  
  /* Hero */
  .hero { min-height: 92vh; }
  .hero h1 { font-size: 2.8rem; }
  .hero-badge { margin-top: 40px; }
  
  /* Headings */
  .section-title { font-size: 2rem; }
  
  /* Form inputs preventing zoom */
  .form-control, .form-select { font-size: 16px !important; padding: 14px 18px !important; }
  
  /* Buttons */
  .btn-gold, .btn-outline-gold { width: 100%; text-align: center; }
  
  /* Galleries & Taps */
  .gallery-tab-btn { font-size: 0.8rem; padding: 10px 18px; margin: 4px; width: 44%;text-align:center;}
  
  /* Image sizing for mobile */
  .couple-card.tall img, .couple-card img { height: 300px; }
  .gallery-img-wrap img { height: 240px; }
  .event-cat-card { aspect-ratio: 4/5; }
  
  /* Floating elements */
  .whatsapp-float { bottom: 20px; right: 20px; width: 60px; height: 60px; font-size: 1.8rem; }
  .title-underline { margin: 16px auto 24px; }
  
  /* Planner tools wrapping */
  .planner-icon-wrap { width: 90px; height: 90px; font-size: 1.8rem;}
}
