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

:root {
    --red: #ff3e3e;
    --white: #fff;
    --black: #000;
    --dark: #0a0a0a;
    --mid: #111;
    --border: rgba(255, 255, 255, 0.12);
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'DM Sans', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    font-family: var(--font-body);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: grid;
    align-items: center;
    /* justify-content: space-between; */
    grid-template-columns: 1fr auto auto;
    padding: 18px 50px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
    gap: 20px;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
}

.navbar img {
    height: 26px;
    flex-shrink: 0;
}

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

.nav-links a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: opacity 0.2s, letter-spacing 0.3s;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
    letter-spacing: 3px;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-contact {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-contact:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    z-index: 99;
    padding-top: 80px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav-mobile-drawer.open {
    display: flex;
}

.nav-mobile-drawer a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 12vw, 4rem);
    letter-spacing: 2px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.nav-mobile-drawer a:hover {
    opacity: 1;
}

.nav-mobile-drawer .btn-contact {
    font-family: var(--font-display);
    font-size: 1.6rem;
    padding: 14px 36px;
    letter-spacing: 3px;
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.bg-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0.07;
    z-index: 1;
    padding-top: 70px;
}

.row {
    flex: 1;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
}

.row span {
    font-family: var(--font-display);
    font-size: 18vh;
    line-height: 0.85;
    color: var(--white);
    text-transform: uppercase;
    display: inline-block;
}

.move-left span {
    animation: slideLeft 35s linear infinite;
}

.move-right span {
    animation: slideRight 35s linear infinite;
}

@keyframes slideLeft {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 30%,
            rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 50px 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1400px;
}

.hero-top {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-kicker {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.5;
}

.hero-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
}

.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5)
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0)
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 13vw, 14rem);
    line-height: 0.88;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-title em {
    font-style: normal;
    color: var(--red);
    display: block;
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-sub {
    font-size: 0.9rem;
    opacity: 0.55;
    line-height: 1.7;
    max-width: 400px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 14px 32px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--red);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--red);
}

.btn-hero-secondary {
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* Stats strip */
.hero-stats {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hero-stats::-webkit-scrollbar {
    display: none;
}

.hero-stat {
    flex: 1;
    min-width: 100px;
    padding: 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat strong {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.72rem;
    opacity: 0.45;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    margin: 16px 0;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
    width: 100%;
    padding: 120px 50px;
    background: var(--black);
    color: var(--white);
}

.services-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 8rem);
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 180px;
    gap: 14px;
}

.box {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.25s, transform 0.2s, border-color 0.2s;
}

.box a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

.box:hover {
    background: var(--red);
    transform: translate(-4px, -4px);
    border-color: var(--red);
}

.box h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 0.9;
}

.box p {
    font-family: var(--font-body);
    font-size: 0.78rem;
    opacity: 0.65;
    margin-top: 10px;
    line-height: 1.5;
}

.box-large {
    grid-column: span 3;
    grid-row: span 2;
}

.box-tall {
    grid-column: span 2;
    grid-row: span 2;
}

.box-wide {
    grid-column: span 3;
    grid-row: span 1;
}

.box-mini {
    grid-column: span 2;
    grid-row: span 1;
}

/* =========================================
   EVENTS / TOURNAMENTS
   ========================================= */
.events-showcase {
    width: 100%;
    padding: 120px 50px;
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-top {
    margin-bottom: 80px;
}

.section-kicker {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 4px;
    opacity: 0.4;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 8rem);
    line-height: 0.9;
    letter-spacing: -3px;
}

.event-state {
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.state-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

.state-label span {
    width: 8px;
    height: 8px;
    background: #888;
    border-radius: 50%;
}

.state-label.live span {
    background: var(--red);
    box-shadow: 0 0 12px var(--red);
    animation: pulse 1.5s ease-in-out infinite;
}

.event-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.event-main {
    padding: 60px;
    border-right: 1px solid var(--border);
}

.event-category {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.4;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.event-main h3 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 7rem);
    line-height: 0.9;
    letter-spacing: -2px;
}

.event-meta {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.event-meta span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    opacity: 0.4;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.event-meta strong {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.countdown-box {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.countdown-box>p {
    font-family: var(--font-body);
    letter-spacing: 2px;
    font-size: 0.68rem;
    opacity: 0.4;
    text-transform: uppercase;
}

.countdown {
    display: flex;
    gap: 14px;
    margin: 30px 0;
}

.countdown div {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 18px 14px;
    text-align: center;
}

.countdown strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 1px;
}

.countdown span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    opacity: 0.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s;
}

.event-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Archive */
.archive-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.archive-intro {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.archive-intro h3 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 6rem);
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 16px 0;
}

