/* ==========================================================
   Photobooth Events 4U — Main Stylesheet
   Light & Elegant Design System
   ========================================================== */

/* --- 1. Variables & Reset --- */
:root {
  --primary: #1a1a2e;
  --primary-mid: #2c2c54;
  --gold: #c9a84c;
  --gold-light: #f0e3b8;
  --gold-dark: #a88a30;
  --bg: #fafaf8;
  --bg-alt: #f5f3ee;
  --white: #ffffff;
  --text: #2d2d2d;
  --text-muted: #666666;
  --border: #e8e4dc;
  --shadow: rgba(0,0,0,0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --nav-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* --- 2. Typography --- */
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-muted); line-height: 1.75; }

.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block;
}
.section-title { margin-bottom: 1rem; }
.section-desc { font-size: 1.05rem; max-width: 600px; margin-bottom: 2rem; }

/* --- 3. Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-white { background: var(--white); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white) !important; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* --- 4. Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-mid); border-color: var(--primary-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,0.2); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* --- 5. Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon {
  width: 42px; height: 42px; background: var(--primary); border-radius: 11px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.nav-logo-sub { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-family: 'Inter', sans-serif; }

/* ── Real Logo Image ───────────────────────────────────────── */
.nav-logo-img { display: flex; align-items: center; text-decoration: none; padding: 2px 0; }
.logo-img { display: block; height: 44px; width: auto; object-fit: contain; }
/* Default: show dark logo on light nav, hide white */
.logo-dark  { display: block; }
.logo-white { display: none; }
/* When nav is scrolled (still light) keep dark logo */
.nav.scrolled .logo-dark  { display: block; }
.nav.scrolled .logo-white { display: none; }
/* Footer always uses white logo — handled by only having white img in footer */
.footer .logo-img { height: 54px; opacity: .92; }
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 8px 13px;
  border-radius: 8px; font-size: 0.88rem; font-weight: 500; color: var(--text);
  cursor: pointer; transition: all var(--transition); white-space: nowrap; border: none; background: none;
}
.nav-link:hover, .nav-link.active { background: var(--bg-alt); color: var(--primary); }
.nav-link svg { width: 11px; height: 11px; transition: transform var(--transition); flex-shrink: 0; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 20px 56px rgba(0,0,0,0.13);
  min-width: 230px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: all var(--transition); z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:has(button[aria-expanded="true"]) .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item:has(button[aria-expanded="true"]) .nav-link svg { transform: rotate(180deg); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 8px; font-size: 0.88rem; color: var(--text); transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--bg-alt); color: var(--primary); padding-left: 18px; }
.nav-dropdown .icon { font-size: 1rem; width: 24px; text-align: center; }
.nav-dropdown .divider { height: 1px; background: var(--border); margin: 6px 0; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { font-size: 0.83rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all var(--transition); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--white); overflow-y: auto; z-index: 998; padding: 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile-section { margin-bottom: 24px; }
.nav-mobile-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.nav-mobile a { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--text); }
.nav-mobile-cta { padding: 20px 0; }

/* --- 6. Hero --- */
.hero {
  padding-top: calc(var(--nav-height) + 70px); padding-bottom: 80px;
  background: var(--white); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #ece9de 100%); z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); color: var(--gold-dark);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-title { margin-bottom: 20px; }
.hero-title .highlight { color: var(--gold); }
.hero-desc { font-size: 1.08rem; margin-bottom: 32px; max-width: 480px; }
.hero-stats { display: flex; gap: 28px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--primary); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.hero-visual { position: relative; }
.hero-img-frame {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-frame .frame-icon { font-size: 7rem; opacity: 0.25; }
.hero-float-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--white); border-radius: var(--radius); padding: 16px 20px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.14); border: 1px solid var(--border);
}
.hero-float-badge-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--primary); line-height: 1; }
.hero-float-badge-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.hero-float-badge2 {
  position: absolute; top: 24px; right: -16px;
  background: var(--gold); border-radius: var(--radius); padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(201,168,76,0.35); color: white; text-align: center;
}
.hero-float-badge2 .num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; line-height: 1; }
.hero-float-badge2 .label { font-size: 0.68rem; opacity: 0.9; margin-top: 2px; }

/* Page hero (inner pages) */
.page-hero {
  padding-top: calc(var(--nav-height) + 56px); padding-bottom: 64px;
  position: relative; overflow: hidden; color: var(--white);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(10,10,24,0.45); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 580px; margin-bottom: 28px; }
.page-hero .btn-group { flex-wrap: wrap; }

