/* Pandal Explorer — Public Website */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --pe-primary: #c41e3a;
    --pe-primary-dark: #8b1529;
    --pe-primary-soft: rgba(196, 30, 58, 0.1);
    --pe-dark: #1a0a0f;
    --pe-dark-soft: #2d1219;
    --pe-gold: #f4c430;
    --pe-gold-light: #ffe082;
    --pe-cream: #faf6f0;
    --pe-text: #3d2a30;
    --pe-muted: #6b5a62;
    --pe-border: rgba(26, 10, 15, 0.08);
    --pe-radius: 1rem;
    --pe-radius-lg: 1.5rem;
    --pe-shadow: 0 8px 32px rgba(26, 10, 15, 0.1);
    --pe-shadow-lg: 0 24px 64px rgba(26, 10, 15, 0.18);
    --pe-gradient: linear-gradient(135deg, #1a0a0f 0%, #3d0f1c 45%, #1a0a0f 100%);
    --pe-gradient-gold: linear-gradient(135deg, #f4c430 0%, #e8a317 100%);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--pe-text);
    background: var(--pe-cream);
    overflow-x: hidden;
}

h1, h2, h3, .display-font { font-family: var(--font-display); }

img { max-width: 100%; height: auto; }

a { transition: color 0.2s, opacity 0.2s; }

/* ── Navbar ── */
.site-navbar {
    background: rgba(26, 10, 15, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.65rem 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.site-navbar.scrolled {
    background: rgba(26, 10, 15, 0.97);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--pe-gradient-gold);
    border-radius: 10px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: 8px;
    position: relative;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--pe-gold) !important;
    background: rgba(244, 196, 48, 0.08);
}

/* ── Buttons ── */
.btn-gold {
    background: var(--pe-gradient-gold);
    color: var(--pe-dark);
    font-weight: 700;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffe082 0%, #f4c430 100%);
    color: var(--pe-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(244, 196, 48, 0.45);
}

.btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: var(--pe-primary);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    transition: transform 0.2s, background 0.2s;
}

.btn-primary-custom:hover {
    background: var(--pe-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Hero ── */
.hero-section {
    position: relative;
    background: var(--pe-gradient);
    color: #fff;
    padding: 7rem 0 5rem;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f4c430' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(196, 30, 58, 0.35);
    top: -120px;
    right: -80px;
    animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(244, 196, 48, 0.2);
    bottom: -100px;
    left: -60px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-glow-3 {
    width: 250px;
    height: 250px;
    background: rgba(196, 30, 58, 0.25);
    top: 40%;
    left: 30%;
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(244, 196, 48, 0.15);
    border: 1px solid rgba(244, 196, 48, 0.35);
    color: var(--pe-gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-section h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.hero-section h1 .highlight {
    background: var(--pe-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pe-gold);
    line-height: 1.2;
}

.hero-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Phone mockup */
.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 2.5rem;
    padding: 12px;
    box-shadow: var(--pe-shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: #1a1a1a;
    border-radius: 0 0 1rem 1rem;
    margin: 0 auto 8px;
}

.phone-screen {
    background: linear-gradient(180deg, #1a0a0f 0%, #2d1219 100%);
    border-radius: 1.75rem;
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
}

.phone-screen-header {
    padding: 1rem;
    background: rgba(196, 30, 58, 0.3);
}

.phone-screen-header h6 {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 0.85rem;
}

.phone-screen-cards {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-card-title {
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.phone-card-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
}

.phone-card-rating {
    color: var(--pe-gold);
    font-size: 0.65rem;
    font-weight: 700;
}

.phone-float-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 0.6rem 0.85rem;
    box-shadow: var(--pe-shadow);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pe-dark);
    z-index: 3;
    animation: float 5s ease-in-out infinite;
}

.phone-float-badge.badge-1 { top: 15%; left: -20%; }
.phone-float-badge.badge-2 { bottom: 20%; right: -15%; animation-delay: 1s; }
.phone-float-badge.badge-3 { top: 45%; right: -25%; animation-delay: 2s; }

.phone-float-badge i { color: var(--pe-primary); margin-right: 0.35rem; }

/* ── Sections ── */
.section-padding { padding: 5rem 0; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pe-primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-weight: 800;
    color: var(--pe-dark);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--pe-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.bg-pattern-light {
    background-color: #fff;
    background-image: radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(244, 196, 48, 0.06) 0%, transparent 50%);
}

.bg-dark-section {
    background: var(--pe-gradient);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.bg-dark-section .section-title { color: #fff; }
.bg-dark-section .section-subtitle { color: rgba(255, 255, 255, 0.7); }

/* Feature cards */
.feature-card {
    border: 1px solid var(--pe-border);
    border-radius: var(--pe-radius-lg);
    background: #fff;
    box-shadow: var(--pe-shadow);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pe-shadow-lg);
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.feature-card-icon.red { background: rgba(196, 30, 58, 0.1); color: var(--pe-primary); }
.feature-card-icon.gold { background: rgba(244, 196, 48, 0.15); color: #b8860b; }
.feature-card-icon.purple { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.feature-card-icon.teal { background: rgba(20, 184, 166, 0.1); color: #0d9488; }
.feature-card-icon.blue { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.feature-card-icon.orange { background: rgba(249, 115, 22, 0.1); color: #ea580c; }
.feature-card-icon.pink { background: rgba(236, 72, 153, 0.1); color: #db2777; }
.feature-card-icon.indigo { background: rgba(99, 102, 241, 0.1); color: #4f46e5; }

.feature-card h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
}

.feature-card p { color: var(--pe-muted); font-size: 0.925rem; line-height: 1.65; margin: 0; }

.feature-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pe-gradient-gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .feature-card-accent { opacity: 1; }

/* Festival cards */
.festival-card-web {
    border-radius: var(--pe-radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
    transition: transform 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.festival-card-web:hover { transform: translateY(-4px) scale(1.02); }

.festival-card-web::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}

.festival-card-web .festival-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.festival-card-web .festival-content { position: relative; z-index: 2; }

.festival-card-web .festival-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }

.festival-card-web h5 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.festival-card-web .festival-dates {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.festival-status {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.festival-status.live { background: #22c55e; color: #fff; }
.festival-status.upcoming { background: rgba(59, 130, 246, 0.9); color: #fff; }
.festival-status.ended { background: rgba(107, 114, 128, 0.8); color: #fff; }

/* How it works */
.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pe-gradient-gold);
    color: var(--pe-dark);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 16px rgba(244, 196, 48, 0.4);
}

.step-card h5 { font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { color: var(--pe-muted); font-size: 0.925rem; margin: 0; }

.step-connector {
    display: none;
}

@media (min-width: 992px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 28px;
        left: calc(50% + 40px);
        width: calc(100% - 80px);
        height: 2px;
        background: linear-gradient(90deg, var(--pe-gold), rgba(244, 196, 48, 0.2));
    }
    .step-card:last-child .step-connector { display: none; }
}

/* Contest banner */
.contest-banner {
    background: linear-gradient(135deg, var(--pe-primary) 0%, #6b0f1a 50%, var(--pe-dark) 100%);
    color: #fff;
    border-radius: var(--pe-radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--pe-shadow-lg);
}

.contest-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.contest-trophy {
    font-size: 5rem;
    filter: drop-shadow(0 8px 24px rgba(244, 196, 48, 0.4));
}

.prize-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.prize-pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Page hero (inner pages) */
.page-hero {
    background: var(--pe-gradient);
    color: #fff;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--pe-cream), transparent);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.page-content {
    padding: 3rem 0 5rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

/* Feature list (features page) */
.feature-list-card {
    background: #fff;
    border-radius: var(--pe-radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--pe-border);
    box-shadow: var(--pe-shadow);
    height: 100%;
    display: flex;
    gap: 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-list-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--pe-shadow-lg);
}

.feature-list-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--pe-primary);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About page */
.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-image-grid .img-main {
    grid-row: span 2;
    border-radius: var(--pe-radius-lg);
    overflow: hidden;
    min-height: 320px;
    background: var(--pe-gradient);
    position: relative;
}

.about-image-grid .img-small {
    border-radius: var(--pe-radius);
    overflow: hidden;
    min-height: 150px;
    background: linear-gradient(135deg, var(--pe-primary), var(--pe-dark));
}

.about-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-grid .img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

/* Contact */
.contact-card {
    background: #fff;
    border-radius: var(--pe-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--pe-shadow-lg);
    border: 1px solid var(--pe-border);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--pe-border);
}

.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--pe-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Legal content */
.legal-content h2 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    color: var(--pe-dark);
}

.legal-content p, .legal-content li {
    color: var(--pe-muted);
    line-height: 1.75;
}

.legal-content ul { padding-left: 1.25rem; }

.legal-card {
    background: #fff;
    border-radius: var(--pe-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--pe-shadow);
    border: 1px solid var(--pe-border);
}

/* App download section */
.app-download-section {
    background: var(--pe-dark);
    color: #fff;
    border-radius: var(--pe-radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.app-download-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f4c430' fill-opacity='0.05'%3E%3Cpath d='M20 20h20v20H20V20zm-20 0h20v20H0V20z'/%3E%3C/g%3E%3C/svg%3E");
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.store-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-2px);
}

.store-badge small { display: block; font-size: 0.65rem; opacity: 0.7; }
.store-badge strong { font-size: 1rem; }

/* Footer */
.site-footer {
    background: var(--pe-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--pe-gradient-gold);
}

.site-footer h5, .site-footer h6 {
    color: #fff;
    font-weight: 700;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover { color: var(--pe-gold); }

.footer-brand-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--pe-primary);
    color: #fff;
}

/* ── Hero XL ── */
.hero-section-xl {
    min-height: 100vh;
    padding: 8rem 0 6rem;
}

.min-vh-hero { min-height: calc(100vh - 10rem); }

.hero-stats-lg { gap: 2.5rem; }

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: bounce-hint 2s infinite;
    z-index: 2;
}

.hero-scroll-hint i {
    display: block;
    font-size: 1.25rem;
    margin-top: 0.35rem;
}

@keyframes bounce-hint {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.phone-mockup-lg { max-width: 340px; }

.phone-float-badge.badge-4 {
    bottom: 8%;
    left: -18%;
    animation-delay: 1.5s;
}

.phone-festival-chips {
    display: flex;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    overflow-x: auto;
}

.phone-festival-chips span {
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.phone-festival-chips span.active {
    background: var(--pe-primary);
    color: #fff;
    font-weight: 600;
}

/* ── Marquee ── */
.marquee-band {
    background: var(--pe-dark);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 2.5rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.marquee-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee-item i {
    color: var(--pe-gold);
    font-size: 0.5rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

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

/* ── Stats band ── */
.stats-band {
    background: linear-gradient(135deg, var(--pe-primary) 0%, var(--pe-primary-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20h20v20H20V20zm-20 0h20v20H0V20z'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-box {
    position: relative;
    color: #fff;
    padding: 1rem;
}

.stat-box i {
    font-size: 2rem;
    color: var(--pe-gold);
    margin-bottom: 0.75rem;
    display: block;
}

.stat-box-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stat-box-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

/* ── Section padding XL ── */
.section-padding-lg { padding: 7rem 0; }

.lead-sm { font-size: 1.05rem; line-height: 1.75; }

/* ── Festival cards LG ── */
.festival-card-lg {
    min-height: 300px;
    padding: 2rem;
}

.festival-card-lg .festival-emoji { font-size: 3rem; }

.festival-card-lg h5 { font-size: 1.25rem; }

.festival-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

/* ── Pandal showcase ── */
.pandal-showcase-card {
    background: #fff;
    border-radius: var(--pe-radius-lg);
    overflow: hidden;
    box-shadow: var(--pe-shadow);
    border: 1px solid var(--pe-border);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pandal-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pe-shadow-lg);
}

.pandal-showcase-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pandal-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.pandal-showcase-card:hover .pandal-showcase-img img {
    transform: scale(1.06);
}

.pandal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pe-gold);
    color: var(--pe-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.pandal-rating {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    color: var(--pe-gold);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
}

.pandal-showcase-body { padding: 1.5rem; }

.pandal-showcase-body h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pandal-meta {
    color: var(--pe-muted);
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
}

.pandal-desc {
    color: var(--pe-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pandal-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.pandal-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--pe-primary-soft, rgba(196,30,58,0.08));
    color: var(--pe-primary);
    text-transform: capitalize;
}

.pandal-tag.open { background: rgba(34,197,94,0.12); color: #16a34a; }

/* ── Feature showcase rows ── */
.feature-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-showcase-row:last-child { margin-bottom: 0; }

.feature-showcase-row.reverse .feature-showcase-img { order: 2; }
.feature-showcase-row.reverse .feature-showcase-text { order: 1; }

.feature-showcase-img {
    position: relative;
    border-radius: var(--pe-radius-lg);
    overflow: hidden;
    box-shadow: var(--pe-shadow-lg);
}

.feature-showcase-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.feature-showcase-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 72px;
    height: 72px;
    background: var(--pe-gradient-gold);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--pe-dark);
    box-shadow: var(--pe-shadow);
}

.feature-showcase-text h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
    color: var(--pe-dark);
}

.feature-showcase-text p {
    color: var(--pe-muted);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.feature-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-check-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0;
    font-weight: 500;
    font-size: 0.925rem;
    color: var(--pe-text);
}

.feature-check-list i { color: #22c55e; font-size: 1.1rem; }

.feature-card-lg { min-height: 200px; }

/* ── Area cards ── */
.area-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pe-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: background 0.2s, transform 0.2s;
}

.area-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.area-card i {
    font-size: 2rem;
    color: var(--pe-gold);
    margin-bottom: 1rem;
    display: block;
}

.area-card h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.area-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.55;
}

.step-card-lg {
    background: #fff;
    border-radius: var(--pe-radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--pe-shadow);
    border: 1px solid var(--pe-border);
    height: 100%;
    transition: transform 0.2s;
}

.step-card-lg:hover { transform: translateY(-4px); }

.bg-pattern-light .step-card-lg .step-number { margin-bottom: 1.5rem; }

.bg-pattern-light .step-card-lg h5 { color: var(--pe-dark); }
.bg-pattern-light .step-card-lg p { color: var(--pe-muted); }

/* ── Photo gallery ── */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--pe-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.gallery-item-1 { grid-row: span 2; }
.gallery-item-3 { grid-column: span 1; grid-row: span 2; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay i { color: #ef4444; margin-right: 0.35rem; }

/* ── Testimonials ── */
.testimonial-card {
    background: #fff;
    border-radius: var(--pe-radius-lg);
    padding: 2rem;
    box-shadow: var(--pe-shadow);
    border: 1px solid var(--pe-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--pe-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--pe-muted);
    line-height: 1.75;
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--pe-border);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pe-primary), var(--pe-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--pe-dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--pe-muted);
}

/* ── Contest XL ── */
.contest-banner-xl { padding: 4rem; }
.contest-trophy-xl { font-size: 6rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
    background: #fff;
    border-radius: var(--pe-radius);
    border: 1px solid var(--pe-border);
    overflow: hidden;
    box-shadow: var(--pe-shadow-sm, var(--pe-shadow));
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.35rem;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--pe-dark);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover { background: #faf8f9; }

.faq-question i {
    color: var(--pe-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }

.faq-answer {
    padding: 0 1.35rem 1.15rem;
    color: var(--pe-muted);
    line-height: 1.75;
    font-size: 0.925rem;
}

/* ── App download XL ── */
.app-download-xl { padding: 4rem; }

.store-badge-lg { padding: 1rem 1.5rem; }

.download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.875rem;
    opacity: 0.85;
}

.download-features span { display: flex; align-items: center; gap: 0.35rem; }
.download-features i { color: var(--pe-gold); }

.download-visual-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-height: 320px;
}

.dl-img-1 {
    grid-row: span 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--pe-radius-lg);
    min-height: 280px;
}

.dl-img-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--pe-radius);
    min-height: 130px;
}

.dl-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pe-gradient-gold);
    color: var(--pe-dark);
    font-weight: 700;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    box-shadow: var(--pe-shadow-lg);
    font-size: 0.9rem;
}

/* ── Final CTA ── */
.final-cta {
    background: var(--pe-gradient);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(244,196,48,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta h2 { color: #fff; position: relative; }

/* Animations on scroll (simple fade-in via class) */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-section, .hero-section-xl { padding-top: 6rem; min-height: auto; padding-bottom: 5rem; }
    .min-vh-hero { min-height: auto; }
    .hero-scroll-hint { display: none; }
    .phone-float-badge { display: none; }
    .hero-stats, .hero-stats-lg { gap: 1.25rem; }
    .contest-banner, .contest-banner-xl { padding: 2rem; }
    .section-padding, .section-padding-lg { padding: 4rem 0; }
    .feature-showcase-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .feature-showcase-row.reverse .feature-showcase-img,
    .feature-showcase-row.reverse .feature-showcase-text { order: unset; }
    .feature-showcase-img img { height: 260px; }
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    .gallery-item-1, .gallery-item-3 { grid-row: span 1; }
    .app-download-xl { padding: 2.5rem; }
    .stats-band { padding: 3rem 0; }
    .final-cta { padding: 4rem 0; }
}

@media (max-width: 575px) {
    .about-image-grid { grid-template-columns: 1fr; }
    .about-image-grid .img-main { grid-row: auto; min-height: 220px; }
    .photo-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .hero-stats-lg { flex-direction: column; gap: 1rem; }
    .download-visual-grid { grid-template-columns: 1fr; }
    .dl-img-1 { grid-row: auto; min-height: 200px; }
    .festival-card-lg { min-height: 260px; }
}

/* SEO & accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    background: var(--pe-gold);
    color: var(--pe-dark);
    padding: 0.65rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.breadcrumb-nav {
    padding: 6rem 0 0;
    background: #fff;
    border-bottom: 1px solid var(--pe-border);
}
.breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0.75rem 0 1rem;
    font-size: 0.875rem;
}
.breadcrumb-nav .breadcrumb-item a { color: var(--pe-primary); text-decoration: none; }
.breadcrumb-nav .breadcrumb-item.active { color: var(--pe-muted); }

.festival-card {
    background: #fff;
    border: 1px solid var(--pe-border);
    border-radius: var(--pe-radius);
    box-shadow: var(--pe-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.festival-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pe-shadow-lg);
}
.festival-emoji { font-size: 2rem; }

.contact-card {
    background: #fff;
    border: 1px solid var(--pe-border);
    border-radius: var(--pe-radius-lg);
    box-shadow: var(--pe-shadow);
}