.archive-desc {
    max-width: 400px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.8;
    opacity: 0.6;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.archive-card {
    min-height: 380px;
    padding: 30px;
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--white);
    transition: 0.25s;
    background: rgba(255, 255, 255, 0.01);
}

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

.archive-card.featured {
    background: rgba(255, 255, 255, 0.03);
}

.archive-top {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.4;
}

.archive-card h4 {
    margin-top: auto;
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 0.9;
    letter-spacing: -1px;
}

.archive-card p {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.7;
    opacity: 0.6;
}

.archive-bottom {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.archive-bottom strong {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 1px;
}

.archive-bottom span {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 2px;
    opacity: 0.4;
    text-transform: uppercase;
}

/* =========================================
   COMMUNITY
   ========================================= */
.community {
    width: 100%;
    padding: 120px 50px;
    background: var(--black);
    color: var(--white);
}

.community-header {
    margin-bottom: 70px;
}

.community-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 8rem);
    line-height: 0.9;
    letter-spacing: -3px;
    margin-top: 10px;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.whatsapp-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(37, 211, 102, 0.04);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #25d366;
}

.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

.wa-inner {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.wa-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wa-icon {
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.wa-icon svg {
    width: 28px;
    height: 28px;
}

.whatsapp-card h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: 0.9;
    letter-spacing: -1px;
}

.wa-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    opacity: 0.65;
    line-height: 1.8;
    max-width: 460px;
}

.wa-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-features li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    opacity: 0.75;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check {
    color: #25d366;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #25d366;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: auto;
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25d366;
}

.socials-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.socials-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.4;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    color: var(--white);
    transition: all 0.25s;
    flex: 1;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(6px);
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 4px;
}

.youtube .social-icon {
    background: rgba(255, 0, 0, 0.15);
    color: #ff0000;
}

.instagram .social-icon {
    background: rgba(225, 48, 108, 0.12);
    color: #e1306c;
}

.social-info {
    flex: 1;
}

.social-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 1.1;
}

.social-info span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    opacity: 0.45;
    margin-top: 3px;
}

.social-arrow {
    font-size: 1.2rem;
    opacity: 0.3;
    transition: opacity 0.2s, transform 0.2s;
}

.social-link:hover .social-arrow {
    opacity: 0.8;
    transform: translateX(4px);
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.social-stat {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.social-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 1;
}

.social-stat span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    opacity: 0.4;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* =========================================
   REQUEST FORM
   ========================================= */
.request-section {
    width: 100%;
    padding: 120px 50px;
    background: var(--dark);
    color: var(--white);
    border-top: 1px solid var(--border);
}

.request-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.request-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 7rem);
    line-height: 0.88;
    letter-spacing: -2px;
    margin: 12px 0 24px;
}

.request-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 40px;
}

.request-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.request-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    opacity: 0.55;
    text-decoration: none;
    color: var(--white);
    transition: opacity 0.2s;
    letter-spacing: 0.5px;
}

.request-contact-item:hover {
    opacity: 1;
}

.form-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.45;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 14px 16px;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    appearance: none;
    border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    opacity: 0.3;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
    line-height: 1.6;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    opacity: 0.7;
    cursor: pointer;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s;
}

.checkbox-item:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
    opacity: 1;
}

.checkbox-item input[type="checkbox"] {
    width: 14px;
    height: 14px;
    padding: 0;
    accent-color: var(--red);
    cursor: pointer;
    flex-shrink: 0;
}

.courts-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.court-btn {
    flex: 1;
    min-width: 40px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
}

.court-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.court-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
}

.btn-submit:hover {
    background: transparent;
    color: var(--white);
}

.btn-submit span {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-submit:hover span {
    transform: translateX(4px);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(74, 222, 128, 0.4);
    background: rgba(74, 222, 128, 0.06);
    color: #4ade80;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
}

.form-success.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--black);
    border-top: 1px solid var(--border);
}

.footer-inner {
    padding: 50px 50px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    opacity: 0.35;
    margin-top: 14px;
    line-height: 1.6;
    max-width: 260px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--white);
    text-decoration: none;
    opacity: 0.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-socials {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    color: var(--white);
    opacity: 0.4;
    transition: opacity 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    padding: 20px 50px;
    border-top: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.7rem;
    opacity: 0.25;
    letter-spacing: 1px;
}

