@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Cairo", sans-serif;
    background: #080808;
    color: white;
}


/* COLORS */

:root {
    --gold: #c99a2e;
    --light-gold: #e8bd58;
    --dark-gold: #806018;

    --black: #080808;
    --dark: #111111;

    --white: #ffffff;
}


/* NAVBAR */

.navbar {
    width: 100%;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    height: 90px;

    padding: 0 7%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    transition: 0.4s;

    background: rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(5px);
}


/* LOGO */

.brand {
    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: white;
}


.brand img {
    width: 60px;
    height: 60px;

    object-fit: contain;
}


.brand h2 {
    font-size: 18px;

    color: var(--light-gold);
}


.brand span {
    font-size: 11px;

    color: #aaa;
}


/* NAV */

.nav-links {
    display: flex;

    gap: 30px;
}


.nav-links a {
    color: white;

    text-decoration: none;

    font-size: 14px;

    position: relative;

    transition: 0.3s;
}


.nav-links a::after {
    content: "";

    position: absolute;

    right: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: 0.3s;
}


.nav-links a:hover {
    color: var(--light-gold);
}


.nav-links a:hover::after {
    width: 100%;
}


/* MENU */

.menu-btn {
    display: none;

    border: none;

    background: none;

    color: white;

    font-size: 30px;

    cursor: pointer;
}


/* HERO */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(201, 154, 46, 0.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #151515,
            #030303
        );
}


/* decorative gold glow */

.hero::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(201, 154, 46, 0.12);

    filter: blur(100px);

    top: 20%;
    left: 50%;

    transform: translateX(-50%);

}


/* DARK OVERLAY */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.8)
        );

}


/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    padding: 120px 25px 60px;

    animation: heroFade 1.2s ease;
}


.hero-logo {

    width: 140px;

    margin-bottom: 20px;

    filter: drop-shadow(
        0 10px 35px rgba(201, 154, 46, 0.25)
    );
}


.hero-small {

    color: var(--gold);

    letter-spacing: 5px;

    font-size: 13px;

    margin-bottom: 10px;
}


.hero h1 {

    font-size: clamp(35px, 5vw, 70px);

    font-weight: 800;

    line-height: 1.3;
}


.hero h2 {

    font-size: clamp(20px, 3vw, 38px);

    font-weight: 500;

    color: var(--light-gold);

    margin-top: 5px;
}


.hero-description {

    margin-top: 20px;

    color: #c7c7c7;

    font-size: 17px;
}


/* BUTTONS */

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}


.btn {

    padding: 13px 28px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s;

    font-size: 14px;
}


.btn-gold {

    background: var(--gold);

    color: #080808;

    border: 1px solid var(--gold);
}


.btn-gold:hover {

    transform: translateY(-4px);

    background: var(--light-gold);

    box-shadow:
        0 10px 30px rgba(201, 154, 46, 0.3);
}


.btn-outline {

    border: 1px solid #777;

    color: white;

    background: rgba(255, 255, 255, 0.04);
}


.btn-outline:hover {

    border-color: var(--gold);

    color: var(--gold);

    transform: translateY(-4px);
}


/* SCROLL ICON */

.scroll-down {

    position: absolute;

    z-index: 3;

    bottom: 25px;

    color: var(--gold);

    font-size: 32px;

    text-decoration: none;

    animation: bounce 1.5s infinite;
}


/* NEXT SECTION */

.placeholder {

    min-height: 500px;

    padding: 120px 20px;

    text-align: center;

    background: #0d0d0d;
}


.placeholder p {

    letter-spacing: 4px;

    font-size: 12px;

    color: var(--gold);
}


.placeholder h2 {

    font-size: 40px;

    margin-top: 10px;
}


/* ANIMATIONS */

@keyframes heroFade {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


@keyframes bounce {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(10px);

    }

}


/* PHONE */

