@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #C8F400;
    --accent-dim: rgba(200, 244, 0, 0.12);
    --accent-glow: rgba(200, 244, 0, 0.25);
    --bg:    #080808;
    --bg2:   #0e0e0e;
    --bg3:   #141414;
    --bg4:   #1c1c1c;
    --border: rgba(255,255,255,0.07);
    --white: #ffffff;
    --muted: rgba(255,255,255,0.45);
    --text:  rgba(255,255,255,0.82);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Navigation ── */
.navbar {
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
}

.logo {
    color: var(--accent);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
}

.burger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}

/* ── Hero ── */
.hero {
    background: var(--bg);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200,244,0,0.07) 0%, transparent 65%);
    border-radius: 50%;
    animation: orb1 10s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,244,0,0.05) 0%, transparent 65%);
    border-radius: 50%;
    animation: orb2 12s ease-in-out infinite alternate;
}

/* Diagonal grid lines background */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,244,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,244,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

@keyframes orb1 {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.2); }
}

@keyframes orb2 {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(-60px, -40px) scale(1.25); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 0 20px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(200,244,0,0.25);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--accent);
    display: block;
    -webkit-text-stroke: 2px var(--accent);
    color: transparent;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--muted);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2.5s ease-in-out infinite;
}

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

/* ── Buttons ── */
.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: #d8ff1a;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ── Stats Bar ── */
.stats-bar {
    background: var(--bg2);
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(200,244,0,0.03) 50%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.6rem;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
    display: block;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    display: block;
}

/* ── Section Shared ── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1rem;
    color: var(--muted);
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ── About ── */
.about {
    padding: 112px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
}

.about-card {
    background: var(--bg2);
    padding: 48px 36px;
    text-align: center;
    transition: background 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-card:hover { background: var(--bg3); }
.about-card:hover::after { transform: scaleX(1); }

.about-card .icon-wrap {
    width: 68px;
    height: 68px;
    border: 1.5px solid rgba(200,244,0,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.about-card:hover .icon-wrap {
    background: var(--accent);
    border-color: var(--accent);
}

.about-card i {
    font-size: 1.5rem;
    color: var(--accent);
    transition: color 0.3s;
}

.about-card:hover i { color: #000; }

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.93rem;
}

/* ── Programs ── */
.programs {
    padding: 112px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,244,0,0.05) 0%, transparent 55%);
    pointer-events: none;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    position: relative;
}

.program-card {
    background: var(--bg);
    padding: 44px 36px;
    border: 1px solid var(--border);
    transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200,244,0,0.3);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(200,244,0,0.05);
}

.program-card.featured {
    border-color: rgba(200,244,0,0.35);
    background: linear-gradient(160deg, #121a00 0%, var(--bg) 100%);
}

.program-card.featured .badge { display: inline-block; }

.badge {
    display: none;
    background: var(--accent);
    color: #000;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.program-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.program-card h3 {
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.program-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.93rem;
}

.program-card .price {
    margin-top: 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent);
    display: block;
    letter-spacing: 2px;
}

.program-card .btn {
    margin-top: 22px;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.82rem;
}

/* ── Gallery ── */
.gallery {
    padding: 112px 0;
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3px;
}

.gallery-card {
    background: var(--bg3);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.75) saturate(0.9);
}

.gallery-img-top { object-position: 50% 15%; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.gallery-card:hover img {
    transform: scale(1.07);
    filter: brightness(0.5) saturate(0.8);
}

.gallery-overlay h3 {
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gallery-overlay-tag {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
}

.gallery-card:hover .gallery-overlay-tag {
    opacity: 1;
    transform: translateY(0);
}

/* ── Contact ── */
.contact {
    padding: 112px 0;
    background: var(--bg2);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.contact-info {
    background: var(--bg);
    padding: 28px;
    border: 1px solid var(--border);
    border-left: 2px solid var(--accent);
    transition: background 0.25s;
}

.contact-info:hover { background: var(--bg3); }

.contact-info h3 {
    color: var(--accent);
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-info p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.9rem;
}

.contact-form {
    background: var(--bg);
    padding: 44px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-form > p {
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 0.93rem;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: var(--bg2);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,244,0,0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .form-note {
    color: rgba(255,255,255,0.2);
    font-size: 0.78rem;
    margin-top: 14px;
}

/* ── Footer ── */
.footer {
    background: var(--bg);
    color: var(--white);
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: rgba(255,255,255,0.25);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.95rem;
    transition: all 0.25s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }

    .contact-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .burger { display: flex; }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background: rgba(8,8,8,0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active { left: 0; }

    .nav-link {
        display: block;
        padding: 0.9rem 1rem;
    }

    .nav-link::after { display: none; }

    .hero h1 { font-size: 3.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }

    .about-grid { gap: 2px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }

    .footer-inner { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2.6rem; }
}
