/*
 * G-Pop's Events & Creations — Main Stylesheet
 * static/css/style.css
 *
 * COPILOT PROMPT:
 * "Write a complete CSS stylesheet for a dark-themed party
 *  rental website. Use CSS custom properties for colors:
 *  --orange: #FF6B35, --gold: #FFD700, --purple: #5B2D8E,
 *  --dark: #1A1A1A. Include styles for: fixed navbar with
 *  blur on scroll, hero section with animated gradient bg,
 *  floating photo card with chips, stats row, tabbed services
 *  section, equipment cards with hover lift, package cards
 *  with a featured state, 4-step how-it-works with connector
 *  line, contact form with dark inputs, and a footer. Add
 *  scroll reveal animation class, stripe-divider, and a
 *  custom cursor dot. Make it fully mobile responsive."
 *
 * RECENT UPDATES (March 5, 2026):
 * - Animation: .reveal uses translateY(30px), 0.8s ease-out (was 36px / 0.7s ease)
 * - Matches framer-motion fadeInUp spec (y:30, 0.8s ease-out, 0.2s stagger)
 *
 * PREVIOUS UPDATES (February 20, 2026):
 * - Enhanced .eyebrow: Changed to gold color, added text shadow
 * - Enhanced .page-hero: Added animated radial gradient background
 * - Enhanced .page-hero__title: Added white color, text shadow, bold weight
 * - See CHANGELOG.md for complete details
 */

/* ── VARIABLES & RESET ────────────────────────────────────── */
:root {
  --orange:      #FF6B35;
  --orange-dark: #CC4A15;
  --gold:        #FFD700;
  --purple:      #5B2D8E;
  --dark:        #1A1A1A;
  --mid:         #2C2C2C;
  --gray:        #666;
  --light:       #FFF8F2;
  --white:       #FFFFFF;
  --radius:      20px;
  --shadow:      0 20px 60px rgba(0,0,0,0.2);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Nunito',sans-serif; background:var(--dark); color:var(--white); overflow-x:hidden; cursor:none; }
img  { display:block; max-width:100%; }
a    { color:inherit; text-decoration:none; }

/* ── CURSOR ───────────────────────────────────────────────── */
.cursor {
  width:14px; height:14px; background:var(--orange); border-radius:50%;
  position:fixed; top:0; left:0; pointer-events:none; z-index:9999;
  transform:translate(-50%,-50%); transition:width .2s,height .2s,background .2s;
  mix-blend-mode:difference;
}
.cursor.hover { width:38px; height:38px; background:var(--gold); }

/* ── NAVBAR ───────────────────────────────────────────────── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:0 5%; display:flex; align-items:center; justify-content:space-between;
  height:70px; background:rgba(26,26,26,.85); backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,107,53,.2); transition:all .3s;
}
nav.scrolled { background:rgba(26,26,26,.98); height:60px; }

.nav-brand { font-family:'Fredoka One',cursive; font-size:24px; color:var(--orange); letter-spacing:1px; }
.nav-brand span { color:var(--gold); }

.nav-links { display:flex; gap:32px; list-style:none; align-items:center; }
.nav-links a { font-size:14px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:rgba(255,255,255,.7); position:relative; transition:color .2s; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }

.nav-cta { background:var(--orange) !important; color:white !important; padding:10px 22px; border-radius:30px; font-weight:900 !important; }
.nav-cta:hover { background:var(--gold) !important; color:var(--dark) !important; }
.nav-cta::after { display:none !important; }

/* Mobile nav */
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:white; margin:5px 0; border-radius:2px; transition:all .3s; transform-origin:center; }
/* Hamburger open state → animates to X */
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px, -5px); }

/* Mobile nav slide-in */
.mobile-nav { display:flex; flex-direction:column; gap:0; position:fixed; top:70px; right:-100%; left:auto; width:75%; max-width:320px; bottom:0; background:rgba(26,26,26,.98); z-index:999; padding:12px 0; border-left:2px solid var(--orange); transition:right .3s ease; overflow-y:auto; }
.mobile-nav a { padding:14px 5%; font-size:16px; font-weight:700; border-bottom:1px solid rgba(255,255,255,.06); transition:background .2s; }
.mobile-nav a:hover { background:rgba(255,107,53,.1); }
.mobile-nav .mobile-cta { background:var(--orange); margin:12px 5%; border-radius:12px; text-align:center; border:none; }
.mobile-nav.open { right:0; }