@media (max-width: 850px) {

    .navbar {

        height: 75px;

        padding: 0 20px;

    }


    .brand img {

        width: 50px;
        height: 50px;

    }


    .brand h2 {

        font-size: 14px;

    }


    .brand span {

        font-size: 9px;

    }


    .nav-links {

        position: fixed;

        top: 75px;
        right: -100%;

        width: 100%;
        height: calc(100vh - 75px);

        background:
            rgba(8, 8, 8, 0.97);

        backdrop-filter: blur(20px);

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 35px;

        transition: 0.4s;

    }


    .nav-links.active {

        right: 0;

    }


    .nav-links a {

        font-size: 20px;

    }


    .menu-btn {

        display: block;

    }


    .hero-logo {

        width: 115px;

    }


    .hero-buttons {

        flex-direction: column;

        max-width: 280px;

        margin-left: auto;
        margin-right: auto;

    }


    .btn {

        width: 100%;

    }


    .hero-description {

        font-size: 15px;

    }

}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    position: relative;

    padding: 130px 7% 100px;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(201, 154, 46, 0.08),
            transparent 30%
        ),
        #0d0d0d;

    overflow: hidden;
}


.about-container {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


/* ABOUT IMAGE */

.about-image {
    position: relative;
}


.image-frame {
    position: relative;

    border-radius: 15px;

    overflow: hidden;

    height: 520px;

    border:
        1px solid
        rgba(201, 154, 46, 0.25);
}


.image-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7),
            transparent 55%
        );
}


.image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s;
}


.image-frame:hover img {
    transform: scale(1.06);
}


/* EXPERIENCE BADGE */

.experience-badge {
    position: absolute;

    bottom: -30px;
    left: -30px;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--light-gold),
            var(--dark-gold)
        );

    color: #080808;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.5);

    border:
        5px solid
        #0d0d0d;
}


.experience-number {
    font-size: 36px;

    font-weight: 800;

    line-height: 1;
}


.experience-badge span:last-child {
    font-size: 13px;

    font-weight: 700;

    margin-top: 8px;
}


/* ABOUT CONTENT */

.section-small-title {
    color: var(--gold);

    font-size: 13px;

    letter-spacing: 5px;

    font-weight: 700;

    margin-bottom: 12px;
}


.about-content h2 {
    font-size:
        clamp(32px, 4vw, 52px);

    line-height: 1.35;

    margin-bottom: 25px;
}


.about-content h2 span {
    color: var(--gold);

    display: block;
}


.about-text {
    color: #bcbcbc;

    line-height: 2;

    font-size: 15px;

    margin-bottom: 15px;
}


/* FEATURES */

.about-features {
    margin-top: 35px;

    display: grid;

    gap: 15px;
}


.feature {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.02);

    transition: 0.3s;
}


.feature:hover {
    transform: translateX(-8px);

    border-color:
        rgba(201, 154, 46, 0.4);

    background:
        rgba(201, 154, 46, 0.06);
}


.feature-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        rgba(201, 154, 46, 0.12);

    font-size: 24px;
}


.feature h3 {
    font-size: 17px;

    margin-bottom: 3px;

    color: white;
}


.feature p {
    color: #8f8f8f;

    font-size: 13px;
}


/* =========================
   STATS
========================= */

.stats-container {
    max-width: 1100px;

    margin:
        120px auto 0;

    padding: 35px 25px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background:
        linear-gradient(
            135deg,
            rgba(201, 154, 46, 0.08),
            rgba(255, 255, 255, 0.02)
        );

    border:
        1px solid
        rgba(201, 154, 46, 0.15);

    border-radius: 15px;

    backdrop-filter: blur(10px);
}


.stat-box {
    position: relative;

    text-align: center;

    padding: 10px;
}


.stat-box:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 15%;

    left: 0;

    width: 1px;

    height: 70%;

    background:
        rgba(255, 255, 255, 0.1);
}


.stat-box h3 {
    color: var(--light-gold);

    font-size: 42px;

    font-weight: 800;

    line-height: 1;
}


.stat-box p {
    margin-top: 10px;

    color: #bcbcbc;

    font-size: 14px;
}


/* =========================
   REVEAL ANIMATION
========================= */

.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}


.reveal-left {
    transform:
        translateX(-70px);
}


.reveal-right {
    transform:
        translateX(70px);
}


.reveal-up {
    transform:
        translateY(60px);
}


.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
    opacity: 1;

    transform:
        translate(0);
}


