/* ============================================
   SAI SHRADDHA EVENTS & DECOR - Main Stylesheet
   ============================================ */

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

:root {
  --purple: #4B0082;
  --purple-light: #6A0DAD;
  --purple-dark: #2D0050;
  --gold: #D4AF37;
  --gold-light: #E8C94A;
  --gold-dark: #B8960A;
  --ivory: #F8F5F0;
  --charcoal: #1A1A1A;
  --lavender: #BFA2DB;
  --white: #ffffff;
  --glass-bg: rgba(255,255,255,0.07);
  --glass-border: rgba(212,175,55,0.25);
  --shadow: 0 25px 60px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.3);
  --transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:var(--font-body); background:var(--charcoal); color:var(--ivory); overflow-x:hidden; line-height:1.6; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--charcoal); }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:3px; }

/* BG ORBS */
.bg-orbs { position:fixed; inset:0; pointer-events:none; z-index:0; overflow:hidden; }
.orb { position:absolute; border-radius:50%; filter:blur(80px); opacity:0.12; animation:floatOrb 20s ease-in-out infinite; }
.orb-1 { width:600px; height:600px; background:var(--purple); top:-200px; left:-200px; }
.orb-2 { width:400px; height:400px; background:var(--gold); top:40%; right:-150px; animation-delay:-7s; }
.orb-3 { width:500px; height:500px; background:var(--lavender); bottom:-200px; left:30%; animation-delay:-14s; }
@keyframes floatOrb { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-30px) scale(1.05)} 66%{transform:translate(-20px,20px) scale(0.95)} }

/* NAVBAR */
.navbar { position:fixed; top:0; left:0; right:0; z-index:1000; padding:0 5%; height:80px; display:flex; align-items:center; justify-content:space-between; background:rgba(26,26,26,0.85); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid var(--glass-border); transition:var(--transition); }
.navbar.scrolled { height:65px; background:rgba(26,26,26,0.97); box-shadow:0 4px 30px rgba(0,0,0,0.5); }
.nav-logo { display:flex; align-items:center; gap:12px; }
.logo-icon { width:44px; height:44px; background:linear-gradient(135deg,var(--gold),var(--gold-dark)); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; font-family:var(--font-heading); color:var(--charcoal); font-weight:900; box-shadow:0 0 15px rgba(212,175,55,0.4); }
.logo-text { display:flex; flex-direction:column; }
.logo-name { font-family:var(--font-heading); font-size:1rem; font-weight:700; color:var(--ivory); line-height:1.1; }
.logo-tagline { font-size:0.62rem; color:var(--gold); letter-spacing:1px; text-transform:uppercase; }
.nav-links { display:flex; align-items:center; gap:8px; }
.nav-links a { font-size:0.78rem; font-weight:500; color:rgba(248,245,240,0.8); padding:6px 12px; border-radius:30px; transition:var(--transition); text-transform:uppercase; letter-spacing:0.8px; }
.nav-links a:hover, .nav-links a.active { color:var(--gold); background:rgba(212,175,55,0.1); }
.nav-cta { background:linear-gradient(135deg,var(--gold),var(--gold-dark)) !important; color:var(--charcoal) !important; font-weight:700 !important; }
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 25px rgba(212,175,55,0.5) !important; color:var(--charcoal) !important; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--gold); border-radius:2px; transition:var(--transition); }