/* ── FLASH MESSAGES ───────────────────────────────────────── */
.flash-container { position:fixed; top:80px; right:20px; z-index:2000; display:flex; flex-direction:column; gap:10px; max-width:380px; }
.flash { padding:14px 20px; border-radius:12px; font-size:14px; font-weight:700; display:flex; align-items:center; justify-content:space-between; gap:12px; box-shadow:0 8px 24px rgba(0,0,0,.3); }
.flash--success { background:#1a3a1a; border:1px solid #4caf50; color:#81c784; }
.flash--error   { background:#3a1a1a; border:1px solid #f44336; color:#ef9a9a; }
.flash-close { background:none; border:none; color:inherit; font-size:18px; cursor:pointer; opacity:.6; }
.flash-close:hover { opacity:1; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn { display:inline-flex; align-items:center; gap:12px; padding:20px 42px; border-radius:50px; font-family:'Nunito',sans-serif; font-size:19px; font-weight:900; cursor:pointer; border:none; text-decoration:none; transition:all .3s; }
.btn--primary { background:var(--orange); color:white; box-shadow:0 8px 30px rgba(255,107,53,.4); }
.btn--primary:hover { background:var(--orange-dark); transform:translateY(-3px); box-shadow:0 14px 40px rgba(255,107,53,.5); }
.btn--outline { background:transparent; color:white; border:2px solid rgba(255,255,255,.25); }
.btn--outline:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.btn--lg { padding:24px 50px; font-size:21px; }
.btn--full { width:100%; justify-content:center; }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding:100px 5%; }
.section--dark     { background:var(--dark); }
.section--dark-mid { background:var(--mid); }

.eyebrow { font-size:12px; font-weight:900; color:var(--gold); letter-spacing:4px; text-transform:uppercase; display:block; margin-bottom:10px; text-shadow:0 2px 8px rgba(0,0,0,.4); }

.section__header { margin-bottom:56px; }
.section__header--center { text-align:center; }

.section__title { font-family:'Fredoka One',cursive; font-size:clamp(28px,3.5vw,48px); line-height:1.1; margin-bottom:14px; }

.section__sub { font-size:17px; color:rgba(255,255,255,.6); font-weight:600; max-width:600px; line-height:1.7; }
.section__sub--center { margin:0 auto; }

/* ── STRIPE DIVIDER ───────────────────────────────────────── */
.stripe-divider { height:6px; background:repeating-linear-gradient(90deg,var(--orange) 0,var(--orange) 80px,var(--gold) 80px,var(--gold) 160px,#FF1493 160px,#FF1493 240px,#00CFFF 240px,#00CFFF 320px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero { min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; position:relative; overflow:hidden; padding:100px 5% 60px; }

.hero__bg { position:absolute; inset:0; z-index:0; background:radial-gradient(ellipse at 20% 50%,rgba(255,107,53,.18) 0%,transparent 60%),radial-gradient(ellipse at 80% 30%,rgba(91,45,142,.15) 0%,transparent 60%),var(--dark); animation:bgPulse 8s ease-in-out infinite alternate; }
@keyframes bgPulse { from {opacity:1} to {opacity:.7;filter:hue-rotate(10deg)} }

.particles { position:absolute; inset:0; pointer-events:none; z-index:1; }
.particle { position:absolute; font-size:var(--fs,32px); opacity:0; animation:particleFloat var(--dur,6s) ease-in-out infinite var(--del,0s); }
@keyframes particleFloat { 0%{opacity:0;transform:translateY(100px) rotate(0)} 20%{opacity:.6} 80%{opacity:.4} 100%{opacity:0;transform:translateY(-120px) rotate(360deg)} }

.hero__content { position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; max-width:1400px; width:100%; }

.hero__eyebrow { display:inline-flex; align-items:center; gap:12px; background:rgba(255,107,53,.15); border:1px solid rgba(255,107,53,.4); border-radius:30px; padding:14px 28px; font-size:18px; font-weight:700; color:var(--orange); letter-spacing:2px; text-transform:uppercase; margin-bottom:32px; animation:slideIn .8s ease both; }

.hero__title { font-family:'Fredoka One',cursive; font-size:clamp(48px,7vw,88px); line-height:1.05; margin-bottom:22px; animation:slideIn .8s ease .1s both; }
.hero__title--light { color:var(--white); }
.hero__title--gradient { background:linear-gradient(135deg,var(--orange),var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.hero__tagline { font-size:22px; font-weight:700; color:rgba(255,255,255,.7); margin-bottom:40px; line-height:1.6; animation:slideIn .8s ease .2s both; }
.hero__tagline strong { color:var(--orange); }

.hero__btns { display:flex; gap:20px; flex-wrap:wrap; margin-bottom:50px; animation:slideIn .8s ease .3s both; }

.hero__stats { display:flex; gap:40px; animation:slideIn .8s ease .4s both; }
.stat__num { font-family:'Fredoka One',cursive; font-size:44px; color:var(--orange); line-height:1; }
.stat__label { font-size:14px; color:rgba(255,255,255,.55); font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-top:6px; }
.stat-divider { width:1px; background:rgba(255,255,255,.1); }

/* Photo card */
.hero__right { display:flex; justify-content:center; animation:slideInRight .8s ease .2s both; }
.photo-card { position:relative; width:520px; }
.photo-card__inner { border-radius:40px; overflow:hidden; border:5px solid rgba(255,107,53,.4); box-shadow:0 45px 110px rgba(0,0,0,.5); animation:cardFloat 4s ease-in-out infinite; }
.photo-card__inner img { width:100%; filter:saturate(1.1); }
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.chip { position:absolute; background:var(--white); border-radius:16px; padding:14px 22px; display:flex; align-items:center; gap:12px; box-shadow:0 12px 32px rgba(0,0,0,.35); font-weight:900; font-size:17px; color:var(--dark); white-space:nowrap; animation:chipFloat 3s ease-in-out infinite; }
.chip--1 { top:40px; right:-32px; animation-delay:0s; }
.chip--2 { bottom:160px; left:-48px; animation-delay:1s; }
.chip--3 { bottom:54px; right:-22px; animation-delay:2s; background:var(--orange); color:white; }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

@keyframes slideIn      { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes slideInRight { from{opacity:0;transform:translateX(50px)} to{opacity:1;transform:none} }

/* ── TABS ─────────────────────────────────────────────────── */
.tabs { display:flex; gap:12px; justify-content:center; margin-bottom:44px; flex-wrap:wrap; }
.tab-btn { background:transparent; border:2px solid rgba(255,255,255,.15); color:rgba(255,255,255,.6); padding:12px 28px; border-radius:30px; font-family:'Nunito',sans-serif; font-size:15px; font-weight:900; cursor:pointer; transition:all .3s; }
.tab-btn:hover, .tab-btn--active { border-color:var(--orange); color:var(--white); background:rgba(255,107,53,.15); }
.tab-btn--active { background:var(--orange); border-color:var(--orange); }
.tab-panel { display:none; }
.tab-panel--active { display:block; }

/* ── EQUIPMENT CARDS ──────────────────────────────────────── */
.equip-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:18px; }
.equip-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); padding:26px 20px; text-align:center; transition:all .3s; cursor:default; position:relative; }
.equip-card:hover { background:rgba(255,107,53,.1); border-color:rgba(255,107,53,.4); transform:translateY(-6px); box-shadow:0 20px 50px rgba(255,107,53,.15); }
.equip-card__icon { font-size:46px; margin-bottom:12px; }
.equip-card__name { font-family:'Fredoka One',cursive; font-size:19px; color:var(--orange); margin-bottom:7px; }
.equip-card__desc { font-size:13px; color:rgba(255,255,255,.5); line-height:1.6; font-weight:600; }
.equip-card__price { margin-top:12px; display:inline-block; background:rgba(255,107,53,.15); border:1px solid rgba(255,107,53,.3); border-radius:20px; padding:5px 14px; font-size:13px; font-weight:900; color:var(--orange); }
.equip-card__deposit { display:block; margin-top:8px; font-size:12px; font-weight:700; color:rgba(255,215,0,.8); }
.equip-card__badge { position:absolute; top:-10px; right:14px; background:var(--gold); color:var(--dark); font-size:11px; font-weight:900; padding:4px 10px; border-radius:10px; }

/* ── PACKAGES ─────────────────────────────────────────────── */
.packages-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.pkg-card { border-radius:var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,.08); transition:all .3s; }
.pkg-card:hover { transform:translateY(-8px); box-shadow:var(--shadow); }
.pkg-card--featured { border-color:var(--orange); transform:scale(1.03); box-shadow:0 0 40px rgba(255,107,53,.25); }
.pkg-card--featured:hover { transform:scale(1.03) translateY(-8px); }
.pkg-card__top { padding:22px; background:rgba(255,255,255,.06); }
.pkg-card--featured .pkg-card__top { background:var(--orange); }
.pkg-card__tier { font-size:11px; font-weight:900; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:5px; }
.pkg-card--featured .pkg-card__tier { color:rgba(255,255,255,.85); }
.pkg-card__name { font-family:'Fredoka One',cursive; font-size:25px; margin-bottom:4px; }
.pkg-card__price { font-size:14px; font-weight:900; color:var(--gold); }
.pkg-card--featured .pkg-card__price { color:rgba(255,255,255,.9); }
.pkg-card__deposit { font-size:12px; font-weight:700; color:rgba(255,215,0,.7); margin-top:6px; }
.pkg-card--featured .pkg-card__deposit { color:rgba(255,255,255,.8); }
.pkg-card__body { padding:22px; background:rgba(255,255,255,.03); }
.pkg-feature { display:flex; align-items:flex-start; gap:10px; font-size:14px; font-weight:700; color:rgba(255,255,255,.8); padding:8px 0; border-bottom:1px solid rgba(255,255,255,.06); }
.pkg-feature:last-child { border-bottom:none; }
.pkg-feature::before { content:'✓'; color:var(--orange); font-weight:900; flex-shrink:0; }
.pkg-card--featured .pkg-feature::before { color:var(--gold); }

/* ── CREATIONS ────────────────────────────────────────────── */
.creations-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; }
.creation-cat { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); overflow:hidden; transition:all .3s; }
.creation-cat:hover { border-color:rgba(91,45,142,.5); transform:translateY(-4px); }
.creation-cat__head { padding:14px 18px; font-family:'Fredoka One',cursive; font-size:17px; color:white; display:flex; align-items:center; gap:8px; }
.creation-cat__body { padding:10px 18px; }
.cat-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; border-bottom:1px solid rgba(255,255,255,.06); font-size:13px; font-weight:700; color:rgba(255,255,255,.75); }
.cat-row:last-child { border-bottom:none; }
.cat-row__price { color:var(--orange); font-weight:900; font-size:12px; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; max-width:1100px; margin:0 auto; position:relative; }
.steps-grid::before { content:''; position:absolute; top:40px; left:12.5%; right:12.5%; height:2px; background:linear-gradient(90deg,var(--orange),var(--gold),var(--orange)); z-index:0; }
.step { text-align:center; padding:0 18px; position:relative; z-index:1; }
.step__num { width:78px; height:78px; background:var(--orange); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Fredoka One',cursive; font-size:28px; color:white; margin:0 auto 18px; border:4px solid var(--mid); box-shadow:0 0 0 4px var(--orange); transition:all .3s; }
.step:hover .step__num { background:var(--gold); box-shadow:0 0 0 4px var(--gold),0 10px 30px rgba(255,215,0,.3); transform:scale(1.1); }
.step__title { font-family:'Fredoka One',cursive; font-size:19px; margin-bottom:8px; }
.step__desc { font-size:13px; color:rgba(255,255,255,.5); font-weight:600; line-height:1.6; }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero { background:linear-gradient(135deg,var(--orange) 0%,#CC4A15 60%,var(--purple) 100%); padding:130px 5% 60px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 30% 50%, rgba(255,107,53,.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 30%, rgba(255,215,0,.1) 0%, transparent 50%); animation:bgPulse 8s ease-in-out infinite alternate; pointer-events:none; }
.page-hero--short { padding-bottom:50px; }
.page-hero__inner { max-width:700px; position:relative; z-index:1; }
.page-hero__title { font-family:'Fredoka One',cursive; font-size:clamp(38px,5vw,64px); line-height:1.05; margin-bottom:14px; color:#FFFFFF; text-shadow:0 3px 12px rgba(0,0,0,.5); font-weight:700; }
.page-hero__title span { color:var(--gold); text-shadow:0 3px 12px rgba(0,0,0,.6); }
.page-hero__sub { font-size:17px; color:rgba(255,255,255,.8); font-weight:600; line-height:1.7; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; max-width:1100px; margin:0 auto; align-items:start; }
.contact-form { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:22px; padding:36px; }
.contact-form__title { font-family:'Fredoka One',cursive; font-size:26px; margin-bottom:26px; }

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { margin-bottom:16px; }
.form-label { display:block; font-size:11px; font-weight:900; color:rgba(255,255,255,.45); letter-spacing:2px; text-transform:uppercase; margin-bottom:7px; }
.form-input, .form-select, .form-textarea { width:100%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:12px; padding:13px 16px; color:white; font-family:'Nunito',sans-serif; font-size:15px; font-weight:600; outline:none; transition:border-color .2s,background .2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--orange); background:rgba(255,107,53,.06); }
.form-select option { background:#2c2c2c; }
.form-textarea { min-height:120px; resize:vertical; }

.contact-info__title { font-family:'Fredoka One',cursive; font-size:26px; margin-bottom:10px; }
.contact-info__sub { font-size:15px; color:rgba(255,255,255,.55); font-weight:600; line-height:1.7; margin-bottom:28px; }

.contact-items { display:flex; flex-direction:column; gap:12px; }
.contact-item { display:flex; align-items:center; gap:14px; padding:16px 18px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:14px; transition:all .3s; }
.contact-item:hover { background:rgba(255,107,53,.1); border-color:rgba(255,107,53,.3); }
.contact-item__icon { width:44px; height:44px; background:rgba(255,107,53,.15); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.contact-item__label { font-size:11px; font-weight:900; color:rgba(255,255,255,.4); letter-spacing:2px; text-transform:uppercase; margin-bottom:2px; }
.contact-item__val { font-size:15px; font-weight:700; color:white; }
.contact-item__val:hover { color:var(--orange); }

.social-row { display:flex; gap:10px; margin-top:22px; flex-wrap:wrap; }
.social-btn { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:12px; padding:11px 18px; font-size:13px; font-weight:900; color:rgba(255,255,255,.7); transition:all .3s; }
.social-btn:hover { background:rgba(255,107,53,.15); border-color:var(--orange); color:white; transform:translateY(-3px); }

.response-promise { display:flex; gap:14px; align-items:flex-start; margin-top:24px; padding:18px; background:rgba(255,215,0,.08); border:1px solid rgba(255,215,0,.2); border-radius:14px; }
.response-promise__icon { font-size:24px; flex-shrink:0; }
.response-promise__title { font-weight:900; margin-bottom:4px; color:var(--gold); }
.response-promise__text { font-size:13px; color:rgba(255,255,255,.55); font-weight:600; line-height:1.6; }

/* ── DEPOSIT INFO (EXPANDABLE) ────────────────────────────── */
.deposit-info--expandable { border-radius:var(--radius); overflow:hidden; border:2px solid rgba(255,215,0,.25); background:rgba(255,215,0,.05); }
.deposit-info--sidebar { margin-top:24px; }

.deposit-toggle { width:100%; display:flex; align-items:center; gap:12px; padding:16px 20px; background:rgba(255,215,0,.12); border:none; cursor:pointer; transition:all .3s; text-align:left; }
.deposit-toggle:hover { background:rgba(255,215,0,.18); }
.deposit-toggle__icon { font-size:24px; flex-shrink:0; }
.deposit-toggle__text { flex:1; font-family:'Fredoka One',cursive; font-size:16px; color:var(--gold); }
.deposit-toggle__arrow { font-size:14px; color:var(--gold); transition:transform .3s; }

.deposit-content { max-height:0; overflow:hidden; transition:max-height .4s ease-out; }
.deposit-content > * { padding:0 20px; }
.deposit-content > *:first-child { padding-top:20px; }
.deposit-content > *:last-child { padding-bottom:20px; }

.deposit-info__intro { font-size:14px; color:rgba(255,255,255,.7); margin-bottom:20px; line-height:1.6; }

.deposit-section { margin-bottom:24px; }
.deposit-section:last-of-type { margin-bottom:20px; }
.deposit-section__title { font-size:12px; font-weight:900; color:var(--orange); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:12px; padding-bottom:6px; border-bottom:2px solid rgba(255,107,53,.3); }

.deposit-line { display:flex; justify-content:space-between; align-items:center; padding:10px 0; font-size:14px; border-bottom:1px solid rgba(255,255,255,.08); }
.deposit-line:last-child { border-bottom:none; }
.deposit-line__item { color:rgba(255,255,255,.85); font-weight:600; flex:1; padding-right:10px; }
.deposit-line__amount { color:var(--gold); font-weight:900; font-size:15px; white-space:nowrap; }

.deposit-info__note { font-size:13px; color:rgba(255,215,0,.8); background:rgba(255,215,0,.08); padding:14px 16px; border-radius:8px; margin-top:0; margin-bottom:16px; line-height:1.7; border-left:4px solid rgba(255,215,0,.5); }

.rental-agreement-link { display:flex; align-items:center; justify-content:center; gap:8px; background:var(--orange); color:white; padding:12px 20px; border-radius:8px; font-weight:900; font-size:14px; text-decoration:none; transition:all .3s; margin:0 20px 20px 20px; }
.rental-agreement-link:hover { background:#cc5429; transform:translateY(-2px); box-shadow:0 4px 12px rgba(255,107,53,.3); }

.social-card__status { font-size:11px; color:#4caf50; font-weight:700; letter-spacing:0.5px; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner { background:linear-gradient(135deg, #FF6B35 0%, #CC4A15 40%, #5B2D8E 100%); padding:80px 5%; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; inset:0; opacity:0.05; background:repeating-radial-gradient(circle at 25% 25%, #fff 0, #fff 1px, transparent 1px, transparent 12px), repeating-radial-gradient(circle at 75% 75%, #fff 0, #fff 1px, transparent 1px, transparent 12px); pointer-events:none; }
.cta-banner__inner { text-align:center; max-width:700px; margin:0 auto; position:relative; z-index:1; }
.cta-banner__title { font-family:'Fredoka One',cursive; font-size:clamp(32px,4vw,52px); margin-bottom:12px; }
.cta-banner__sub { font-size:17px; color:rgba(255,255,255,.85); font-weight:600; margin-bottom:32px; }
.cta-banner__btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.cta-banner .btn--outline { border-color:rgba(255,255,255,.5); }
.cta-banner .btn--outline:hover { border-color:white; color:white; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background:#111; padding:50px 5% 28px; border-top:1px solid rgba(255,107,53,.2); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:36px; margin-bottom:36px; }
.footer-brand__name { font-family:'Fredoka One',cursive; font-size:26px; color:var(--orange); margin-bottom:6px; }
.footer-brand__tagline { font-size:13px; color:rgba(255,255,255,.4); font-weight:700; font-style:italic; }
.footer-brand__desc { font-size:13px; color:rgba(255,255,255,.5); font-weight:600; line-height:1.7; margin-top:12px; }
.footer-col h4 { font-size:12px; font-weight:900; color:rgba(255,255,255,.45); letter-spacing:2px; text-transform:uppercase; margin-bottom:16px; border-bottom:2px solid var(--orange); width:24px; padding-bottom:8px; }
.footer-col a { display:block; font-size:14px; font-weight:700; color:rgba(255,255,255,.7); margin-bottom:9px; transition:color .2s; }
.footer-col a:hover { color:var(--orange); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding-top:22px; display:flex; justify-content:space-between; align-items:center; }
.footer-bottom p { font-size:13px; color:rgba(255,255,255,.45); font-weight:600; }
.footer-bottom span { color:var(--orange); }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1200px; margin:0 auto; align-items:start; }
.testimonial-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); padding:28px; transition:all .3s; }
.testimonial-card:hover { background:rgba(255,107,53,.08); border-color:rgba(255,107,53,.3); transform:translateY(-6px); }
.testimonial-stars { color:var(--gold); font-size:18px; margin-bottom:16px; letter-spacing:2px; }
.testimonial-quote { font-size:15px; line-height:1.8; color:rgba(255,255,255,.75); font-style:italic; margin-bottom:20px; }
.testimonial-quote::before { content:'"'; font-size:32px; color:var(--orange); font-family:'Fredoka One',cursive; line-height:0; vertical-align:middle; margin-right:4px; }
.testimonial-author { border-top:1px solid rgba(255,255,255,.08); padding-top:16px; }
.testimonial-name { font-family:'Fredoka One',cursive; font-size:16px; color:var(--orange); margin-bottom:4px; }
.testimonial-event { font-size:12px; color:rgba(255,255,255,.45); font-weight:700; }
/* Hidden testimonials — no layout gap */
.testimonial-card--hidden { display:none; }

@media (max-width:900px) { .testimonials-grid { grid-template-columns:1fr; } }

/* ── TRUSTED BY ───────────────────────────────────────────── */
.trusted-by { background:linear-gradient(180deg,rgba(255,107,53,.08) 0%,transparent 100%); padding:50px 5%; }
.trusted-by__inner { max-width:1200px; margin:0 auto; text-align:center; }
.trusted-by__label { display:inline-block; font-size:13px; font-weight:900; color:rgba(255,255,255,.5); letter-spacing:2px; text-transform:uppercase; margin-bottom:28px; }
.trusted-by__logos { display:flex; justify-content:center; align-items:center; gap:40px; flex-wrap:wrap; margin-bottom:20px; }
.trusted-logo { display:flex; flex-direction:column; align-items:center; gap:8px; padding:20px 28px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); transition:all .3s; cursor:default; }
.trusted-logo:hover { background:rgba(255,107,53,.1); border-color:rgba(255,107,53,.3); transform:translateY(-4px); }
.trusted-logo__icon { font-size:36px; filter:grayscale(0.3); transition:filter .3s; }
.trusted-logo:hover .trusted-logo__icon { filter:grayscale(0); }
.trusted-logo__name { font-size:13px; font-weight:700; color:rgba(255,255,255,.6); white-space:nowrap; }
.trusted-by__note { font-size:14px; color:rgba(255,255,255,.4); font-weight:600; }
@media (max-width:768px) {
  .trusted-by__logos { gap:20px; }
  .trusted-logo { padding:14px 18px; }
  .trusted-logo__icon { font-size:28px; }
  .trusted-logo__name { font-size:12px; }
}

/* ── CALENDLY WIDGET ──────────────────────────────────────── */
.calendly-section { margin-top:28px; padding:24px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); }
.calendly-section__title { font-family:'Fredoka One',cursive; font-size:20px; color:var(--orange); margin-bottom:8px; }
.calendly-section__desc { font-size:14px; color:rgba(255,255,255,.6); margin-bottom:16px; }
.calendly-section__note { font-size:12px; color:rgba(255,255,255,.4); margin-top:16px; line-height:1.6; padding:12px; background:rgba(255,107,53,.1); border-radius:8px; }
.calendly-section__note a { color:var(--orange); text-decoration:underline; }
.calendly-inline-widget { border-radius:8px; overflow:hidden; background:rgba(255,255,255,.02); }

/* ── SCROLL REVEAL  (fadeInUp + stagger) ───────────────── */
/* hidden state: y:30  opacity:0                           */
/* visible state: y:0  opacity:1  ease-out 0.8s            */
/* stagger: 0.2s between siblings                          */
.reveal { opacity:0; transform:translateY(30px); transition:opacity .8s ease-out, transform .8s ease-out; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width:900px) {
  .hero__content { grid-template-columns:1fr; text-align:center; }
  .hero__right    { display:flex; justify-content:center; order:-1; }
  .hero__left     { order:1; }
  .hero__eyebrow  { justify-content:center; }
  .hero__btns     { justify-content:center; }
  .hero__stats    { justify-content:center; }
  .ring-outer-hero { width:200px; height:240px; }
  .ring-outer-hero .photo-card__inner { width:200px; height:240px; }
  .orbit-icon     { display:none; }
  .photo-card     { width:200px; }
  .chip           { display:none; }
  .packages-grid  { grid-template-columns:1fr; }
  .steps-grid     { grid-template-columns:1fr 1fr; }
  .steps-grid::before { display:none; }
  .contact-grid   { grid-template-columns:1fr; }
  .footer-grid    { grid-template-columns:1fr 1fr; }
  .nav-links      { display:none; }
  .hamburger      { display:block; }
}
.tab-label--short { display:none; }
@media (max-width:600px) {
  .tab-label--full  { display:none; }
  .tab-label--short { display:inline; }
  .hero__stats { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
  .stat-divider { display:none; }
  .stat { background:rgba(255,255,255,.06); border-radius:12px; padding:12px; }
}
@media (max-width:520px) {
  .section { padding:70px 5%; }
  .footer-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
}

/* ── AI CHAT WIDGET ───────────────────────────────────────── */
.chat-widget { position:fixed; bottom:24px; right:24px; z-index:9999; font-family:'Nunito',sans-serif; }
.chat-toggle { width:60px; height:60px; border-radius:50%; background:var(--orange); border:none; font-size:28px; cursor:pointer; box-shadow:0 4px 20px rgba(255,107,53,.4); transition:transform .2s,box-shadow .2s; }
.chat-toggle:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(255,107,53,.5); }
.chat-window { display:none; position:absolute; bottom:75px; right:0; width:380px; max-width:90vw; background:#1a1a1a; border:1px solid rgba(255,107,53,.3); border-radius:16px; box-shadow:0 10px 40px rgba(0,0,0,.5); overflow:hidden; flex-direction:column; }
.chat-window.open { display:flex; animation:chatSlideIn .3s ease; }
@keyframes chatSlideIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.chat-header { display:flex; flex-wrap:wrap; align-items:center; gap:10px; padding:14px 16px; background:linear-gradient(135deg,var(--orange),#e55a2b); }
.chat-title { font-weight:800; font-size:15px; color:white; flex:1; }
.chat-close { background:none; border:none; color:white; font-size:24px; cursor:pointer; line-height:1; padding:0 4px; }
.chat-mode-selector { display:flex; gap:6px; width:100%; margin-top:6px; }
.chat-mode-btn { flex:1; padding:6px 8px; font-size:11px; font-weight:700; background:rgba(0,0,0,.2); border:none; border-radius:6px; color:rgba(255,255,255,.7); cursor:pointer; transition:all .2s; }
.chat-mode-btn:hover { background:rgba(0,0,0,.3); color:white; }
.chat-mode-btn.active { background:white; color:var(--orange); }
.chat-messages { flex:1; max-height:320px; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:12px; }
.chat-message { max-width:85%; padding:10px 14px; border-radius:14px; font-size:14px; line-height:1.5; font-weight:600; }
.chat-message.user { align-self:flex-end; background:var(--orange); color:white; border-bottom-right-radius:4px; }
.chat-message.assistant { align-self:flex-start; background:rgba(255,255,255,.1); color:rgba(255,255,255,.9); border-bottom-left-radius:4px; }
.chat-message.typing { opacity:.6; }
.chat-message.error { background:rgba(255,80,80,.2); color:#ff6b6b; }
.chat-input-form { display:flex; gap:8px; padding:12px; border-top:1px solid rgba(255,255,255,.1); background:rgba(0,0,0,.2); }
.chat-input-form input { flex:1; padding:10px 14px; border:1px solid rgba(255,255,255,.15); border-radius:8px; background:rgba(255,255,255,.05); color:white; font-size:14px; font-weight:600; }
.chat-input-form input::placeholder { color:rgba(255,255,255,.4); }
.chat-input-form input:focus { outline:none; border-color:var(--orange); }
.chat-input-form button { padding:10px 18px; background:var(--orange); border:none; border-radius:8px; color:white; font-size:14px; font-weight:700; cursor:pointer; transition:background .2s; }
.chat-input-form button:hover { background:#e55a2b; }
@media (max-width:520px) {
  .chat-window { width:calc(100vw - 48px); right:-12px; }
  .chat-messages { max-height:260px; }
}