/* =========================
   ABOUT MOBILE
========================= */

@media (max-width: 900px) {

    .about-section {
        padding:
            100px 20px
            70px;
    }


    .about-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .image-frame {
        height: 420px;
    }


    .experience-badge {
        width: 115px;
        height: 115px;

        left: 10px;
        bottom: -35px;
    }


    .experience-number {
        font-size: 29px;
    }


    .about-content h2 {
        font-size: 34px;
    }


    .stats-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;

        margin-top: 80px;
    }


    .stat-box::after {
        display: none;
    }

}


@media (max-width: 500px) {

    .image-frame {
        height: 350px;
    }


    .about-content h2 {
        font-size: 29px;
    }


    .stats-container {
        padding: 25px 10px;
    }


    .stat-box h3 {
        font-size: 32px;
    }


    .stat-box p {
        font-size: 12px;
    }

}

/* =========================
   PROGRAMS SECTION
========================= */

.programs-section {
    padding: 120px 7%;

    background:
        linear-gradient(
            to bottom,
            #0d0d0d,
            #080808
        );

    position: relative;
}


/* HEADING */

.section-heading {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}


.section-heading h2 {
    font-size:
        clamp(34px, 4vw, 50px);

    margin-bottom: 12px;
}


.section-heading > p:last-child {
    color: #9e9e9e;

    font-size: 15px;
}


/* GRID */

.programs-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


/* CARD */

.program-card {
    position: relative;

    overflow: hidden;

    border-radius: 16px;

    background: #111;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


.program-card::before {
    content: "";

    position: absolute;

    inset: 0;

    padding: 1px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            transparent,
            rgba(201, 154, 46, 0.7),
            transparent
        );

    opacity: 0;

    pointer-events: none;

    transition: 0.4s;
}


.program-card:hover {
    transform: translateY(-12px);

    border-color:
        rgba(201, 154, 46, 0.5);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.45);
}


.program-card:hover::before {
    opacity: 1;
}


/* IMAGE */

.program-image {
    position: relative;

    height: 280px;

    overflow: hidden;
}


.program-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.program-card:hover .program-image img {
    transform: scale(1.1);
}


.program-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(8, 8, 8, 1),
            rgba(8, 8, 8, 0.1)
        );
}


/* CONTENT */

.program-content {
    position: relative;

    padding: 25px;

    margin-top: -55px;

    z-index: 2;
}


.program-number {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;
}


.program-content h3 {
    font-size: 28px;

    margin:
        5px 0 12px;

    color: white;
}


.program-content p {
    color: #a7a7a7;

    line-height: 1.8;

    font-size: 13px;

    min-height: 72px;
}


.program-content a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    color: var(--light-gold);

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s;
}


.program-content a span {
    transition: 0.3s;
}


.program-content a:hover {
    color: white;
}


.program-content a:hover span {
    transform: translateX(-6px);
}


/* MOBILE */

@media (max-width: 1100px) {

    .programs-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 650px) {

    .programs-section {
        padding:
            90px 20px;
    }


    .programs-grid {
        grid-template-columns: 1fr;
    }


    .program-image {
        height: 330px;
    }


    .program-content p {
        min-height: auto;
    }

}

/* =========================
   COACHES SECTION
========================= */

.coaches-section {
    padding: 120px 7%;

    background:
        radial-gradient(
            circle at 90% 30%,
            rgba(201, 154, 46, 0.08),
            transparent 30%
        ),
        #0d0d0d;
}


.coaches-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


/* COACH CARD */

.coach-card {
    background: #111;

    border-radius: 16px;

    overflow: hidden;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    transition: 0.4s;
}


.coach-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(201, 154, 46, 0.5);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.45);
}


/* IMAGE */

.coach-image {
    height: 360px;

    position: relative;

    overflow: hidden;
}


.coach-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s;
}


.coach-card:hover .coach-image img {
    transform: scale(1.08);
}


/* OVERLAY */

.coach-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85),
            transparent 60%
        );

    opacity: 0;

    transition: 0.4s;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    padding-bottom: 25px;
}


.coach-card:hover .coach-overlay {
    opacity: 1;
}


