/* ======================================
   RESET
====================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    transition:.4s;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ======================================
   VARIABLES
====================================== */

:root{

    --primary:#e30613;
    --secondary:#ff3c3c;

    --bg:#ffffff;
    --card:#ffffff;

    --text:#111111;
    --text-light:#666;

    --shadow:
    0 10px 30px rgba(0,0,0,.08);

}

/* ======================================
   DARK THEME
====================================== */

body.dark{

    --bg:#090909;

    --card:#141414;

    --text:#ffffff;

    --text-light:#bdbdbd;

    --primary:#ff003c;

    --secondary:#9b5cff;

    --shadow:
    0 0 25px rgba(255,0,60,.15);

}

body{

    background:var(--bg);

    color:var(--text);
}

/* ======================================
   GLOBAL
====================================== */

section{

    padding:100px 8%;
}

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title h2{

    font-size:3rem;

    margin-bottom:10px;

    font-family:'Orbitron',sans-serif;
}

.section-title p{

    color:var(--text-light);
}

/* ======================================
   HEADER
====================================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:18px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:999;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(15px);
}

body.dark .header{

    background:rgba(0,0,0,.7);
}

.logo{

    display:flex;

    align-items:center;

    gap:10px;
}

.logo img{
    width:80px;
    height:auto;
}

.logo h2{

    color:var(--primary);
}

.logo span{

    font-size:12px;

    color:var(--text-light);
}

.navbar{

    display:flex;

    gap:30px;
}

.navbar a{

    color:var(--text);

    font-weight:600;

    transition:.3s;
}

.navbar a:hover{

    color:var(--primary);
}

.theme-btn{

    width:45px;
    height:45px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;
}

/* ======================================
   HERO VIDEO
====================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;
}

.hero-video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.8)
    );

    z-index:-1;
}

.hero-content{

    max-width:900px;

    color:#fff;

    z-index:5;
}

.tagline{
    display:inline-block;

    margin-top:100px; /* increase or decrease */

    margin-bottom:25px;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.1);

    backdrop-filter:blur(10px);
}

.hero h1{

    font-family:'Orbitron',sans-serif;

    font-size:5rem;

    line-height:1.1;

    margin-bottom:20px;
}

.hero h1 span{

    color:#ff003c;

    text-shadow:
    0 0 15px #ff003c;
}

.hero p{

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

/* ======================================
   BUTTONS
====================================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;
}

.btn{

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.primary-btn{

    background:var(--primary);

    color:#fff;
}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 25px var(--primary);
}

.secondary-btn{

    border:2px solid #fff;

    color:#fff;
}

.secondary-btn:hover{

    background:#fff;

    color:#111;
}

/* ======================================
   HERO STATS
====================================== */

.hero-stats{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.stat{

    min-width:150px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:20px;
}

.stat h3{

    font-size:2rem;
}

/* ======================================
   TRIAL BADGE
====================================== */

.trial-badge{

    position:absolute;

    right:50px;

    bottom:60px;

    width:170px;
    height:170px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #ff003c,
        #ff7a00
    );

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{transform:scale(1);}
    50%{transform:scale(1.05);}
    100%{transform:scale(1);}
}

/* ======================================
   FEATURES
====================================== */

.features-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.feature-card{

    background:var(--card);

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;
}

.feature-card:hover{

    transform:translateY(-10px);
}

.feature-card i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;
}

/* ======================================
   BELT JOURNEY
====================================== */

.belt-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(140px,1fr));

    gap:20px;
}

.belt-card{

    background:var(--card);

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow);

    cursor:pointer;

    transition:.3s;
}

.belt-card:hover{

    transform:translateY(-8px);
}

.belt-card img{

    height:70px;

    object-fit:contain;

    margin:auto;
}

.belt-card h4{

    margin-top:10px;
}

/* ======================================
   PROGRAMS
====================================== */

.program-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;
}

.program-card{

    background:var(--card);

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    text-align:center;

    transition:.3s;
}

.program-card:hover{

    transform:translateY(-10px);
}

.program-card h3{

    color:var(--primary);

    margin-bottom:15px;
}

.program-card a{

    display:inline-block;

    margin-top:20px;

    background:var(--primary);

    color:#fff;

    padding:12px 25px;

    border-radius:50px;
}

/* DARK MODE GLOW */

body.dark .feature-card:hover,
body.dark .belt-card:hover,
body.dark .program-card:hover{

    box-shadow:
    0 0 20px #ff003c,
    0 0 40px #9b5cff;
}

/* ======================================
   SCHEDULE
====================================== */

.schedule-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.schedule-card{

    padding:40px;

    border-radius:20px;

    text-align:center;

    color:#fff;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
    );

    transition:.3s;
}

.schedule-card:hover{

    transform:translateY(-10px);
}

.schedule-card h3{

    font-size:1.8rem;

    margin-bottom:10px;
}

.schedule-card p{

    font-size:1.1rem;
}

/* ======================================
   ACHIEVEMENT COUNTERS
====================================== */

.achievements{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;
}

.counter-box{

    background:var(--card);

    padding:40px;

    text-align:center;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.3s;
}

.counter-box:hover{

    transform:translateY(-8px);
}

.counter-box h2{

    font-size:3rem;

    color:var(--primary);

    margin-bottom:10px;
}

