/* ═══════════════════════════════════════════════
   EVENTS.GXB.GG — FRESH & ENERGETIC DESIGN SYSTEM
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&display=swap');

/* ── DESIGN TOKENS ── */
:root {
    --bg-dark: #050508;
    --bg-surface: #0a0a10;
    --bg-card: #12121c;
    --bg-card-hover: #1a1a27;
    
    /* Energetic Party Palette */
    --accent-1: #ff2a5f; /* Neon Pink */
    --accent-2: #ff7e40; /* Vibrant Orange */
    --accent-glow: rgba(255, 42, 95, 0.35);
    --accent-subtle: rgba(255, 42, 95, 0.08);
    
    --text-main: #ffffff;
    --text-secondary: #e0e2eb;
    --text-dim: #8b8f9e;
    --border: #232336;
    --border-hover: #353550;
    
    --glass: rgba(5, 5, 8, 0.75);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 100px;
    
    --transition-fast: 0.1s ease-out;
    --transition-smooth: 0.2s ease-out;
    --max-width: 1200px;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── FRESH BACKGROUND ELEMENTS ── */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--accent-1) 0%, transparent 60%);
    opacity: 0.08;
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
}
body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent-2) 0%, transparent 60%);
    opacity: 0.08;
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
}

/* ── TYPOGRAPHY ── */
h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}
h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}
h3 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ── HIGHLIGHT GRADIENT ── */
.highlight {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    transition: all var(--transition-fast);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
}

.nav-logo .brand-title {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0px;
    text-decoration: none;
}
.nav-logo {
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:not(.nav-btn):hover {
    color: #fff;
}
.nav-links a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    border-radius: 3px;
    transition: width var(--transition-smooth);
}
.nav-links a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 700 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all var(--transition-fast) !important;
}

.nav-btn:hover {
    background: var(--text-main) !important;
    color: var(--bg-dark) !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
header.hero {
    padding: 180px 24px 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-subtle);
    border: 1px solid rgba(255, 42, 95, 0.2);
    border-radius: var(--radius-pill);
    color: var(--accent-1);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.subtitle {
    color: var(--text-secondary);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    box-shadow: 0 10px 30px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 42, 95, 0.5);
}

.btn-secondary {
    background: rgba(255, 126, 64, 0.1); /* Subtle orange tint */
    color: var(--accent-2);
    border: 1px solid rgba(255, 126, 64, 0.4);
}
.btn-secondary:hover {
    background: rgba(255, 126, 64, 0.2);
    border-color: var(--accent-2);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 126, 64, 0.2);
}

.hero-image-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-card), var(--bg-dark));
    border: 1px solid var(--border);
    padding: 20px;
}
.hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(18, 18, 28, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 700;
}
.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 15px #00ff88;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* ══════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════ */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 40px 24px;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
}
.trust-item:hover {
    border-color: var(--accent-1);
    background: var(--accent-subtle);
    transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════ */
.section {
    padding: 120px 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.tag {
    color: var(--accent-2);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: block;
}
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* ══════════════════════════════════════════
   EQUIPMENT SHOWCASE
   ══════════════════════════════════════════ */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.equipment-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
}
.equipment-card:hover {
    border-color: var(--accent-1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.equipment-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    background: #08080c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.equipment-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-smooth);
}
.equipment-card:hover .equipment-img img {
    transform: scale(1.08);
}
.equipment-quantity {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--text-main);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 2;
}
.equipment-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.equipment-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.equipment-subtitle {
    color: var(--accent-1);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.equipment-desc {
    color: var(--text-dim);
    margin-bottom: 30px;
}
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.spec-item {
    background: rgba(0,0,0,0.2);
    padding: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.02);
}
.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.spec-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 4px;
    color: var(--text-secondary);
}

.accessories-banner {
    margin-top: 40px;
    background: linear-gradient(90deg, var(--bg-card), transparent);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent-2);
    border-radius: var(--radius-md);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.accessories-icon { font-size: 3rem; }
.accessories-info h4 { font-size: 1.3rem; margin-bottom: 8px; }
.accessories-info p { color: var(--text-dim); }