/* SOCIAL */

.coach-socials {
    display: flex;

    gap: 10px;

    transform: translateY(20px);

    transition: 0.4s;
}


.coach-card:hover .coach-socials {
    transform: translateY(0);
}


.coach-socials a {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(201, 154, 46, 0.95);

    color: #080808;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: 0.3s;
}


.coach-socials a:hover {
    background: white;

    transform: translateY(-4px);
}


/* TEXT */

.coach-content {
    padding: 22px;
}


.coach-content span {
    color: var(--gold);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 700;
}


.coach-content h3 {
    font-size: 21px;

    margin:
        6px 0 3px;

    color: white;
}


.coach-content p {
    color: #999;

    font-size: 13px;
}


/* TABLET */

@media (max-width: 1100px) {

    .coaches-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .coaches-section {
        padding:
            90px 20px;
    }


    .coaches-grid {
        grid-template-columns: 1fr;
    }


    .coach-image {
        height: 420px;
    }


    .coach-overlay {
        opacity: 1;
    }


    .coach-socials {
        transform: translateY(0);
    }

}


/* =========================
   GALLERY
========================= */

.gallery-section {
    padding: 120px 7%;
    background: #080808;
}


.gallery-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows: 260px;

    gap: 15px;
}


/* ITEM */

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 14px;

    cursor: pointer;

    border:
        1px solid
        rgba(255, 255, 255, 0.06);

    background: #111;
}


.gallery-large {
    grid-row: span 2;
}


.gallery-wide {
    grid-column: span 2;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


.gallery-item:hover img {
    transform: scale(1.09);

    filter: brightness(0.7);
}


/* OVERLAY */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.1),
            rgba(201, 154, 46, 0.25)
        );

    opacity: 0;

    transition: 0.4s;
}


.gallery-overlay span {
    padding: 10px 20px;

    border:
        1px solid
        rgba(255, 255, 255, 0.65);

    border-radius: 30px;

    color: white;

    font-size: 12px;

    transform: translateY(15px);

    transition: 0.4s;

    backdrop-filter: blur(8px);

    background:
        rgba(0, 0, 0, 0.25);
}


.gallery-item:hover
.gallery-overlay {
    opacity: 1;
}


.gallery-item:hover
.gallery-overlay span {
    transform: translateY(0);
}


/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 5000;

    background:
        rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(10px);

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.lightbox.active {
    opacity: 1;

    visibility: visible;
}


.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;
}


.lightbox-content img {
    max-width: 85vw;
    max-height: 78vh;

    object-fit: contain;

    border-radius: 12px;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.7);

    transform: scale(0.92);

    transition: 0.35s;
}


.lightbox.active
.lightbox-content img {
    transform: scale(1);
}


/* COUNTER */

.lightbox-counter {
    margin-top: 15px;

    color: #aaa;

    font-size: 13px;
}


/* CLOSE */

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 35px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.1);

    color: white;

    font-size: 30px;

    cursor: pointer;

    transition: 0.3s;
}


.lightbox-close:hover {
    background: var(--gold);

    color: #080808;

    transform: rotate(90deg);
}


/* ARROWS */

.lightbox-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    color: white;

    font-size: 22px;

    cursor: pointer;

    transition: 0.3s;
}


.lightbox-prev {
    left: 30px;
}


.lightbox-next {
    right: 30px;
}


.lightbox-arrow:hover {
    background: var(--gold);

    color: #080808;
}


/* TABLET */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 230px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .gallery-section {
        padding:
            90px 20px;
    }


    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 280px;
    }


    .gallery-large,
    .gallery-wide {
        grid-row: auto;
        grid-column: auto;
    }


    .gallery-overlay {
        opacity: 1;

        background:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.6),
                transparent 55%
            );

        align-items: flex-end;

        justify-content: flex-start;

        padding: 20px;
    }


    .gallery-overlay span {
        transform: translateY(0);
    }


    .lightbox-arrow {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }


    .lightbox-prev {
        left: 10px;
    }


    .lightbox-next {
        right: 10px;
    }


    .lightbox-close {
        top: 15px;
        right: 15px;
    }

}