/* HERO */
.hero { min-height:100vh; display:flex; align-items:center; justify-content:center; position:relative; padding:120px 5% 80px; overflow:hidden; }
.hero-bg { position:absolute; inset:0; background: radial-gradient(ellipse at 20% 50%,rgba(75,0,130,0.4) 0%,transparent 60%), radial-gradient(ellipse at 80% 20%,rgba(212,175,55,0.15) 0%,transparent 50%), linear-gradient(180deg,#0D0D0D 0%,#1A1A1A 100%); }
.hero-particles { position:absolute; inset:0; overflow:hidden; }
.particle { position:absolute; width:2px; height:2px; background:var(--gold); border-radius:50%; opacity:0; animation:particleFloat 6s ease-in-out infinite; }
@keyframes particleFloat { 0%{opacity:0;transform:translateY(0) scale(0)} 20%{opacity:0.8;transform:translateY(-20px) scale(1)} 80%{opacity:0.4;transform:translateY(-80px) scale(0.5)} 100%{opacity:0;transform:translateY(-120px) scale(0)} }
.hero-content { position:relative; z-index:2; max-width:900px; text-align:center; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(212,175,55,0.1); border:1px solid rgba(212,175,55,0.3); border-radius:30px; padding:8px 20px; font-size:0.78rem; color:var(--gold); letter-spacing:2px; text-transform:uppercase; margin-bottom:30px; animation:fadeInDown 1s ease forwards; }
.hero-title { font-family:var(--font-heading); font-size:clamp(2.5rem,6vw,5rem); font-weight:900; line-height:1.1; margin-bottom:20px; color:var(--ivory); animation:fadeInUp 1s ease 0.2s forwards; opacity:0; }
.hero-title .gold { color:var(--gold); }
.hero-title em { font-style:italic; color:var(--lavender); }
.hero-subtitle { font-size:clamp(1rem,2vw,1.25rem); color:rgba(248,245,240,0.7); max-width:650px; margin:0 auto 40px; font-weight:300; line-height:1.8; animation:fadeInUp 1s ease 0.4s forwards; opacity:0; }
.hero-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; animation:fadeInUp 1s ease 0.6s forwards; opacity:0; }
.hero-stats { display:flex; gap:50px; justify-content:center; margin-top:70px; animation:fadeInUp 1s ease 0.8s forwards; opacity:0; flex-wrap:wrap; }
.stat { text-align:center; }
.stat-number { font-family:var(--font-heading); font-size:2.5rem; font-weight:700; color:var(--gold); line-height:1; }
.stat-label { font-size:0.75rem; color:rgba(248,245,240,0.6); text-transform:uppercase; letter-spacing:1.5px; margin-top:5px; }

/* BUTTONS */
.btn { display:inline-flex; align-items:center; gap:8px; padding:14px 32px; border-radius:50px; font-family:var(--font-body); font-size:0.88rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; cursor:pointer; border:none; transition:var(--transition); position:relative; overflow:hidden; }
.btn::after { content:''; position:absolute; inset:0; background:linear-gradient(45deg,transparent 30%,rgba(255,255,255,0.15) 50%,transparent 70%); transform:translateX(-100%); transition:transform 0.6s ease; }
.btn:hover::after { transform:translateX(100%); }
.btn-primary { background:linear-gradient(135deg,var(--gold),var(--gold-dark)); color:var(--charcoal); box-shadow:0 8px 25px rgba(212,175,55,0.35); }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 15px 40px rgba(212,175,55,0.5); }
.btn-secondary { background:var(--glass-bg); color:var(--ivory); border:1px solid var(--glass-border); backdrop-filter:blur(10px); }
.btn-secondary:hover { background:rgba(212,175,55,0.1); border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.btn-outline { background:transparent; border:2px solid var(--gold); color:var(--gold); }
.btn-outline:hover { background:var(--gold); color:var(--charcoal); transform:translateY(-3px); box-shadow:0 10px 30px rgba(212,175,55,0.4); }

/* SECTIONS */
section { padding:100px 5%; position:relative; z-index:1; }
.section-header { text-align:center; margin-bottom:60px; }
.section-label { display:inline-block; font-size:0.72rem; font-weight:600; color:var(--gold); letter-spacing:3px; text-transform:uppercase; margin-bottom:16px; padding:6px 18px; border:1px solid rgba(212,175,55,0.3); border-radius:20px; background:rgba(212,175,55,0.05); }
.section-title { font-family:var(--font-heading); font-size:clamp(2rem,4vw,3.2rem); font-weight:700; color:var(--ivory); line-height:1.2; margin-bottom:16px; }
.section-title .gold { color:var(--gold); }
.section-title em { font-style:italic; color:var(--lavender); }
.section-divider { width:60px; height:2px; background:linear-gradient(90deg,var(--gold),transparent); margin:16px auto; }
.section-desc { font-size:1rem; color:rgba(248,245,240,0.65); max-width:600px; margin:0 auto; line-height:1.8; }

/* GLASS CARD */
.glass-card { background:var(--glass-bg); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border:1px solid var(--glass-border); border-radius:20px; transition:var(--transition); }
.glass-card:hover { border-color:rgba(212,175,55,0.5); box-shadow:var(--shadow-gold); transform:translateY(-8px); }

/* SERVICES */
.services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:24px; }
.service-card { padding:36px 28px; text-align:center; cursor:pointer; }
.service-icon { width:70px; height:70px; background:linear-gradient(135deg,rgba(75,0,130,0.4),rgba(212,175,55,0.2)); border:1px solid var(--glass-border); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; font-size:28px; transition:var(--transition); }
.service-card:hover .service-icon { background:linear-gradient(135deg,var(--gold),var(--gold-dark)); box-shadow:0 0 25px rgba(212,175,55,0.4); transform:rotate(10deg) scale(1.1); }
.service-title { font-family:var(--font-heading); font-size:1.15rem; font-weight:600; color:var(--ivory); margin-bottom:10px; }
.service-desc { font-size:0.83rem; color:rgba(248,245,240,0.6); line-height:1.7; }