/* Booth hero gradients */
.bg-360     { background: linear-gradient(135deg, #1a1a2e, #1e3a7e); }
.bg-openair { background: linear-gradient(135deg, #1a2a1a, #1e6a4a); }
.bg-mirror  { background: linear-gradient(135deg, #1a1040, #5a2e8a); }
.bg-glam    { background: linear-gradient(135deg, #2a1020, #8a2050); }
.bg-roaming { background: linear-gradient(135deg, #2a1a08, #8a5010); }
.bg-slowmo  { background: linear-gradient(135deg, #0a1828, #1060a0); }
.bg-weddings { background: linear-gradient(135deg, #2a1020, #7a2858); }
.bg-corporate { background: linear-gradient(135deg, #0a0a20, #1a2860); }
.bg-venues  { background: linear-gradient(135deg, #0a1a0a, #205a30); }
.bg-planners { background: linear-gradient(135deg, #180a28, #4a1a78); }
.bg-mosaics { background: linear-gradient(135deg, #0a1a1a, #107878); }
.bg-spotlight { background: linear-gradient(135deg, #1a0a00, #7a3000); }

/* --- 7. Breadcrumb --- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.5; }

/* --- 8. Cards --- */
.card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow); border-color: var(--gold-light); }
.card-img { aspect-ratio: 4/3; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 3rem; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag { display: inline-block; background: var(--gold-light); color: var(--gold-dark); padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }

/* Feature card */
.feature-card { padding: 30px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); transition: all var(--transition); }
.feature-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(201,168,76,0.12); transform: translateY(-3px); }
.feature-icon { width: 54px; height: 54px; background: var(--gold-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.feature-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* Booth card */
.booth-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: all var(--transition); display: flex; flex-direction: column; }
.booth-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.booth-card-img { aspect-ratio: 3/2; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; transition: transform 0.4s ease; }
.booth-card:hover .booth-card-img { transform: scale(1.04); }
.booth-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.booth-card-name { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.booth-card-desc { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; flex: 1; margin-bottom: 14px; }
.booth-card-price { font-size: 0.83rem; color: var(--gold-dark); font-weight: 700; margin-bottom: 12px; }
.booth-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.86rem; font-weight: 600; color: var(--primary); transition: all var(--transition); }
.booth-card:hover .booth-card-link { gap: 10px; color: var(--gold-dark); }

/* --- 9. Split layout --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split.reverse .split-visual { order: 2; }
.split.reverse .split-content { order: 1; }
.split-visual { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-content { max-width: 520px; }

/* --- 10. Check list --- */
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.93rem; color: var(--text); }
.check-item::before { content: '✓'; width: 22px; height: 22px; min-width: 22px; background: var(--gold); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; margin-top: 2px; }

/* --- 11. Steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.step { text-align: center; position: relative; }
.step-num { width: 64px; height: 64px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin: 0 auto 20px; }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.step-desc { font-size: 0.88rem; color: var(--text-muted); }

/* --- 12. Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all var(--transition); }
.testimonial:hover { border-color: var(--gold-light); box-shadow: 0 8px 28px var(--shadow); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.93rem; line-height: 1.72; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--primary); }
.testimonial-event { font-size: 0.78rem; color: var(--text-muted); }

/* --- 13. FAQ --- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 0.98rem; color: var(--primary); gap: 16px; user-select: none; border: none; background: none; width: 100%; text-align: left; font-family: 'Inter', sans-serif; }
.faq-icon { width: 30px; height: 30px; min-width: 30px; background: var(--bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all var(--transition); color: var(--gold); font-weight: 300; }
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding-bottom: 20px; font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 600px; }

/* --- 14. CTA Banner --- */
.cta-section { background: var(--primary); color: var(--white); text-align: center; padding: 80px 24px; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 580px; margin: 0 auto 32px; }
.cta-section-alt { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); }

/* --- 15. Packages --- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: all var(--transition); position: relative; }
.package:hover { border-color: var(--gold-light); box-shadow: 0 12px 36px rgba(201,168,76,0.15); transform: translateY(-3px); }
.package.featured { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.1); }
.package-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); padding: 4px 20px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.package-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 12px; }
.package-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.package-unit { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.package-features { text-align: left; margin-bottom: 28px; }
.package-feature { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.86rem; color: var(--text); }
.package-feature:last-child { border-bottom: none; }
.package-feature-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* --- 16. Market Cards --- */
.market-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.market-card { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 16/9; display: flex; align-items: flex-end; text-decoration: none; transition: transform var(--transition); }
.market-card:hover { transform: scale(1.015); }
.market-card-bg { position: absolute; inset: 0; font-size: 6rem; display: flex; align-items: center; justify-content: center; opacity: 0.5; }
.market-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,30,0.92) 0%, rgba(10,10,30,0.3) 60%, transparent 100%); }
.market-card-content { position: relative; padding: 26px; }
.market-card-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.market-card-desc { font-size: 0.83rem; color: rgba(255,255,255,0.72); margin-bottom: 12px; }
.market-card-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--gold); transition: gap var(--transition); }
.market-card:hover .market-card-cta { gap: 10px; }

/* --- 17. Gallery --- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 3rem; cursor: pointer; transition: transform var(--transition); position: relative; }
.gallery-item:hover { transform: scale(1.04); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* --- 18. Stats Bar --- */
.stats-bar { background: var(--primary); color: var(--white); padding: 52px 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: var(--max-width); margin: 0 auto; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.83rem; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* --- 19. Partner Banner --- */
.partner-banner { background: var(--gold-light); border: 1px solid #e0c880; border-radius: var(--radius); padding: 22px 28px; display: flex; align-items: center; gap: 18px; margin-bottom: 40px; }
.partner-banner-icon { font-size: 2rem; flex-shrink: 0; }
.partner-banner p { font-size: 0.9rem; color: var(--text); margin-bottom: 0; }
.partner-banner strong { color: var(--gold-dark); }

/* --- 20. Footer --- */
.footer { background: var(--primary); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px 56px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin: 16px 0 24px; max-width: 280px; line-height: 1.72; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: rgba(255,255,255,0.6); padding-bottom: 10px; }
.footer-contact-item strong { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 24px; max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* --- 21. Scroll Animations --- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.65s ease; }
.fade-in.visible { opacity: 1; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- 22. Booth icon backgrounds --- */
.bgi-360    { background: linear-gradient(135deg, #1e3a7e, #4a7bc8); }
.bgi-open   { background: linear-gradient(135deg, #1e6a4a, #4ab08a); }
.bgi-mirror { background: linear-gradient(135deg, #5a2e8a, #9060d0); }
.bgi-glam   { background: linear-gradient(135deg, #8a2050, #d05090); }
.bgi-roam   { background: linear-gradient(135deg, #8a5010, #c89040); }
.bgi-slow   { background: linear-gradient(135deg, #1060a0, #40a0e0); }
.bgi-mosaic { background: linear-gradient(135deg, #107878, #40b0b0); }
.bgi-spot   { background: linear-gradient(135deg, #7a3000, #d06020); }

/* --- 23. Misc Components --- */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 5px 14px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 50px; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.highlight-box { background: var(--gold-light); border-left: 4px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 20px 24px; }
.highlight-box p { color: var(--text); margin-bottom: 0; font-size: 0.93rem; }

/* --- 24. Contact Form --- */
.contact-form { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.92rem; font-family: 'Inter', sans-serif;
  background: var(--bg); color: var(--text); transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* --- 25. Grid helpers (used by booth/event page templates) --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- 26. Package cards (booth pages use .packages wrapper) --- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.package { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: all var(--transition); position: relative; }
.package:hover { border-color: var(--gold-light); box-shadow: 0 12px 36px rgba(201,168,76,0.15); transform: translateY(-3px); }
.package-featured { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.1); }
.package-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); padding: 4px 20px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.package-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 12px; }
.package-price { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.package-period { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.package-features { text-align: left; margin-bottom: 28px; padding-left: 0; }
.package-features li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 0.9rem; color: var(--text); }

/* ============================================================
   PRICING PACKAGE VISIBILITY FIX
   Package cards use .fade-up but must always be visible.
   IntersectionObserver may not fire if JS loads late or the
   section is partially in-view on load — so we force opacity.
   ============================================================ */
.packages .package,
.packages .package.fade-up,
.packages .package.fade-up.delay-1,
.packages .package.fade-up.delay-2 {
  opacity: 1 !important;
  transform: none !important;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.packages .package:hover {
  transform: translateY(-3px) !important;
  border-color: var(--gold-light);
  box-shadow: 0 12px 36px rgba(201,168,76,0.15);
}

/* ============================================================
   PRINT STYLES — basic readability when page is printed
   ============================================================ */
@media print {
  .nav, .nav-mobile, .footer, .cta-section, .gallery-grid, .btn-group { display: none !important; }
  .fade-up, .fade-in { opacity: 1 !important; transform: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  h1, h2, h3 { color: #000; page-break-after: avoid; }
  .page-hero { padding: 20pt 0 10pt; }
  .page-hero h1, .page-hero p { color: #000; }
  .package { border: 1pt solid #ccc !important; break-inside: avoid; }
}

/* ============================================================
   PERFECT FOR — event-type tag chips
   ============================================================ */
.pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.pf-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--white);
  border: 2px solid var(--gold-light);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
  white-space: nowrap;
}
.pf-tag:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201,168,76,0.18);
}


/* ==========================================================
   MISSING UTILITY CLASSES (used in templates)
   ========================================================== */

/* .step-number — alias for .step-num (used in 3 templates) */
.step-number {
  width: 64px; height: 64px; background: var(--primary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 20px; flex-shrink: 0;
}

/* .step-content — used in picture-mosaics, spotlight, video-telephone */
.step-content { flex: 1; }
.step-content .step-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.step-content .step-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* .testimonial-card — used in welcome-page.php */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--gold-light); box-shadow: 0 8px 28px var(--shadow); }

/* .booth-card-tag — used in welcome-page.php */
.booth-card-tag {
  display: inline-block; background: var(--gold-light); color: var(--gold-dark);
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
}

/* .cta-content — used in add-ons.php */
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }

/* ==========================================================
   GRID-2 (missing utility — used in picture-mosaics, etc.)
   ========================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ==========================================================
   MOBILE STICKY CTA BAR
   ========================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--primary); border-top: 2px solid var(--gold);
  padding: 12px 16px; gap: 10px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; font-size: 0.88rem; padding: 12px 10px; }

/* ==========================================================
   RESPONSIVE — Tablet Landscape  (≤ 1024px)
   ========================================================== */
@media (max-width: 1024px) {
  h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
  h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
  .hero-inner { gap: 36px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .split { gap: 40px; }
  .split-content { max-width: 100%; }
}

/* ==========================================================
   RESPONSIVE — Tablet Portrait  (≤ 768px)
   ========================================================== */
@media (max-width: 768px) {
  /* Nav — show hamburger, hide desktop menu */
  .nav-menu,
  .nav-right { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-inner { justify-content: space-between; }

  /* Hero */
  .hero { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 60px; }
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .btn-group { justify-content: center; }

  /* Page hero */
  .page-hero { padding: 80px 0 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }

  /* Layout grids */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-visual { aspect-ratio: 16/9; font-size: 4rem !important; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .step { display: flex; align-items: flex-start; gap: 20px; text-align: left; }
  .step-num { flex-shrink: 0; }
  .step-icon { display: none; }

  /* Packages */
  .packages { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .package-grid { grid-template-columns: 1fr; }
  .package-featured { order: -1; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats-bar { padding: 36px 16px; }

  /* Market grid */
  .market-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 0 16px 40px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Section spacing */
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* CTA section */
  .cta-section { padding: 56px 20px; }
  .cta-section h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }

  /* Mobile sticky CTA bar */
  .mobile-cta-bar { display: flex; }

  /* Add bottom padding so last section content isn't hidden behind sticky bar */
  .cta-section { padding-bottom: 88px; }
  footer.footer { padding-bottom: 80px; }
}

/* ==========================================================
   RESPONSIVE — Mobile  (≤ 480px)
   ========================================================== */
@media (max-width: 480px) {
  h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }

  .btn-lg { padding: 14px 22px; font-size: 0.9rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; width: 100%; }

  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .package-price { font-size: 2.2rem; }

  .pf-tags { gap: 8px; }
  .pf-tag { font-size: 0.8rem; padding: 7px 14px; }

  .market-card { aspect-ratio: 4/3; }

  .booth-card-img { font-size: 3.5rem !important; }

  .section { padding: 44px 0; }
  .container { padding: 0 14px; }

  .page-hero { padding: 72px 0 48px; }
  .page-hero h1 { font-size: clamp(1.6rem, 6.5vw, 2rem); }

  /* Touch-friendly tap targets */
  .faq-question { padding: 18px 16px; font-size: 0.95rem; min-height: 52px; }
  .btn { min-height: 48px; }
  .nav-mobile a { min-height: 48px; }

  /* Hero stats compact */
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.6rem; }

  /* Mobile sticky CTA compact */
  .mobile-cta-bar .btn { font-size: 0.82rem; padding: 11px 8px; }
}

/* ==========================================================
   TOUCH DEVICE OPTIMISATIONS
   ========================================================== */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover transforms on touch — prevents stuck states */
  .booth-card:hover,
  .feature-card:hover,
  .testimonial:hover,
  .card:hover,
  .market-card:hover { transform: none; box-shadow: none; }

  /* Larger tap targets */
  .btn { min-height: 48px; }
  .nav-mobile a { min-height: 52px; }
  .faq-question { min-height: 52px; }

  /* Remove desktop-only hover dropdown behaviour */
  .nav-dropdown { pointer-events: auto; }
}

/* ==========================================================
   SAFE AREA — iPhone X+ notch / home indicator
   ========================================================== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-cta-bar {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .nav {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