/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 120px 7%;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(201, 154, 46, 0.1),
            transparent 30%
        ),
        #0d0d0d;
}


.contact-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 80px;
}


.contact-info h2 {
    font-size:
        clamp(35px, 5vw, 58px);

    line-height: 1.35;

    margin-bottom: 20px;
}


.contact-info h2 span {
    display: block;

    color: var(--gold);
}


.contact-description {
    color: #aaa;

    line-height: 2;

    max-width: 600px;

    margin-bottom: 35px;
}


/* CONTACT LIST */

.contact-list {
    display: grid;

    gap: 15px;
}


.contact-item {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 18px;

    border-radius: 12px;

    text-decoration: none;

    color: white;

    background:
        rgba(255, 255, 255, 0.025);

    border:
        1px solid
        rgba(255, 255, 255, 0.07);

    transition: 0.3s;
}


.contact-item:hover {
    transform: translateX(-8px);

    border-color:
        rgba(201, 154, 46, 0.5);

    background:
        rgba(201, 154, 46, 0.06);
}


.contact-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    border-radius: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(201, 154, 46, 0.13);

    color: var(--light-gold);

    font-weight: 800;
}


.contact-item span {
    display: block;

    color: #888;

    font-size: 12px;

    margin-bottom: 2px;
}


.contact-item strong {
    font-size: 14px;
}


/* CONTACT CARD */

.contact-card {
    position: relative;

    padding:
        60px 40px;

    text-align: center;

    border-radius: 22px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(201, 154, 46, 0.12),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid
        rgba(201, 154, 46, 0.25);

    box-shadow:
        0 30px 70px
        rgba(0, 0, 0, 0.35);
}


.contact-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        rgba(201, 154, 46, 0.13);

    filter: blur(70px);

    top: -100px;
    left: 50%;

    transform:
        translateX(-50%);
}


.contact-card-logo {
    position: relative;

    width: 130px;
    height: 130px;

    margin:
        0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.35);

    border:
        1px solid
        rgba(201, 154, 46, 0.3);
}


.contact-card-logo img {
    width: 95px;
}


.contact-card > p {
    position: relative;

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 3px;
}


.contact-card h3 {
    position: relative;

    font-size: 30px;

    margin:
        10px 0;
}


.contact-card > span {
    position: relative;

    color: #999;

    font-size: 13px;

    line-height: 1.8;
}


/* JOIN BUTTON */

.join-button {
    position: relative;

    margin-top: 30px;

    width: 100%;

    padding: 15px 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            var(--light-gold),
            var(--gold)
        );

    color: #080808;

    text-decoration: none;

    font-weight: 800;

    transition: 0.3s;
}


.join-button:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px
        rgba(201, 154, 46, 0.25);
}


.join-button b {
    transition: 0.3s;
}


.join-button:hover b {
    transform: translateX(-7px);
}


/* =========================
   FINAL CTA
========================= */

.final-cta {
    min-height: 540px;

    padding: 100px 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(201, 154, 46, 0.16),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #141414,
            #050505
        );
}


.final-cta::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.65)
        );
}


.final-cta-content {
    position: relative;

    z-index: 2;
}


.final-cta img {
    width: 110px;

    margin-bottom: 20px;
}


.final-cta p {
    color: var(--gold);

    letter-spacing: 4px;

    font-size: 11px;
}


.final-cta h2 {
    font-size:
        clamp(36px, 6vw, 70px);

    line-height: 1.3;

    margin:
        10px 0 30px;
}


.final-cta h2 span {
    display: block;

    color: var(--light-gold);
}


.final-cta a {
    display: inline-block;

    padding:
        14px 30px;

    border-radius: 7px;

    background: var(--gold);

    color: #080808;

    text-decoration: none;

    font-weight: 800;

    transition: 0.3s;
}


.final-cta a:hover {
    transform:
        translateY(-5px);

    background:
        var(--light-gold);

    box-shadow:
        0 15px 35px
        rgba(201, 154, 46, 0.3);
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #050505;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.06);
}


.footer-container {
    max-width: 1250px;

    margin: auto;

    padding:
        60px 7%;

    display: grid;

    grid-template-columns:
        1.3fr 1fr 0.7fr;

    gap: 50px;

    align-items: center;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 15px;
}