/* GALLERY */
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:220px; gap:12px; }
.gallery-item { position:relative; overflow:hidden; border-radius:12px; cursor:pointer; }
.gallery-item:nth-child(1),.gallery-item:nth-child(7) { grid-column:span 2; grid-row:span 2; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(75,0,130,0.85),transparent); opacity:0; transition:var(--transition); display:flex; align-items:flex-end; padding:20px; }
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay p { font-family:var(--font-heading); font-size:1rem; color:var(--gold); font-style:italic; }

/* VENUES */
.venues-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px; }
.venue-card { overflow:hidden; }
.venue-img { height:200px; overflow:hidden; position:relative; }
.venue-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.venue-card:hover .venue-img img { transform:scale(1.08); }
.venue-badge { position:absolute; top:12px; right:12px; background:linear-gradient(135deg,var(--gold),var(--gold-dark)); color:var(--charcoal); font-size:0.7rem; font-weight:700; padding:4px 12px; border-radius:20px; text-transform:uppercase; letter-spacing:1px; }
.venue-info { padding:24px; }
.venue-name { font-family:var(--font-heading); font-size:1.25rem; font-weight:700; color:var(--ivory); margin-bottom:8px; }
.venue-location { font-size:0.82rem; color:var(--gold); display:flex; align-items:center; gap:5px; margin-bottom:12px; }
.venue-details { display:flex; gap:16px; margin-bottom:20px; }
.venue-detail { font-size:0.78rem; color:rgba(248,245,240,0.6); display:flex; align-items:center; gap:5px; }

/* AI PLANNER */
.ai-planner-section { background:linear-gradient(180deg,transparent,rgba(75,0,130,0.12),transparent); }
.ai-planner-container { max-width:900px; margin:0 auto; }
.ai-tabs { display:flex; gap:4px; background:rgba(255,255,255,0.05); border:1px solid var(--glass-border); border-radius:50px; padding:6px; margin-bottom:40px; max-width:500px; margin-left:auto; margin-right:auto; }
.ai-tab { flex:1; padding:12px 24px; border-radius:40px; border:none; background:transparent; color:rgba(248,245,240,0.6); font-family:var(--font-body); font-size:0.85rem; font-weight:500; cursor:pointer; transition:var(--transition); text-align:center; }
.ai-tab.active { background:linear-gradient(135deg,var(--gold),var(--gold-dark)); color:var(--charcoal); font-weight:700; box-shadow:0 4px 15px rgba(212,175,55,0.3); }
.ai-panel { display:none; }
.ai-panel.active { display:block; }
.ai-form { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-group label { font-size:0.78rem; color:var(--gold); text-transform:uppercase; letter-spacing:1.5px; font-weight:600; }
.form-group input,.form-group select,.form-group textarea { background:rgba(255,255,255,0.06); border:1px solid var(--glass-border); border-radius:10px; padding:13px 16px; color:var(--ivory); font-family:var(--font-body); font-size:0.9rem; transition:var(--transition); outline:none; -webkit-appearance:none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--gold); background:rgba(212,175,55,0.07); box-shadow:0 0 0 3px rgba(212,175,55,0.1); }
.form-group select option { background:#1a1a2e; color:var(--ivory); }
.form-full { grid-column:1 / -1; }
.ai-result { margin-top:30px; padding:30px; border-radius:16px; background:linear-gradient(135deg,rgba(75,0,130,0.2),rgba(212,175,55,0.1)); border:1px solid var(--glass-border); display:none; }
.ai-result.show { display:block; }
.result-title { font-family:var(--font-heading); font-size:1.2rem; color:var(--gold); margin-bottom:20px; display:flex; align-items:center; gap:10px; }
.result-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:16px; }
.result-item { background:rgba(255,255,255,0.05); border-radius:12px; padding:16px; text-align:center; }
.result-item-value { font-family:var(--font-heading); font-size:1.4rem; color:var(--gold); font-weight:700; margin-bottom:5px; }
.result-item-label { font-size:0.73rem; color:rgba(248,245,240,0.6); text-transform:uppercase; letter-spacing:1px; }