/* =========================================
   RESPONSIVE — TABLET  (max 1024px)
   ========================================= */
@media (max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .box-large,
    .box-tall,
    .box-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .box-mini {
        grid-column: span 2;
    }

    .box {
        min-height: 160px;
    }

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

    .archive-intro {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   RESPONSIVE — SMALL TABLET (max 900px)
   ========================================= */
@media (max-width:900px) {
    .event-grid {
        grid-template-columns: 1fr;
    }

    .event-main {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 40px 30px;
    }

    .countdown-box {
        padding: 30px;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .wa-inner {
        padding: 36px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-card {
        border-left: none;
        border-bottom: 1px solid var(--border);
        min-height: 220px;
    }

    .request-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================= */
@media (max-width:768px) {

    /* Navbar */
    .navbar {
        padding: 14px 20px;
    }

    .nav-request {
        display: none;
    }

    .nav-links {
        display: none;
    }

    /* hide desktop links */
    .nav-hamburger {
        display: flex;
    }

    /* show hamburger */

    /* Hero */
    .hero {
        height: 95vh;
    }

    .hero-content {
        padding: 0 20px 30px;
        gap: 18px;
    }

    .hero-title {
        font-size: clamp(3.4rem, 18vw, 6rem);
        letter-spacing: -1px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-sub {
        font-size: 0.82rem;
        max-width: 100%;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 0.75rem;
    }

    /* Stats strip — 2×2 on mobile */
    .hero-stats {
        display: none;
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 1 0 calc(50% - 1px);
        padding: 18px 20px;
    }

    .hero-stat strong {
        font-size: 2rem;
    }

    .hero-stat span {
        font-size: 0.65rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .request-title,
    .community-title,
    .community h3,
    .showcase-title,
    .events-showcase h3,
    .events-showcase h4,
    .services-title {
        letter-spacing: normal;
    }

    /* Services */
    .services {
        padding: 70px 20px;
    }

    .services-title {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
    }

    .box-large,
    .box-tall,
    .box-wide,
    .box-mini {
        grid-column: span 1;
        grid-row: span 1;
    }

    .box {
        min-height: 140px;
        padding: 22px;
    }

    .box h3 {
        font-size: 1.8rem;
    }

    /* Events */
    .events-showcase {
        padding: 70px 20px;
    }

    .section-top {
        margin-bottom: 40px;
    }

    .event-main {
        padding: 30px 20px;
    }

    .event-main h3 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .event-meta {
        gap: 24px;
        margin-top: 30px;
    }

    .countdown-box {
        padding: 24px 20px;
    }

    .countdown {
        gap: 8px;
    }

    .countdown strong {
        font-size: 2rem;
    }

    .event-btn {
        width: 100%;
        justify-content: center;
    }

    /* Archive — keep 1 col, hide 2nd & 3rd card on small screens */
    .archive-intro {
        padding: 30px 20px;
    }

    .archive-intro h3 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .archive-card:nth-child(3) {
        display: none;
    }

    /* show only first card on small phones */

    /* Community */
    .community {
        padding: 70px 20px;
    }

    .community-header {
        margin-bottom: 40px;
    }

    .wa-inner {
        padding: 26px 20px;
        gap: 18px;
    }

    .whatsapp-card h3 {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .wa-desc {
        font-size: 0.82rem;
    }

    .btn-whatsapp {
        padding: 12px 32px;
    }

    .social-link {
        padding: 18px 16px;
        gap: 14px;
    }

    .social-stat {
        padding: 14px 12px;
    }

    .social-stat strong {
        font-size: 1.4rem;
    }

    .social-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Request */
    .request-section {
        padding: 70px 20px;
    }

    .courts-selector {
        gap: 6px;
    }

    .court-btn {
        font-size: 1.1rem;
        padding: 10px 8px;
        min-width: 36px;
    }

    .btn-submit {
        padding: 12px 40px;
    }

    /* Footer */
    .footer-inner {
        padding: 36px 20px 20px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom {
        padding: 16px 20px;
    }
}

/* =========================================
   RESPONSIVE — SMALL PHONES (max 400px)
   ========================================= */
@media (max-width:400px) {
    .hero-title {
        font-size: clamp(3rem, 20vw, 4.5rem);
    }

    .hero-stat {
        flex: 1 0 100%;
    }

    .social-stats {
        grid-template-columns: 1fr 1fr;
    }

    .social-stats .social-stat:last-child {
        display: none;
    }
}