.footer-brand img {
    width: 75px;
}


.footer-brand h3 {
    font-size: 18px;

    color:
        var(--light-gold);
}


.footer-brand p {
    color: #777;

    font-size: 11px;
}


.footer-links {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}


.footer-links a,
.footer-social a {
    color: #aaa;

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s;
}


.footer-links a:hover,
.footer-social a:hover {
    color:
        var(--light-gold);
}


.footer-social {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


.footer-bottom {
    padding:
        20px;

    text-align: center;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);

    color: #666;

    font-size: 11px;
}


/* =========================
   FLOATING WHATSAPP
========================= */

.whatsapp-floating {
    position: fixed;

    left: 25px;
    bottom: 25px;

    z-index: 3000;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        var(--gold);

    color: #080808;

    text-decoration: none;

    font-size: 12px;

    font-weight: 900;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.4);

    transition: 0.3s;

    animation:
        whatsappPulse 2s infinite;
}


.whatsapp-floating:hover {
    transform:
        translateY(-6px)
        scale(1.05);

    background:
        var(--light-gold);
}


@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0
            rgba(201, 154, 46, 0.35);
    }

    70% {
        box-shadow:
            0 0 0 18px
            rgba(201, 154, 46, 0);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(201, 154, 46, 0);
    }

}


/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 3000;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border:
        1px solid
        rgba(201, 154, 46, 0.4);

    background:
        rgba(10, 10, 10, 0.9);

    color:
        var(--light-gold);

    font-size: 21px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px);

    transition: 0.3s;
}


.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.back-to-top:hover {
    background:
        var(--gold);

    color: #080808;
}


/* MOBILE */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .footer-container {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .footer-brand {
        justify-content: center;
    }


    .footer-links {
        max-width: 350px;

        margin: auto;

        width: 100%;
    }


    .footer-social {
        align-items: center;
    }

}


@media (max-width: 600px) {

    .contact-section {
        padding:
            90px 20px;
    }


    .contact-card {
        padding:
            45px 20px;
    }


    .whatsapp-floating {
        width: 52px;
        height: 52px;

        left: 15px;
        bottom: 15px;
    }


    .back-to-top {
        right: 15px;
        bottom: 15px;
    }


    .footer-container {
        padding:
            50px 20px;
    }

}

/* =========================
   LOADING SCREEN
========================= */

.loader {
    position: fixed;

    inset: 0;

    z-index: 10000;

    background: #050505;

    display: flex;

    align-items: center;
    justify-content: center;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}


.loader.hide {
    opacity: 0;
    visibility: hidden;
}


.loader-content {
    text-align: center;
}


.loader-content img {
    width: 130px;

    animation:
        loaderLogo 1.4s ease-in-out infinite alternate;
}


.loader-content h2 {
    margin-top: 15px;

    color: var(--light-gold);

    font-size: 17px;

    letter-spacing: 2px;
}


.loader-line {
    width: 180px;
    height: 3px;

    margin:
        25px auto 0;

    background:
        rgba(255,255,255,0.08);

    overflow: hidden;

    border-radius: 20px;
}


.loader-line span {
    display: block;

    width: 45%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    animation:
        loaderLine 1.1s linear infinite;
}


@keyframes loaderLogo {

    from {
        transform:
            scale(0.95);

        opacity: 0.7;
    }

    to {
        transform:
            scale(1.05);

        opacity: 1;
    }

}


@keyframes loaderLine {

    from {
        transform:
            translateX(-180%);
    }

    to {
        transform:
            translateX(330%);
    }

}


/* =========================
   BETTER NAVBAR
========================= */

.navbar {
    border-bottom:
        1px solid
        rgba(255,255,255,0.03);
}


.navbar.scrolled {
    background:
        rgba(8,8,8,0.92) !important;

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 10px 35px
        rgba(0,0,0,0.3);
}


/* ACTIVE LINK */

.nav-links a.active {
    color:
        var(--light-gold);
}


.nav-links a.active::after {
    width: 100%;
}


/* =========================
   PAGE SELECTION
========================= */