/* BOOKING CTA */
.booking-cta { text-align:center; padding:120px 5%; background:linear-gradient(135deg,rgba(75,0,130,0.3) 0%,rgba(26,26,26,0) 50%,rgba(212,175,55,0.1) 100%); border-top:1px solid var(--glass-border); border-bottom:1px solid var(--glass-border); }
.cta-actions { display:flex; gap:16px; justify-content:center; margin-top:40px; flex-wrap:wrap; }

/* FOOTER */
footer { background:#0D0D0D; padding:80px 5% 30px; border-top:1px solid var(--glass-border); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:50px; margin-bottom:60px; }
.footer-brand p { font-size:0.85rem; color:rgba(248,245,240,0.55); line-height:1.8; margin-top:16px; max-width:280px; }
.footer-title { font-family:var(--font-heading); font-size:1.1rem; color:var(--gold); margin-bottom:20px; font-weight:600; }
.footer-links li { margin-bottom:10px; }
.footer-links a { font-size:0.85rem; color:rgba(248,245,240,0.6); transition:var(--transition); display:flex; align-items:center; gap:8px; }
.footer-links a::before { content:'›'; color:var(--gold); font-size:1.2rem; }
.footer-links a:hover { color:var(--gold); padding-left:5px; }
.footer-contact li { display:flex; align-items:flex-start; gap:12px; margin-bottom:16px; font-size:0.85rem; color:rgba(248,245,240,0.7); }
.footer-contact-icon { color:var(--gold); font-size:16px; margin-top:2px; flex-shrink:0; }
.social-links { display:flex; gap:12px; margin-top:20px; }
.social-link { width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,0.06); border:1px solid var(--glass-border); display:flex; align-items:center; justify-content:center; font-size:16px; transition:var(--transition); color:rgba(248,245,240,0.7); }
.social-link:hover { background:var(--gold); color:var(--charcoal); border-color:var(--gold); transform:translateY(-3px); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding-top:25px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.footer-bottom p { font-size:0.8rem; color:rgba(248,245,240,0.4); }
.footer-bottom .gold { color:var(--gold); }

/* PAGE HERO */
.page-hero { min-height:50vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:140px 5% 80px; position:relative; overflow:hidden; background:radial-gradient(ellipse at center,rgba(75,0,130,0.4) 0%,transparent 70%); }
.page-hero-title { font-family:var(--font-heading); font-size:clamp(2.5rem,6vw,4.5rem); font-weight:900; color:var(--ivory); margin-bottom:16px; }
.page-hero-desc { font-size:1.05rem; color:rgba(248,245,240,0.65); max-width:600px; margin:0 auto; }
.breadcrumb { display:flex; align-items:center; gap:8px; justify-content:center; margin-bottom:20px; font-size:0.8rem; color:rgba(248,245,240,0.5); }
.breadcrumb a { color:var(--gold); }
.breadcrumb span { color:rgba(248,245,240,0.3); }

/* ABOUT */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-img-wrap { position:relative; }
.about-img-main { border-radius:20px; overflow:hidden; height:500px; }
.about-img-main img { width:100%; height:100%; object-fit:cover; }
.about-img-accent { position:absolute; bottom:-30px; right:-30px; width:200px; height:200px; border-radius:16px; overflow:hidden; border:4px solid var(--charcoal); box-shadow:var(--shadow-gold); }
.about-img-accent img { width:100%; height:100%; object-fit:cover; }
.experience-badge { position:absolute; top:30px; left:-20px; background:linear-gradient(135deg,var(--gold),var(--gold-dark)); color:var(--charcoal); padding:20px; border-radius:16px; text-align:center; box-shadow:0 15px 40px rgba(212,175,55,0.4); }
.experience-badge .number { font-family:var(--font-heading); font-size:2.5rem; font-weight:900; display:block; line-height:1; }
.experience-badge .text { font-size:0.7rem; font-weight:600; text-transform:uppercase; letter-spacing:1px; }
.about-text .section-title { text-align:left; }
.about-text .section-divider { margin:16px 0; }
.about-text p { color:rgba(248,245,240,0.7); line-height:1.9; margin-bottom:20px; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:30px; }
.value-item { padding:20px; border-radius:12px; border-left:3px solid var(--gold); background:rgba(212,175,55,0.06); }
.value-title { font-weight:600; color:var(--gold); font-size:0.9rem; margin-bottom:6px; }
.value-desc { font-size:0.8rem; color:rgba(248,245,240,0.6); line-height:1.6; }
.team-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:24px; }
.team-card { text-align:center; overflow:hidden; }
.team-img { height:240px; overflow:hidden; }
.team-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.team-card:hover .team-img img { transform:scale(1.05); }
.team-info { padding:20px; }
.team-name { font-family:var(--font-heading); font-size:1.1rem; color:var(--ivory); margin-bottom:5px; }
.team-role { font-size:0.8rem; color:var(--gold); text-transform:uppercase; letter-spacing:1px; }

