/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding: clamp(130px, 16vh, 180px) 0 90px;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    background: #020710;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.15);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.18), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 91, 46, 0.2), transparent 45%),
        linear-gradient(90deg, rgba(5, 12, 27, 0.95) 0%, rgba(5, 12, 27, 0.78) 48%, rgba(5, 12, 27, 0.45) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 160%;
    height: 140px;
    left: -25%;
    bottom: -70px;
    background: var(--bg-light);
    transform: rotate(-4deg);
    z-index: -1;
}

.hero-content {
    position: relative;
    max-width: 820px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-tag span {
    color: var(--accent-color);
}

.hero h1 {
    color: #fff;
    font-size: clamp(44px, 8vw, 78px);
    margin-bottom: 18px;
    line-height: 1.05;
}

.hero h1 span {
    color: var(--primary-color);
    text-shadow: 0 0 18px rgba(255, 91, 46, 0.45);
}

.hero p {
    color: #d8e2f3;
    font-size: clamp(17px, 2.2vw, 21px);
    max-width: 680px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

.hero-buttons .btn i {
    transition: transform 0.25s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(4px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 14px;
    max-width: 760px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 16px 18px;
    backdrop-filter: blur(7px);
}

.stat-number {
    display: block;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    color: #d2dcf0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ===== FEE CARDS ===== */
.fee-cards-section {
    position: relative;
    background:
        linear-gradient(180deg, #eef3fb 0%, #f7f9fe 100%);
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.fee-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 34px 24px;
    text-align: center;
    border: 1px solid #e7ebf4;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.fee-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.fee-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.fee-card:hover::before {
    transform: scaleX(1);
}

.fee-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff0ec, #e8f8ff);
    color: var(--primary-color);
    display: grid;
    place-items: center;
    font-size: 30px;
    border: 1px solid #f0d8d0;
    transition: var(--transition);
}

.fee-card:hover .fee-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.fee-card h3 {
    margin-bottom: 4px;
    font-size: 26px;
}

.fee-amount {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 38px;
    font-weight: 700;
    margin: 10px 0 6px;
}

.fee-card p {
    color: #667694;
    min-height: 56px;
    margin-bottom: 18px;
}

/* ===== ROADMAP ===== */
.roadmap-section {
    background: #ffffff;
}

.roadmap-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: 20px;
    flex-wrap: nowrap;
}

.roadmap-step {
    text-align: center;
    width: 200px;
    padding: 18px 10px;
    position: relative;
}

.roadmap-step:not(.line) {
    background: #f7f9fe;
    border: 1px solid #e7edf8;
    border-radius: 14px;
    transition: var(--transition);
}

.roadmap-step:not(.line):hover {
    transform: translateY(-6px);
    border-color: rgba(255, 91, 46, 0.35);
    box-shadow: var(--shadow-sm);
}

.roadmap-step.line {
    width: 42px;
    height: 3px;
    flex: 0 0 42px;
    padding: 0;
    margin: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.7;
}

.step-number {
    position: absolute;
    top: -14px;
    right: 10px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 999px;
    padding: 3px 9px;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 28px;
    color: var(--primary-color);
    border: 2px solid rgba(255, 91, 46, 0.25);
    background: #fff;
    box-shadow: 0 8px 20px rgba(7, 19, 43, 0.08);
    transition: var(--transition);
}

.roadmap-step:hover .step-icon {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: transparent;
}

.roadmap-step h3 {
    font-size: 23px;
    margin-bottom: 6px;
}

.roadmap-step p {
    font-size: 14px;
    margin: 0;
}

/* ===== WHY JOIN / SERVICES ===== */
.services-section {
    background:
        linear-gradient(180deg, #f6f8fd 0%, #edf3ff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7edf8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 91, 46, 0.25);
}

.service-image {
    position: relative;
    height: 230px;
    overflow: visible;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.38), transparent);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    right: 20px;
    bottom: -30px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(255, 91, 46, 0.35);
    z-index: 2;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.05);
}

.service-content {
    padding: 34px 24px 24px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.service-content p {
    margin: 0;
    color: #63738f;
}

/* ===== GALLERY ===== */
.stadium-gallery {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 20px;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 19, 43, 0.25), rgba(7, 19, 43, 0.02));
    opacity: 0.75;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease, filter 0.4s ease;
    filter: saturate(0.95) contrast(1.05);
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: saturate(1.15) contrast(1.1);
}

.gallery-item:hover::after {
    opacity: 0.25;
}

/* ===== CTA ===== */
.cta-section {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 100px 0;
    background:
        url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 91, 46, 0.88), rgba(9, 28, 63, 0.75));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.cta-section h2 {
    color: #fff;
    font-size: clamp(34px, 5vw, 54px);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(17px, 2.4vw, 21px);
    margin: 0 auto 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .roadmap-step {
        width: 180px;
    }

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

@media (max-width: 992px) {
    .fee-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roadmap-grid {
        flex-direction: column;
        gap: 10px;
    }

    .roadmap-step {
        width: min(420px, 100%);
    }

    .roadmap-step.line {
        width: 3px;
        height: 28px;
        flex: 0 0 auto;
        background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        text-align: center;
        padding: 120px 0 72px;
    }

    .hero-bg img {
        object-position: 68% center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 28px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .section-padding {
        padding: 78px 0;
    }

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

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

    .cta-section {
        background-attachment: scroll;
        padding: 85px 0;
    }
}