::selection {
    background:
        var(--gold);

    color: #080808;
}


/* =========================
   SMOOTHER IMAGES
========================= */

img {
    display: block;
}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 9px;
}


::-webkit-scrollbar-track {
    background: #080808;
}


::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            var(--dark-gold),
            var(--gold)
        );

    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background:
        var(--light-gold);
}


/* =========================
   MOBILE FINAL IMPROVEMENTS
========================= */

@media (max-width: 600px) {

    .hero-content {
        padding:
            110px 18px 70px;
    }


    .hero h1 {
        font-size: 36px;
    }


    .hero h2 {
        font-size: 20px;
    }


    .hero-small {
        letter-spacing: 3px;
    }


    .about-section,
    .programs-section,
    .coaches-section,
    .gallery-section,
    .contact-section {
        padding-left: 18px;
        padding-right: 18px;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .section-heading h2 {
        font-size: 32px;
    }


    .contact-info h2 {
        font-size: 37px;
    }


    .final-cta {
        min-height: 460px;
    }


    .final-cta h2 {
        font-size: 39px;
    }


    .footer-links {
        grid-template-columns: 1fr;
    }

}

/* =========================
   CENTER LOGOS FIX
========================= */

/* شعار الواجهة الرئيسية */

.hero-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}


/* شعار شاشة التحميل */

.loader-content {
    text-align: center;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}


.loader-content img {
    display: block;

    margin-left: auto;
    margin-right: auto;

    width: 130px;
}

/* =========================================
   MOBILE VERSION - FINAL
   NAVBAR + HERO
========================================= */

@media (max-width: 768px) {

    /* منع أي عنصر من توسيع الصفحة */

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }


    /* =====================
       NAVBAR
    ===================== */

    .navbar {
        width: 100%;

        height: 72px !important;

        padding: 0 16px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        background: rgba(5, 5, 5, 0.88);

        backdrop-filter: blur(15px);

        -webkit-backdrop-filter: blur(15px);

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.05);
    }


    /* شعار الناف بار */

    .brand {
        gap: 8px;

        position: relative;

        z-index: 1002;
    }


    .brand img {
        width: 46px;
        height: 46px;

        object-fit: contain;
    }


    .brand h2 {
        font-size: 13px;

        line-height: 1.3;

        white-space: nowrap;
    }


    .brand span {
        font-size: 8px;

        display: block;

        margin-top: 2px;
    }


    /* =====================
       MENU BUTTON
    ===================== */

    .menu-btn {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        position: relative;

        z-index: 1002;

        border:
            1px solid
            rgba(201, 154, 46, 0.25);

        border-radius: 10px;

        background:
            rgba(201, 154, 46, 0.06);

        color: var(--light-gold);

        font-size: 25px;

        line-height: 1;

        cursor: pointer;
    }


    /* =====================
       MOBILE MENU
    ===================== */

    .nav-links {
        position: fixed;

        top: 0;
        right: -100%;

        width: 100%;
        height: 100vh;
        height: 100dvh;

        padding:
            100px 25px
            40px;

        display: flex;

        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 7px;

        background:
            rgba(5, 5, 5, 0.98);

        backdrop-filter: blur(25px);

        -webkit-backdrop-filter:
            blur(25px);

        transition:
            right 0.45s
            cubic-bezier(
                0.77,
                0,
                0.18,
                1
            );

        z-index: 1001;
    }


    .nav-links.active {
        right: 0;
    }


    .nav-links a {
        width: 100%;

        max-width: 330px;

        padding: 14px 10px;

        text-align: center;

        font-size: 18px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.06);
    }


    .nav-links a:last-child {
        border-bottom: none;
    }


    .nav-links a.active {
        color: var(--light-gold);
    }


    /* =====================
       HERO
    ===================== */

    .hero {
        width: 100%;

        min-height: 100vh;
        min-height: 100svh;

        padding:
            95px 18px
            45px;

        display: flex;

        align-items: center;
        justify-content: center;
    }


    .hero-content {
        width: 100%;

        max-width: 500px;

        padding: 0;

        margin: auto;

        text-align: center;
    }


    /* شعار منتصف الصفحة */

    .hero-logo {
        display: block;

        width: 105px;
        height: auto;

        margin:
            0 auto 18px;

        object-fit: contain;
    }


    .hero-small {
        margin-bottom: 10px;

        font-size: 10px;

        letter-spacing: 4px;
    }


    .hero h1 {
        max-width: 100%;

        margin:
            0 auto;

        font-size:
            clamp(
                31px,
                9vw,
                42px
            );

        line-height: 1.35;

        text-align: center;
    }


    .hero h2 {
        margin-top: 8px;

        font-size:
            clamp(
                19px,
                5.5vw,
                25px
            );

        line-height: 1.4;
    }


    .hero-description {
        max-width: 330px;

        margin:
            18px auto 0;

        font-size: 13px;

        line-height: 1.9;

        color: #bcbcbc;
    }


    /* =====================
       HERO BUTTONS
    ===================== */

    .hero-buttons {
        width: 100%;

        max-width: 320px;

        margin:
            28px auto 0;

        display: grid;

        grid-template-columns: 1fr;

        gap: 11px;
    }


    .hero-buttons .btn {
        width: 100%;

        min-height: 50px;

        padding:
            13px 20px;

        display: flex;

        align-items: center;
        justify-content: center;

        border-radius: 8px;

        font-size: 13px;
    }


    /* السهم */

    .scroll-down {
        bottom: 14px;

        font-size: 25px;
    }


    /* تقليل الوهج على الهاتف */

    .hero::before {
        width: 300px;
        height: 300px;

        filter: blur(80px);
    }

}