/* ══════════════════════════════════════════
   RENTAL PACKAGES
   ══════════════════════════════════════════ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-smooth);
}
.package-card.featured {
    border-color: var(--accent-1);
    background: linear-gradient(180deg, rgba(255, 42, 95, 0.05), var(--bg-card) 60%);
    box-shadow: 0 20px 50px rgba(255, 42, 95, 0.1);
    transform: translateY(-10px);
}
.package-card:hover {
    border-color: var(--accent-2);
    transform: translateY(-8px);
}
.package-card.featured:hover {
    transform: translateY(-16px);
}
.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.package-header {
    text-align: center;
    margin-bottom: 32px;
}
.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.package-target { color: var(--text-dim); }
.package-price {
    text-align: center;
    margin-bottom: 40px;
}
.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}
.price-period {
    color: var(--text-dim);
    font-weight: 500;
}
.weekend-deal {
    display: inline-block;
    margin-top: 16px;
    background: var(--accent-subtle);
    color: var(--accent-1);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
}
.package-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}
.package-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.package-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-2);
}
.package-features li.dimmed { opacity: 0.4; }
.package-features li.dimmed::before { content: '–'; color: inherit; }

.package-card .btn-primary,
.package-card .btn-secondary {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* ══════════════════════════════════════════
   USE CASES
   ══════════════════════════════════════════ */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.usecase-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
}
.usecase-card:hover {
    border-color: var(--accent-2);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
}
.usecase-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}
.usecase-card h3 { margin-bottom: 12px; }

/* ══════════════════════════════════════════
   PROCESS STEPS
   ══════════════════════════════════════════ */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--accent-1), var(--border));
    z-index: 0;
}
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--accent-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    transition: all var(--transition-fast);
}
.process-step:hover .process-step-number {
    background: var(--accent-1);
    transform: scale(1.1) rotate(10deg);
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-fast);
}
.faq-item.active { border-color: var(--accent-2); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--accent-1);
    transition: transform var(--transition-smooth);
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 32px;
    color: var(--text-dim);
}
.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 32px 32px;
}

/* ══════════════════════════════════════════
   CONTACT CARD
   ══════════════════════════════════════════ */
.contact-card {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    padding: 80px 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px var(--accent-glow);
}
.contact-card h2 { color: #fff; margin-bottom: 24px; }
.contact-card p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 500;
}
.contact-card .btn-primary {
    background: #fff;
    color: var(--accent-1);
}
.contact-card .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
    text-align: center;
    padding: 60px 24px;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent) 1;
    color: var(--text-dim);
    font-weight: 500;
}
.footer-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 32px;
}
.footer-links a {
    color: var(--text-main);
    text-decoration: none;
}
.footer-links a:hover { color: var(--accent-2); }

/* ══════════════════════════════════════════
   ANIMATIONS & SCROLLBAR
   ══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

.hero-enter > * { animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; opacity: 0; }
.hero-enter > *:nth-child(1) { animation-delay: 0.1s; }
.hero-enter > *:nth-child(2) { animation-delay: 0.2s; }
.hero-enter > *:nth-child(3) { animation-delay: 0.3s; }
.hero-enter > *:nth-child(4) { animation-delay: 0.4s; }
.hero-enter > *:nth-child(5) { animation-delay: 0.5s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

::selection { background: var(--accent-1); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-1); }

/* ══════════════════════════════════════════
   MOBILE NAV OVERLAY
   ══════════════════════════════════════════ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .equipment-grid, .packages-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .package-card.featured { transform: none; }
    .package-card.featured:hover { transform: translateY(-8px); }
    .usecases-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { gap: 16px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: var(--bg-surface); flex-direction: column; justify-content: center;
        transition: right 0.4s ease;
    }
    .nav-links.active { right: 0; }
    .accessories-banner { flex-direction: column; text-align: center; }
    .process-steps { flex-direction: column; }
    .process-steps::before { display: none; }
    .process-step { display: flex; text-align: left; align-items: center; gap: 24px; }
    .process-step-number { margin: 0; width: 64px; height: 64px; font-size: 1.4rem; }
    header.hero { padding-top: 140px; }
}