.counter-box p{

    color:var(--text-light);
}

/* ======================================
   COACHES
====================================== */

.coach-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.coach-card{

    background:var(--card);

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.3s;
}

.coach-card:hover{

    transform:translateY(-10px);
}

.coach-image{

    height:320px;

    overflow:hidden;
}

.coach-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.coach-info{

    padding:25px;
}

.coach-info h3{

    color:var(--primary);

    margin-bottom:8px;
}

.coach-info p{

    color:var(--text-light);
}

/* ======================================
   GALLERY
====================================== */

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:18px;
}

.gallery-grid img{

    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;
}

.gallery-grid img:hover{

    transform:scale(1.05);
}

/* ======================================
   REVIEWS
====================================== */

.review-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:25px;
}

.review-card{

    background:var(--card);

    padding:30px;

    border-radius:20px;

    box-shadow:var(--shadow);
}

.review-card h4{

    color:var(--primary);

    margin-bottom:10px;
}

.review-card .stars{

    color:gold;

    margin-bottom:15px;
}

.review-card p{

    color:var(--text-light);

    line-height:1.8;
}

/* ======================================
   TRIAL FORM
====================================== */

.trial-section{

    background:
    linear-gradient(
    135deg,
    rgba(227,6,19,.08),
    rgba(255,60,60,.08)
    );
}

.trial-container{

    max-width:800px;

    margin:auto;

    background:var(--card);

    padding:50px;

    border-radius:25px;

    box-shadow:var(--shadow);
}

.trial-container h2{

    text-align:center;

    margin-bottom:30px;
}

.trial-container form{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.trial-container input,
.trial-container select,
.trial-container textarea{

    width:100%;

    padding:16px;

    border-radius:12px;

    border:1px solid #ddd;

    outline:none;

    font-size:15px;
}

body.dark .trial-container input,
body.dark .trial-container select,
body.dark .trial-container textarea{

    background:#222;

    color:#fff;

    border:1px solid #333;
}

.trial-container button{

    background:var(--primary);

    color:#fff;

    border:none;

    padding:16px;

    border-radius:12px;

    cursor:pointer;

    font-size:16px;

    font-weight:600;
}

/* ======================================
   CONTACT
====================================== */

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;
}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.contact-card{

    background:var(--card);

    padding:25px;

    border-radius:15px;

    box-shadow:var(--shadow);
}

.contact-card h4{

    color:var(--primary);

    margin-bottom:8px;
}

.contact-card p{

    color:var(--text-light);
}

.contact iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:20px;
}

/* ======================================
   BELT POPUP
====================================== */

.belt-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.8);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;
}

.popup-content{

    width:90%;
    max-width:500px;

    background:#fff;

    padding:35px;

    border-radius:20px;

    position:relative;
}

body.dark .popup-content{

    background:#171717;

    color:#fff;
}

#closePopup{

    position:absolute;

    top:15px;
    right:20px;

    font-size:28px;

    cursor:pointer;
}

.popup-content h3{

    color:var(--primary);

    margin-bottom:15px;
}

.popup-content p{

    line-height:1.8;
}

/* ======================================
   FOOTER
====================================== */

footer{

    background:#111;

    color:#fff;

    text-align:center;

    padding:60px 20px;
}

footer h3{

    color:#ff003c;

    margin-bottom:10px;

    font-family:'Orbitron',sans-serif;
}

footer p{

    color:#aaa;
}

.footer-social{

    margin-top:20px;

    display:flex;

    justify-content:center;

    gap:15px;
}

.footer-social a{

    width:45px;
    height:45px;

    border-radius:50%;

    background:#222;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;
}

.footer-social a:hover{

    background:var(--primary);
}

/* ======================================
   DARK MODE NEON EFFECTS
====================================== */

body.dark .counter-box:hover,
body.dark .coach-card:hover,
body.dark .review-card:hover,
body.dark .contact-card:hover{

    box-shadow:
    0 0 15px #ff003c,
    0 0 30px #9b5cff;
}

body.dark .schedule-card{

    box-shadow:
    0 0 15px rgba(255,0,60,.25);
}

body.dark .trial-container{

    border:1px solid rgba(255,0,60,.2);
}

/* ======================================
   SCROLLBAR
====================================== */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#111;
}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:10px;
}

/* ======================================
   RESPONSIVE
====================================== */

@media(max-width:1200px){

    .hero h1{

        font-size:4rem;
    }
}

@media(max-width:992px){

    section{

        padding:80px 5%;
    }

    .contact-grid{

        grid-template-columns:1fr;
    }

    .navbar{

        display:none;
    }

    .trial-badge{

        display:none;
    }
}

@media(max-width:768px){

    .section-title h2{

        font-size:2.2rem;
    }

    .hero h1{

        font-size:2.8rem;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .hero-stats{

        flex-direction:column;
        align-items:center;
    }

    .stat{

        width:100%;
        max-width:250px;
    }

    .trial-container{

        padding:30px 20px;
    }

    .popup-content{

        padding:25px;
    }
}

@media(max-width:480px){

    .hero h1{

        font-size:2.2rem;
    }

    .section-title h2{

        font-size:1.8rem;
    }

    .counter-box h2{

        font-size:2.3rem;
    }

    .schedule-card{

        padding:25px;
    }
}