/* تلفونات صغيرة جدًا */

@media (max-width: 380px) {

    .brand h2 {
        font-size: 11px;
    }


    .brand span {
        font-size: 7px;
    }


    .brand img {
        width: 42px;
        height: 42px;
    }


    .hero h1 {
        font-size: 29px;
    }


    .hero h2 {
        font-size: 18px;
    }


    .hero-logo {
        width: 90px;
    }

}



/* =========================
   MOBILE MENU
========================= */

@media (max-width: 768px) {

    .menu-btn {
        display: flex;
        width: 46px;
        height: 46px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;

        background: rgba(255, 193, 7, 0.08);
        border: 1px solid #ffc107;
        border-radius: 12px;

        cursor: pointer;
        z-index: 1001;
    }

    .menu-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: #ffc107;
        border-radius: 5px;
        transition: 0.3s ease;
    }

    /* X animation */

    .menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Side menu */

    .nav-links {
        position: fixed;

        top: 0;
        left: -100%;

        width: min(82%, 340px);
        height: 100vh;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;

        gap: 10px;

        padding: 90px 25px 40px;

        background: rgba(10, 10, 10, 0.98);

        border-right: 1px solid rgba(255, 193, 7, 0.25);

        transition: left 0.4s ease;

        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        width: 100%;

        padding: 16px 18px;

        color: white;
        text-decoration: none;

        font-size: 18px;
        font-weight: 600;

        border-radius: 10px;

        transition: 0.25s ease;
    }

    .nav-links a:hover {
        color: #ffc107;
        background: rgba(255, 193, 7, 0.08);
        padding-right: 25px;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* =========================
   RESPONSIVE - TABLET
========================= */

@media (max-width: 992px) {

    .navbar {
        padding: 15px 25px;
    }

    .hero {
        min-height: 90vh;
        padding: 120px 25px 60px;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 1.3;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .programs-container,
    .coaches-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   RESPONSIVE - MOBILE
========================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .navbar {
        padding: 12px 18px;
    }

    .brand img {
        width: 45px;
        height: 45px;
    }

    .brand h2 {
        font-size: 16px;
    }

    .brand span {
        font-size: 9px;
    }

    .nav-links {
        gap: 12px;
        font-size: 13px;
    }

    .hero {
        min-height: 100vh;
        padding: 130px 20px 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .programs-container,
    .coaches-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding-left: 20px;
        padding-right: 20px;
    }

    img {
        max-width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 14px;
    }

    .nav-links {
        gap: 8px;
        font-size: 11px;
    }

    .brand h2,
    .brand span {
        display: none;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}