/* BOOKING FORM */
.booking-form-wrap { max-width:800px; margin:0 auto; }
.booking-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; padding:40px; }
.booking-form-grid textarea { resize:vertical; min-height:120px; }

/* CONTACT */
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:50px; align-items:start; }
.contact-info-cards { display:flex; flex-direction:column; gap:20px; }
.contact-card { padding:28px; display:flex; gap:20px; align-items:flex-start; }
.contact-card-icon { width:50px; height:50px; background:linear-gradient(135deg,var(--purple),var(--gold-dark)); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.contact-card-title { font-family:var(--font-heading); font-size:1rem; color:var(--gold); margin-bottom:5px; }
.contact-card-detail { font-size:0.88rem; color:rgba(248,245,240,0.75); line-height:1.6; }

/* ANIMATIONS */
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes pulse-gold { 0%,100%{box-shadow:0 0 0 0 rgba(212,175,55,0.4)} 50%{box-shadow:0 0 0 15px rgba(212,175,55,0)} }
.pulse { animation:pulse-gold 2s ease-in-out infinite; }

.reveal { opacity:0; transform:translateY(40px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.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}

/* MOBILE MENU */
.mobile-menu { display:none; position:fixed; top:80px; left:0; right:0; background:rgba(13,13,13,0.98); backdrop-filter:blur(20px); padding:30px 5%; border-bottom:1px solid var(--glass-border); z-index:999; flex-direction:column; gap:5px; animation:fadeInDown 0.3s ease; }
.mobile-menu.open { display:flex; }
.mobile-menu a { padding:14px 20px; border-radius:10px; font-size:0.95rem; font-weight:500; color:rgba(248,245,240,0.8); transition:var(--transition); border-bottom:1px solid rgba(255,255,255,0.05); }
.mobile-menu a:hover { color:var(--gold); background:rgba(212,175,55,0.08); }

/* WHATSAPP */
.whatsapp-float { position:fixed; bottom:30px; right:30px; width:58px; height:58px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:26px; color:white; box-shadow:0 8px 25px rgba(37,211,102,0.4); z-index:998; transition:var(--transition); text-decoration:none; }
.whatsapp-float:hover { transform:scale(1.1); box-shadow:0 12px 35px rgba(37,211,102,0.6); }
@keyframes pulse-green { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.4)} 50%{box-shadow:0 0 0 15px rgba(37,211,102,0)} }

/* RESPONSIVE */
@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr} .about-grid{grid-template-columns:1fr} .gallery-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.nav-links{display:none} .hamburger{display:flex} section{padding:70px 5%} .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:180px} .ai-form{grid-template-columns:1fr} .booking-form-grid{grid-template-columns:1fr;padding:25px} .contact-grid{grid-template-columns:1fr} .footer-grid{grid-template-columns:1fr;gap:30px} .footer-bottom{flex-direction:column;text-align:center} .hero-stats{gap:30px} .about-img-accent{display:none} .experience-badge{display:none}}
@media(max-width:480px){.gallery-grid{grid-template-columns:1fr;grid-auto-rows:220px} .gallery-item:nth-child(1),.gallery-item:nth-child(7){grid-column:span 1;grid-row:span 1} .venues-grid{grid-template-columns:1fr} .services-grid{grid-template-columns:1fr}}
