

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    overflow-x:hidden;
    font-family:Georgia, serif;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:25px 70px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:1000;
}

.logo img{
    width:110px;
}

/* ===========================
   MENU
=========================== */

.anchors{
    display:flex;
    gap:40px;
}

.anchors a{

    text-decoration:none;
    color:#fff;

    font-size:20px;

    transition:.4s;
}

.anchors a:hover{

    color:rgb(182, 182, 75);

}

/* ===========================
   NAV BUTTON
=========================== */
.btn a{

    padding:20px 30px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#000;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 6px 20px rgba(212,175,55,.35);
    text-decoration: none;

}

.btn button:hover{

    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(212,175,55,.5);

}

/* ===========================
   HERO
=========================== */

.herosection{

    width:100%;

    height:100vh;

    background:

    linear-gradient(
    to right,
    rgba(0,0,0,.78),
    rgba(0,0,0,.15)
    ),

    url("images/backgroundimg2.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding-left:90px;

}

.herosection h1{

    color:white;

    font-size:90px;

    line-height:88px;

    width:600px;

    padding-top: 80px;

}

/* ===========================
   PARAGRAPH
=========================== */

.sentence{

    margin-top:25px;

}

.sentence p{

    color:#d8d8d8;

    font-size:32px;

    width:650px;

    line-height:45px;

}

/* ===========================
   BUTTONS
=========================== */

.btns{

    display:flex;

    gap:25px;

    margin-top:45px;

}

.hero-btn{

    position:relative;

    padding:18px 42px;

    border:2px solid #C0C0C0;

    color:#fff;

    text-decoration:none;

    overflow:hidden;

    transition:.4s;

    z-index:1;

}

.hero-btn::before{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:0;

    background:#C0C0C0;

    transition:.5s;

    z-index:-1;

}

.hero-btn:hover::before{

    height:100%;

}

.hero-btn:hover{

    color:#000;

}

/* ==========================================
   SLIDE 2 - GRAND OPENING OFFER
========================================== */
.offer-section{
    width:100%;
    min-height:100vh;
    padding:90px 8%;

    background:
    linear-gradient(
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.82)
    ),
    url("images/s2bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    /* background-attachment:fixed; */

    color:#fff;
}
.offer-heading{
    text-align:center;
    margin-bottom:45px;
}

.offer-heading h2{
    font-size:55px;
    font-weight:800;
    letter-spacing:2px;
}

.offer-heading p{
    font-size:24px;
    color:#c0c0c0;
    margin-top:8px;
}

/* Countdown */

.countdown{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:45px;
    flex-wrap:wrap;
}

.time-box{
    width:150px;
    height:150px;
    border:1px solid #444;
    border-radius:12px;
    background:#111;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.4s;
}

.time-box:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 0 20px rgba(212,175,55,.35);
}

.time-box h3{
    font-size:55px;
    margin-bottom:10px;
}

.time-box span{
    font-size:18px;
    color:#c0c0c0;
    letter-spacing:1px;
}

/* Offer Banner */

.offer-banner{
    width:75%;
    margin:0 auto 60px;
    padding:25px;
    background:linear-gradient(to right,#d9d9d9,#a8a8a8,#d9d9d9);
    color:#000;
    text-align:center;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(255,255,255,.15);
}

.offer-banner h3{
    font-size:42px;
    margin-bottom:10px;
}

.offer-banner p{
    font-size:28px;
    font-weight:bold;
}

/* Membership Cards */

.plans{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.plan-card{
    background:#0d0d0d;
    border:1px solid #333;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    position:relative;
}

.plan-card:hover{
    transform:translateY(-12px);
    border-color:#c0c0c0;
    box-shadow:0 0 30px rgba(255,255,255,.08);
}

.plan-card h4{
    font-size:28px;
    margin-bottom:20px;
}

.price{
    font-size:48px;
    font-weight:bold;
    margin-bottom:25px;
}

.plan-card ul{
    list-style:none;
    text-align:left;
    margin-bottom:35px;
}

.plan-card ul li{
    padding:8px 0;
    color:#ddd;
}

.plan-card a{
    width:100%;
    padding:15px 15px;
    border:none;
    background:#d9d9d9;
    color:#000;
    cursor:pointer;
    font-size:18px;
    border-radius:6px;
    transition:.3s;
    text-decoration: none;
}

.plan-card a:hover{
    background:#d4af37;
}

/* Featured Card */

.featured{
    border:2px solid #d4af37;
    transform:scale(1.05);
    box-shadow:0 0 35px rgba(212,175,55,.35);
}

.featured:hover{
    transform:scale(1.08);
}

.badge{
    position:absolute;
    top:-15px;
    right:20px;
    background:#d4af37;
    color:#000;
    font-size:13px;
    font-weight:bold;
    padding:8px 18px;
    border-radius:30px;
}

/* Benefits */

.benefits{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.benefit{
    background:#101010;
    border:1px solid #2f2f2f;
    border-radius:12px;
    padding:25px;
    text-align:center;
    transition:.4s;
}

.benefit:hover{
    border-color:#c0c0c0;
    transform:translateY(-8px);
}

.benefit h5{
    font-size:24px;
    margin-bottom:10px;
    color:#d4af37;
}

.benefit p{
    color:#ddd;
    line-height:1.5;
}

/* ==========================================
   SLIDE 2 - MOBILE RESPONSIVE
========================================== */

@media (max-width: 600px){

    .offer-section{
        padding:70px 18px 60px;
        min-height:auto;
        overflow:hidden;
        background-position:center;
    }

    /* Heading */
    .offer-heading{
        margin-bottom:30px;
    }

    .offer-heading h2{
        font-size:32px;
        line-height:1.15;
        letter-spacing:1px;
    }

    .offer-heading p{
        font-size:16px;
        line-height:1.5;
    }

    /* Countdown */
    .countdown{
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:12px;
        margin-bottom:35px;
        width:100%;
    }

    .time-box{
        width:100%;
        height:105px;
        border-radius:10px;
    }

    .time-box h3{
        font-size:32px;
        margin-bottom:5px;
    }

    .time-box span{
        font-size:13px;
    }

    /* Offer Banner */
    .offer-banner{
        width:100%;
        margin:0 auto 40px;
        padding:20px 14px;
        border-radius:8px;
    }

    .offer-banner h3{
        font-size:25px;
        line-height:1.2;
    }

    .offer-banner p{
        font-size:17px;
        line-height:1.4;
    }

    /* Membership Cards */
    .plans{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
    }

    .plan-card{
        padding:28px 20px;
    }

    .plan-card h4{
        font-size:23px;
    }

    .price{
        font-size:38px;
    }

    .plan-card ul{
        margin-bottom:25px;
    }

    .plan-card a{
        display:block;
        width:100%;
        box-sizing:border-box;
        font-size:16px;
        padding:13px;
    }

    /* Featured Card */
    .featured{
        transform:none;
    }

    .featured:hover{
        transform:none;
    }

    /* Benefits */
    .benefits{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
        margin-top:45px;
    }

    .benefit{
        padding:18px 10px;
    }

    .benefit h5{
        font-size:18px;
    }

    .benefit p{
        font-size:13px;
        line-height:1.4;
    }

}

/* Responsive */

/* @media(max-width:1100px){

.plans{
    grid-template-columns:repeat(2,1fr);
}

.benefits{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.offer-heading h2{
    font-size:38px;
}

.offer-banner{
    width:100%;
}

.offer-banner h3{
    font-size:28px;
}

.offer-banner p{
    font-size:20px;
}

.plans{
    grid-template-columns:1fr;
}

.featured{
    transform:none;
}

.benefits{
    grid-template-columns:repeat(2,1fr);
}

.time-box{
    width:120px;
    height:120px;
}

.time-box h3{
    font-size:40px;
}

} */
/*=========================================
        SLIDE 3 - MEMBER BENEFITS
=========================================*/

.benefits-section{
    position: relative;
    width:100%;
    min-height:100vh;
    padding:100px 8%;

    background:
    linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.88)),
    url("images/s3bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    /* background-attachment:fixed; */

    overflow:hidden;
}

.benefits-overlay{
    position:absolute;
    inset:0;
    backdrop-filter:blur(2px);
}

.benefits-content{
    position:relative;
    z-index:2;
}

.benefits-content h2{

    font-size:60px;
    text-align:center;
    color:#fff;
    letter-spacing:2px;
    margin-bottom:15px;

}

.subtitle{

    text-align:center;
    color:#bfbfbf;
    font-size:22px;
    margin-bottom:70px;

}

.benefits-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;

}

.benefit-card{

    background:rgba(18,18,18,.55);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border-radius:20px;

    padding:45px 35px;

    text-align:center;

    transition:.45s;

}

.benefit-card:hover{

    transform:translateY(-15px);

    border:1px solid #D4AF37;

    box-shadow:0 0 35px rgba(212,175,55,.25);

}

.icon{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.1);

    margin-bottom:30px;

    transition:.4s;

}

.icon i{

    font-size:38px;

    color:#D4AF37;

}

.benefit-card:hover .icon{

    transform:rotate(8deg) scale(1.08);

    background:#D4AF37;

}

.benefit-card:hover .icon i{

    color:#000;

}

.benefit-card h3{

    color:#fff;

    font-size:28px;

    margin-bottom:18px;

}

.benefit-card p{

    color:#d0d0d0;

    line-height:1.8;

    font-size:17px;

}

.benefit-btn{

    display:table;

    margin:70px auto 0;

    text-decoration:none;

    color:#fff;

    border:2px solid #C0C0C0;

    padding:18px 45px;

    font-size:18px;

    letter-spacing:1px;

    position:relative;

    overflow:hidden;

    transition:.4s;

}

.benefit-btn::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    left:-100%;

    top:0;

    background:#C0C0C0;

    transition:.45s;

    z-index:-1;

}

.benefit-btn:hover::before{

    left:0;

}

.benefit-btn:hover{

    color:#000;

    border-color:#D4AF37;

}

/* Responsive */

@media(max-width:1100px){

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.benefits-content h2{

font-size:42px;

}

.subtitle{

font-size:18px;

margin-bottom:45px;

}

.benefits-grid{

grid-template-columns:1fr;

}

.benefit-card{

padding:35px 25px;

}

.icon{

width:75px;
height:75px;

}

.icon i{

font-size:30px;

}

}
/*=========================================
      SLIDE 4 - WHY CHOOSE BLACK FORGE
=========================================*/

.why-section{
    width:100%;
    min-height:100vh;
    padding:100px 8%;
    background:
    linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,.90)),
    url("images/s4bg.png");
    background-size:cover;
    background-position:center;
    /* background-attachment:fixed; */
}

.why-heading{
    text-align:center;
    margin-bottom:70px;
}

.why-heading h2{
    color:#fff;
    font-size:58px;
    letter-spacing:2px;
}

.why-heading p{
    color:#bdbdbd;
    margin-top:10px;
    font-size:20px;
}

.why-wrapper{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:50px;
    align-items:center;
}

/* LEFT IMAGE */

.why-image{
    overflow:hidden;
    border-radius:25px;
    border:1px solid rgba(255,255,255,.12);
}

.why-image img{
    width:100%;
    display:block;
    transition:.6s;
}

.why-image:hover img{
    transform:scale(1.08);
}

/* RIGHT GRID */

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-card{

    background:rgba(18,18,18,.55);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.10);

    border-radius:18px;

    padding:30px;

    transition:.45s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 0 25px rgba(212,175,55,.25);

}

.why-card i{

    font-size:36px;

    color:#D4AF37;

    margin-bottom:20px;

    transition:.4s;

}

.why-card:hover i{

    transform:rotate(10deg) scale(1.15);

}

.why-card h3{

    color:#fff;

    margin-bottom:12px;

    font-size:24px;

}

.why-card p{

    color:#cfcfcf;

    line-height:1.7;

}

/* COUNTERS */

.stats{

    margin-top:80px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat{

    text-align:center;

    padding:35px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(20,20,20,.45);

    border-radius:18px;

    transition:.4s;

}

.stat:hover{

    transform:translateY(-8px);

    border-color:#C0C0C0;

}

.stat h1{

    color:#D4AF37;

    font-size:54px;

}

.stat p{

    color:#d5d5d5;

    margin-top:10px;

    font-size:18px;

}

/* RESPONSIVE */

@media(max-width:1100px){

.why-wrapper{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.why-heading h2{
font-size:40px;
}

.why-grid{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:1fr;
}

}
/*=========================================
        SLIDE 5 - MEMBERSHIP TABLE
=========================================*/

.pricing-section{
    width:100%;
    min-height:100vh;
    padding:100px 8%;

    background:
    linear-gradient(rgba(0,0,0,.88),rgba(0,0,0,.90)),
    url("images/s5bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.pricing-heading{
    text-align:center;
    margin-bottom:60px;
}

.pricing-heading h2{
    color:#fff;
    font-size:58px;
    letter-spacing:2px;
}

.pricing-heading p{
    color:#d0d0d0;
    font-size:22px;
    margin-top:12px;
}

.pricing-heading span{
    display:block;
    margin-top:18px;
    color:#D4AF37;
    font-size:15px;
    letter-spacing:2px;
}

/* Table */

.pricing-table{

    margin:auto;

    width:100%;

    max-width:1300px;

    border-radius:20px;

    overflow:hidden;

    background:rgba(18,18,18,.55);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

}

.table-row{

    display:grid;

    grid-template-columns:2fr repeat(4,1fr);

    align-items:center;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.table-row:last-child{

    border:none;

}

.table-row div{

    padding:25px;

    text-align:center;

    color:#fff;

    transition:.35s;

}

.feature-title{

    text-align:left !important;

    font-weight:600;

    color:#C0C0C0 !important;

}

.table-head{

    background:rgba(255,255,255,.04);

}

.table-head div{

    font-size:22px;

    font-weight:bold;

}

.table-row:hover{

    background:rgba(255,255,255,.03);

}

.table-row div:hover{

    background:rgba(212,175,55,.08);

}

/* Annual Highlight */

.annual{

    color:#D4AF37 !important;

}

/* Buttons */

.pricing-buttons{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:55px;

}

.pricing-buttons a{

    text-decoration:none;

    color:#fff;

    border:2px solid #C0C0C0;

    padding:18px 45px;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.pricing-buttons a::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:#C0C0C0;

    transition:.4s;

    z-index:-1;

}

.pricing-buttons a:hover::before{

    left:0;

}
.pricing-buttons a:hover{

    color:#827b7b;

    border-color:#D4AF37;

}

/* Responsive */

@media(max-width:1100px){

.table-row{

grid-template-columns:1.5fr repeat(4,1fr);

}

.table-head div{

font-size:18px;

}

}

@media(max-width:850px){

.pricing-table{

overflow-x:auto;

}

.table-row{

min-width:850px;

}

.pricing-buttons{

flex-direction:column;

align-items:center;

}

}
/*==========================================
            SLIDE 6 - GALLERY
==========================================*/

/* .gallery-section{

    padding:100px 8%;
    background:#080808;

} */
.gallery-section{

    padding:100px 8%;

    background:
    linear-gradient(rgba(8,8,8,.88),rgba(8,8,8,.88)),
    url("images/s6bg.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}
.gallery-heading{

    text-align:center;
    margin-bottom:60px;

}

.gallery-heading span{

    color:#D4AF37;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;

}

.gallery-heading h2{

    color:#fff;
    font-size:55px;
    margin:18px 0;
    font-weight:700;

}

.gallery-heading h2 span{

    color:#D4AF37;

}

.gallery-heading p{

    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;

}



/*==========================================
            TOP ROW
==========================================*/

.gallery-top{

    display:flex;
    gap:25px;
    margin-bottom:30px;

}

.gallery-top .gallery-box{

    flex:1;
    height:320px;

}



/*==========================================
            CTA
==========================================*/

.gallery-banner{

    position:relative;

    width:100%;

    height:430px;

    margin-bottom:30px;

    overflow:hidden;

    border-radius:22px;

    border:1px solid rgba(212,175,55,.30);

}

.gallery-banner img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.banner-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

}

.banner-content{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;

}

.banner-content>span{

    color:#D4AF37;

    font-size:14px;

    letter-spacing:4px;

}

.banner-content h2{

    color:#fff;

    font-size:72px;

    line-height:1.05;

    margin:18px 0;

}

.banner-content strong{

    display:block;

    color:#D4AF37;

}

.banner-content p{

    color:#d6d6d6;

    font-size:19px;

    margin-bottom:35px;

}

.banner-content p span{

    color:#D4AF37;

}

.banner-content a{

    text-decoration:none;

    color:#fff;

    border:2px solid #D4AF37;

    padding:18px 50px;

    border-radius:50px;

    transition:.4s;

    font-weight:600;

}

.banner-content a:hover{

    background:#D4AF37;

    color:#111;

}



/*==========================================
            MIDDLE ROW
==========================================*/

.gallery-middle{

    display:flex;

    gap:25px;

    margin-bottom:30px;

}

.gallery-middle .gallery-box{

    flex:1;

    height:250px;

}



/*==========================================
            BOTTOM ROW
==========================================*/

.gallery-bottom{

    display:flex;

    gap:25px;

}

.gallery-bottom .gallery-box{

    flex:1;

    height:270px;

}



/*==========================================
            IMAGE
==========================================*/

.gallery-box{

    overflow:hidden;

    border-radius:20px;

    border:1px solid rgba(212,175,55,.18);

    cursor:pointer;

    transition:.45s;

}

.gallery-box img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.gallery-box:hover{

    transform:translateY(-8px);

    box-shadow:0 0 25px rgba(212,175,55,.25);

}

.gallery-box:hover img{

    transform:scale(1.08);

}



/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:992px){

.gallery-top,
.gallery-middle,
.gallery-bottom{

flex-direction:column;

}

.gallery-top .gallery-box,
.gallery-middle .gallery-box,
.gallery-bottom .gallery-box{

height:260px;

}

.banner-content h2{

font-size:48px;

}

.gallery-banner{

height:360px;

}

}

@media(max-width:768px){

.gallery-heading h2{

font-size:34px;

}

.banner-content h2{

font-size:34px;

}

.banner-content p{

font-size:15px;

}

.gallery-banner{

height:320px;

}

}/*==========================================
        CTA SHINE EFFECT
==========================================*/

.gallery-banner{

    position:relative;

    overflow:hidden;

}

.gallery-banner::before{

    content:"";

    position:absolute;

    top:-60%;

    left:-35%;

    width:18%;

    height:220%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.28),
        transparent
    );

    transform:rotate(25deg);

    transition:1s ease;

    z-index:2;

    pointer-events:none;

}

.gallery-banner:hover::before{

    left:120%;

}.gallery-banner{

    transition:.45s ease;

}

.gallery-banner:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.45),
    0 0 25px rgba(212,175,55,.20);

}
/*==========================================
            SLIDE 7 - TRAINERS
==========================================*/

.trainer-section{

    padding:100px 8%;

    background:
    linear-gradient(rgba(8,8,8,.92),rgba(8,8,8,.92)),
    url("images/s6bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.trainer-heading{

    text-align:center;
    margin-bottom:35px;

}

.trainer-heading span{

    color:#D4AF37;
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:600;

}

.trainer-heading h2{

    color:#fff;
    font-size:52px;
    margin:18px 0;

}

.trainer-heading h2 span{

    color:#D4AF37;

}

.trainer-heading p{

    color:#bdbdbd;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:17px;

}



/*==============================
        CARDS
==============================*/

.trainer-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-top: 50px;
}

.trainer-card{

    background:#111;
    border-radius:22px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,.18);
    transition:.45s;
    position:relative;

}

.trainer-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.45),
    0 0 25px rgba(212,175,55,.18);

}



/*==============================
        IMAGE
==============================*/

.trainer-image{

    position:relative;
    overflow:hidden;
    height:360px;

}

.trainer-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.trainer-card:hover img{

    transform:scale(1.08);

}



/*==============================
        OVERLAY
==============================*/

.trainer-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.15));

    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:18px;

    padding-bottom:25px;

    opacity:0;

    transition:.45s;

}

.trainer-card:hover .trainer-overlay{

    opacity:1;

}

.trainer-overlay a{

    width:46px;
    height:46px;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    transform:translateY(20px);

    transition:.35s;

}

.trainer-card:hover .trainer-overlay a{

    transform:translateY(0);

}

.trainer-overlay a:hover{

    background:#fff;

}



/*==============================
        INFO
==============================*/

.trainer-info{

    padding:28px;
    text-align:center;

}

.trainer-info h3{

    color:#fff;
    font-size:26px;
    margin-bottom:8px;

}

.trainer-info span{

    color:#D4AF37;
    display:block;
    margin-bottom:15px;
    font-weight:600;

}

.trainer-info p{

    color:#bcbcbc;
    line-height:1.7;
    font-size:15px;

}



/*==============================
        SHINE EFFECT
==============================*/

.trainer-card::before{

    content:"";

    position:absolute;

    top:-60%;
    left:-35%;

    width:18%;
    height:220%;

    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.25),
    transparent);

    transform:rotate(25deg);

    transition:1s;

    pointer-events:none;
    z-index:5;

}

.trainer-card:hover::before{

    left:125%;

}



/*==============================
        RESPONSIVE
==============================*/

@media(max-width:1200px){

.trainer-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.trainer-heading h2{

font-size:36px;

}

.trainer-container{

grid-template-columns:1fr;

}

.trainer-image{

height:320px;

}

}
/*==========================================
        SLIDE 9 - CONTACT
==========================================*/
/*==========================================
        CONTACT SECTION
==========================================*/

.contact-section{

padding:100px 8%;

background:#0d0d0d;

}

.contact-container{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.contact-info{

background:#141414;

padding:45px;

border-radius:20px;

border:1px solid rgba(212,175,55,.18);

}

.contact-info h2{

font-size:42px;

color:#D4AF37;

margin-bottom:25px;

}

.contact-info p{

font-size:17px;

line-height:1.8;

color:#ddd;

margin-bottom:20px;

}

.contact-info i{

color:#D4AF37;

margin-right:12px;

font-size:18px;

}

.map-btn{

display:inline-block;

margin-top:25px;

padding:15px 35px;

background:#D4AF37;

color:#111;

text-decoration:none;

font-weight:700;

border-radius:50px;

transition:.35s;

}

.map-btn:hover{

background:#fff;

transform:translateY(-4px);

box-shadow:0 10px 25px rgba(255,255,255,.15);

}

.contact-map iframe{

width:100%;

height:500px;

border:none;

border-radius:20px;

border:1px solid rgba(212,175,55,.18);

}



/*==========================================
        MOBILE
==========================================*/

@media(max-width:900px){

.contact-container{

grid-template-columns:1fr;

}

.contact-map iframe{

height:350px;

}

.contact-info{

padding:30px;

}

.contact-info h2{

font-size:32px;

}

}
/* .contact-section{

    padding:100px 8%;

    background:
    linear-gradient(rgba(8,8,8,.90),rgba(8,8,8,.90)),
    url("images/s6bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

} */



/*==========================
        HEADING
==========================*/

.contact-heading{

    text-align:center;
    margin-bottom:60px;

}

.contact-heading span{

    color:#D4AF37;
    font-size:14px;
    letter-spacing:4px;
    font-weight:600;
    text-transform:uppercase;

}

.contact-heading h2{

    color:#fff;
    font-size:52px;
    margin:18px 0;

}

.contact-heading h2 span{

    color:#D4AF37;

}

.contact-heading p{

    color:#bdbdbd;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:17px;

}



/*==========================
        WRAPPER
==========================*/

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
    margin-bottom:50px;

}



/*==========================
        LEFT INFO
==========================*/

.contact-info{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.contact-box{

    display:flex;
    align-items:center;
    gap:20px;

    background:#111;

    padding:25px;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.15);

    transition:.4s;

}

.contact-box:hover{

    transform:translateX(10px);

    border-color:#D4AF37;

    box-shadow:0 0 20px rgba(212,175,55,.15);

}

.contact-box i{

    width:60px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#D4AF37;

    color:#111;

    border-radius:50%;

    font-size:22px;

}

.contact-box h3{

    color:#fff;
    margin-bottom:8px;

}

.contact-box p{

    color:#cfcfcf;
    line-height:1.6;

}



/*==========================
        FORM
==========================*/

.contact-form{

    background:#111;

    padding:40px;

    border-radius:22px;

    border:1px solid rgba(212,175,55,.15);

}

.contact-form form{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    background:#1a1a1a;

    border:1px solid #2d2d2d;

    color:#fff;

    border-radius:12px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#D4AF37;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    padding:18px;

    border:none;

    border-radius:50px;

    background:#D4AF37;

    color:#111;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    background:#fff;

    transform:translateY(-3px);

}



/*==========================
        MAP
==========================*/

.map-box{

    overflow:hidden;

    border-radius:22px;

    border:1px solid rgba(212,175,55,.15);

}

.map-box iframe{

    width:100%;

    height:420px;

    border:0;

}



/*==========================
        SHINE
==========================*/

.contact-form{

    position:relative;
    overflow:hidden;

}

.contact-form::before{

    content:"";

    position:absolute;

    top:-60%;
    left:-35%;

    width:18%;
    height:220%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform:rotate(25deg);

    transition:1s;

    pointer-events:none;

}

.contact-form:hover::before{

    left:120%;

}



/*==========================
        RESPONSIVE
==========================*/

@media(max-width:992px){

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact-heading h2{

font-size:36px;

}

.contact-form{

padding:30px;

}

.map-box iframe{

height:300px;

}

}/*==========================================
            SLIDE 10 - FOOTER
==========================================*/

.footer{

    position:relative;

    padding:80px 8% 25px;

    background:
    linear-gradient(rgba(5,5,5,.96),rgba(5,5,5,.96)),
    url("images/s6bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border-top:1px solid rgba(212,175,55,.15);

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:45px;

}



/*=========================
        TITLES
=========================*/

.footer-column h2{

    color:#fff;

    font-size:34px;

    margin-bottom:20px;

}

.footer-column h2 span{

    color:#D4AF37;

}

.footer-column h3{

    color:#fff;

    margin-bottom:22px;

    font-size:22px;

}

.footer-column p{

    color:#bdbdbd;

    line-height:1.9;

}



/*=========================
        LINKS
=========================*/

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin-bottom:15px;

    color:#bdbdbd;

}

.footer-column ul li a{

    color:#bdbdbd;

    text-decoration:none;

    transition:.35s;

}

.footer-column ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

}



/*=========================
      SOCIAL ICONS
=========================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    color:#111;

    background:#D4AF37;

    transition:.35s;

}

.footer-social a:hover{

    transform:translateY(-8px);

    background:#fff;

}



/*=========================
      NEWSLETTER
=========================*/

.footer-column form{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-top:20px;

}

.footer-column input{

    padding:16px;

    border:none;

    outline:none;

    border-radius:12px;

    background:#1b1b1b;

    color:#fff;

    border:1px solid #333;

}

.footer-column input:focus{

    border-color:#D4AF37;

}

.footer-column button{

    padding:16px;

    border:none;

    border-radius:50px;

    background:#D4AF37;

    color:#111;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.footer-column button:hover{

    background:#fff;

    transform:translateY(-3px);

}



/*=========================
      BOTTOM
=========================*/

.footer-bottom{

    text-align:center;

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    color:#9b9b9b;

}



/*=========================
      BACK TO TOP
=========================*/

.back-top{

    position:fixed;

    right:35px;

    bottom:110px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    text-decoration:none;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    transition:.4s;

    z-index:999;

}

.back-top:hover{

    transform:translateY(-8px);

    background:#fff;

}



/*=========================
      SHINE EFFECT
=========================*/

.footer-column{

    position:relative;

    overflow:hidden;

}

.footer-column::before{

    content:"";

    position:absolute;

    top:-60%;

    left:-35%;

    width:18%;

    height:220%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transform:rotate(25deg);

    transition:1s;

    pointer-events:none;

}

.footer-column:hover::before{

    left:120%;

}



/*=========================
      RESPONSIVE
=========================*/

@media(max-width:1100px){

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer{

padding:70px 6% 25px;

}

.footer-container{

grid-template-columns:1fr;

gap:35px;

}

.footer-column h2{

font-size:28px;

}

.footer-column h3{

font-size:20px;

}
 .back-top{

    position:fixed;

    right:10px;

    bottom:30px;

    /* left: 10px; */

    top: auto;

    width:55px;
    height:55px;

    border-radius:50%;

    background:#D4AF37;

    color:#111;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:22px;

    z-index:999;

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:.4s;

}

.back-top.show{

    opacity:1;
    visibility:visible;
    transform:translateY(0);
    left: 15px;
}

}
.contact-map iframe{

width:100%;

height:500px;

border:none;

border-radius:20px;

display:block;

box-shadow:0 15px 40px rgba(0,0,0,.35);

}
/*==========================================
        PREMIUM WHATSAPP
==========================================*/

.whatsapp-wrapper{

position:fixed;

right:25px;

bottom:25px;

z-index:9999;

}

.whatsapp-btn{

display:flex;

align-items:center;

text-decoration:none;

}

.whatsapp-message{

background:#fff;

color:#111;

padding:14px 18px;

border-radius:14px;

margin-right:12px;

font-size:14px;

font-weight:600;

line-height:1.5;

box-shadow:0 10px 30px rgba(0,0,0,.18);

opacity:0;

visibility:hidden;

transform:translateX(20px);

transition:.35s;

white-space:nowrap;

}

.whatsapp-message small{

font-size:12px;

color:#666;

font-weight:500;

}

.whatsapp-btn:hover .whatsapp-message{

opacity:1;

visibility:visible;

transform:translateX(0);

}

.whatsapp-btn i{

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:#fff;

box-shadow:0 12px 30px rgba(37,211,102,.35);

transition:.35s;

animation:whatsappPulse 2s infinite;

}

.whatsapp-btn:hover i{

transform:scale(1.08);

background:#20ba5a;

}

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.55);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

@media(max-width:768px){

.whatsapp-message{

display:none;

}

.whatsapp-btn i{

width:58px;

height:58px;

font-size:30px;

}

}
/*==========================================
        PREMIUM PRELOADER
==========================================*/

#preloader{

position:fixed;
top:0;
left:0;

width:100%;
height:100vh;

background:#000;

display:flex;
justify-content:center;
align-items:center;

z-index:999999;

flex-direction:column;

}

.loader{

width:22px;

height:22px;

border:3px solid rgba(255,255,255,.25);

border-top:3px solid #000;

border-radius:50%;

display:flex;

animation:spin .8s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}
}
.loader-content{

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

text-align:center;

}
.loader-content img{

width:120px;

margin-bottom:20px;

filter:drop-shadow(0 0 20px #D4AF37);

animation:glowLogo 2s infinite alternate;

}

.loader-content h2{

font-size:42px;

color:#D4AF37;

letter-spacing:4px;

margin-bottom:10px;

}

.loader-content p{

color:#aaa;

margin-bottom:30px;

letter-spacing:3px;

}
.loader-bar{

width:320px;
height:8px;

background:#222;

border-radius:50px;

overflow:hidden;

margin:25px 0;

}
/* .loader-bar{

width:280px;

height:6px;

background:#222;

border-radius:50px;

overflow:hidden;

margin:auto;

} */

.loader-bar span{

display:block;

width:0;

height:100%;

background:linear-gradient(90deg,#D4AF37,#FFD95A);

}

#loadingText{

margin-top:20px;

font-size:22px;

color:white;

}

@keyframes glowLogo{

from{

transform:scale(1);

filter:drop-shadow(0 0 8px #D4AF37);

}

to{

transform:scale(1.08);

filter:drop-shadow(0 0 35px #FFD95A);

}

}

.particles{

position:absolute;

width:100%;

height:100%;

background-image:

radial-gradient(#D4AF37 1px,transparent 1px);

background-size:35px 35px;

opacity:.15;

animation:particlesMove 20s linear infinite;

}

@keyframes particlesMove{

from{

transform:translateY(0);

}

to{

transform:translateY(-300px);

}

}

.preloader-hide{

opacity:0;

visibility:hidden;

}
html{

scroll-behavior:smooth;

}
/* Page Transition */

body{

transition:opacity .7s ease;

}

body.fade-out{

opacity:0;

}
/* ==========================
   PAGE TRANSITION
========================== */

body{

opacity:1;
transition:opacity .8s ease-in-out;

}

body.fade-out{

opacity:0;

}

body.fade-in{

opacity:1;

}
/*==========================================
      ACTIVE NAVBAR
==========================================*/
.anchors a{
    position:relative;
    transition:.35s;
}

.anchors a.active{
    color:#D4AF37;
    font-weight:700;
}

.anchors a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:3px;
    background:#D4AF37;
    border-radius:50px;
}
/*==========================================
      SCROLL PROGRESS BAR
==========================================*/

#scrollProgress{

position:fixed;

top:0;
left:0;

width:0%;
height:4px;

background:linear-gradient(90deg,#D4AF37,#FFD54F);

z-index:999999;

transition:width .15s linear;

box-shadow:0 0 10px rgba(212,175,55,.6);

}
/*==========================================
      STICKY NAVBAR
==========================================*/

.navbar{

transition:.4s ease;

}

.navbar.scrolled{

position:fixed;

top:0;
left:0;

width:100%;

background:rgba(0,0,0,.85);

backdrop-filter:blur(14px);

-webkit-backdrop-filter:blur(14px);

padding:18px 70px;

box-shadow:0 10px 25px rgba(0,0,0,.35);

animation:navbarSlide .4s ease;

}

@keyframes navbarSlide{

from{

transform:translateY(-100%);

}

to{

transform:translateY(0);

}

}
/*==========================================
        RESPONSIVE DESIGN
==========================================*/
/* ==========================================
   TABLET & MOBILE
========================================== */

@media (max-width:768px){

.navbar{

padding:20px;

flex-direction:column;

gap:20px;

}

.logo img{

width:85px;

}

.anchors{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.anchors a{

font-size:15px;

}

.btn a{

display:inline-block;

padding:14px 28px;

font-size:15px;

}

.herosection{

height:auto;

min-height:100vh;

padding:130px 25px 60px;

text-align:center;

align-items:center;

}

.herosection h1{

width:100%;

font-size:55px;

line-height:60px;

padding-top:0;

}

.sentence{

margin-top:20px;

}

.sentence p{

width:100%;

font-size:22px;

line-height:34px;

}

.btns{

flex-direction:column;

align-items:center;

gap:18px;

margin-top:35px;

}

.hero-btn{

width:260px;

text-align:center;

}

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:480px){

.navbar{

padding:15px;

}

.logo img{

width:70px;

}

.anchors{

gap:10px;

}

.anchors a{

font-size:13px;

}

.herosection{

padding:120px 18px 50px;

}

.herosection h1{

font-size:38px;

line-height:44px;

}

.sentence p{

font-size:18px;

line-height:30px;

}

.hero-btn{

width:100%;

max-width:260px;

padding:15px;

}

.btn a{

padding:12px 22px;

font-size:14px;

}

}

/* ==========================
   COUPLE PACKAGE
========================== */

.couple-package{

    margin-top:60px;

    background:#111;

    border:1px solid rgba(255,215,0,.25);

    border-radius:18px;

    padding:40px;

    text-align:center;

}

.couple-package h3{

    color:#FFD54A;

    font-size:34px;

    margin-bottom:10px;

}

.couple-package p{

    color:#ccc;

    margin-bottom:35px;

}

.couple-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-bottom:40px;

}

.couple-card{

    background:#1a1a1a;

    border:1px solid rgba(255,215,0,.2);

    border-radius:14px;

    padding:25px;

    transition:.3s;

}

.couple-card:hover{

    transform:translateY(-6px);

    border-color:#FFD54A;

}

.couple-card h4{

    color:#fff;

    margin-bottom:12px;

    font-size:22px;

}

.couple-card span{

    color:#FFD54A;

    font-size:28px;

    font-weight:bold;

}

.couple-benefits{

    margin-top:30px;

}

.couple-benefits h4{

    color:#FFD54A;

    margin-bottom:15px;

}

.couple-benefits ul{

    list-style:none;

    padding:0;

}

.couple-benefits li{

    color:#ddd;

    padding:8px 0;

    font-size:17px;

}

/* Mobile */

@media(max-width:768px){

.couple-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:500px){

.couple-grid{

grid-template-columns:1fr;

}

.couple-package{

padding:25px;

}

.couple-package h3{

font-size:28px;

}

}

.footer-column p a{
    display:inline-block;
    color:#D4AF37;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.footer-column p a:hover{
    color:#fff;
    transform:translateX(5px);
}

/* =========================
   HAMBURGER MENU
========================= */

.hamburger{
    display:none;
    background:none;
    border:none;
    color:#D4AF37;
    font-size:32px;
    cursor:pointer;
    padding:0;
    line-height:1;
}


/* =========================
   MOBILE NAVBAR
========================= */

@media(max-width:768px){

    .navbar{
        position:absolute;
        top:0;
        left:0;
        width:100%;

        padding:18px 20px;

        display:flex;
        align-items:center;

        justify-content:flex-start;

        gap:15px;

        z-index:1000;
    }

    /* Hamburger */

    .hamburger{
        display:block;

        width:35px;
        height:35px;

        font-size:30px;

        flex-shrink:0;
    }

    /* Logo */

    .logo{
        display:flex;
        align-items:center;
    }

    .logo img{
        width:90px;
        height:auto;
    }

    /* Hide Desktop Menu */

    .anchors{
        display:none;
    }

    /* Hide Join Button */

    .btn{
        display:none;
    }

}

/* =========================
   MOBILE SIDE MENU
========================= */

.mobile-menu{

    position:fixed;

    top:0;
    left:0;

    width:280px;
    height:100vh;

    background:#080808;

    z-index:10000;

    padding:25px 25px;

    transform:translateX(-100%);

    transition:transform .4s ease;

    box-shadow:10px 0 40px rgba(0,0,0,.6);

    overflow-y:auto;
}

.mobile-menu.active{

    transform:translateX(0);

}


/* CLOSE BUTTON */

.close-menu{

    position:absolute;

    top:18px;
    right:20px;

    background:none;

    border:none;

    color:#D4AF37;

    font-size:36px;

    cursor:pointer;

    line-height:1;
}


/* MENU LOGO */

.mobile-menu-logo{

    text-align:center;

    margin-top:25px;

    margin-bottom:30px;

}

.mobile-menu-logo img{

    width:100px;

}


/* LINKS */

.mobile-links{

    display:flex;

    flex-direction:column;

    gap:0;

}

.mobile-links a{

    text-decoration:none;

    color:#fff;

    font-size:16px;

    font-weight:600;

    padding:17px 5px;

    border-bottom:1px solid rgba(255,255,255,.12);

    transition:.3s;

}

.mobile-links a:hover{

    color:#D4AF37;

    padding-left:12px;

}


/* JOIN BUTTON */

.mobile-links .mobile-join{

    margin-top:25px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #D4AF37,
        #F5D76E
    );

    color:#000;

    border:none;

    border-radius:30px;

    padding:14px;

}


/* OVERLAY */

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    z-index:9999;

    opacity:0;

    visibility:hidden;

    transition:.3s;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}


/* MOBILE ONLY */

@media(min-width:769px){

    .mobile-menu,
    .menu-overlay{

        display:none;

    }

}

/* ==========================================
   FINAL MOBILE HERO
========================================== */

@media (max-width: 768px) {

    .herosection {
        min-height: 100svh;
        height: auto;

        padding: 120px 20px 55px;

        justify-content: center;
        align-items: center;
        text-align: center;

        background-position: 62% center;
        background-size: cover;
    }

    .herosection h1 {
        width: 100%;
        max-width: 400px;

        font-size: clamp(42px, 12vw, 58px);
        line-height: 1.05;

        padding-top: 0;
        margin: 0;
    }

    .sentence {
        width: 100%;
        max-width: 380px;
        margin-top: 22px;
    }

    .sentence p {
        width: 100%;

        font-size: 18px;
        line-height: 1.6;

        margin: 0;
    }

    .btns {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 16px;
        margin-top: 30px;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;

        padding: 16px 20px;

        text-align: center;
        font-size: 16px;
    }
}


/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 480px) {

    .herosection {
        padding: 110px 18px 45px;

        background-position: 64% center;
    }

    .herosection h1 {
        font-size: 43px;
        line-height: 1.06;
    }

    .sentence {
        max-width: 340px;
        margin-top: 20px;
    }

    .sentence p {
        font-size: 17px;
        line-height: 1.55;
    }

    .btns {
        margin-top: 27px;
        gap: 14px;
    }

    .hero-btn {
        max-width: 270px;
        padding: 15px 18px;
    }
}

@media (max-width: 768px){

    .herosection{
        padding: 105px 18px 40px;
        min-height: 100svh;
        background-position: 63% center;
    }

    .herosection h1{
        font-size: 40px;
        line-height: 1.08;
        max-width: 380px;
    }

    .sentence{
        margin-top: 18px;
        max-width: 350px;
    }

    .sentence p{
        font-size: 16px;
        line-height: 1.5;
    }

    .btns{
        margin-top: 25px;
        gap: 12px;
    }

    .hero-btn{
        max-width: 270px;
        padding: 14px 18px;
        font-size: 15px;
    }
}

/* ==========================================
   FINAL PRELOADER MOBILE ALIGNMENT
========================================== */

@media (max-width: 768px) {

    #preloader {
        height: 100svh;
        min-height: 100svh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    .loader-content {
        width: min(90%, 360px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: translateY(-35px);
    }

    .loader-content img {
        width: 90px;
        max-width: 25vw;
        height: auto;
        margin-bottom: 16px;
    }

    .loader-content h2 {
        font-size: 23px;
        line-height: 1.2;
        margin: 0 0 8px;
        letter-spacing: 2px;
    }

    .loader-content p {
        font-size: 13px;
        line-height: 1.5;
        margin: 0 0 18px;
        letter-spacing: 2px;
    }

    .loader-bar {
        width: min(280px, 75vw);
        height: 5px;
        margin: 0 auto;
    }

    #loadingText {
        font-size: 18px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {

    .loader-content {
        transform: translateY(-30px);
    }

    .loader-content img {
        width: 82px;
    }

    .loader-content h2 {
        font-size: 21px;
    }

    .loader-content p {
        font-size: 12px;
    }

    .loader-bar {
        width: 250px;
    }

    #loadingText {
        font-size: 17px;
    }
}

/* ==========================================
   FINAL RESPONSIVE OVERFLOW FIX
========================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.gallery-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.gallery-top,
.gallery-middle,
.gallery-bottom {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.gallery-box,
.gallery-banner {
    max-width: 100%;
    box-sizing: border-box;
}

.gallery-box img,
.gallery-banner img {
    max-width: 100%;
}

/* ==========================================
   FINAL HORIZONTAL OVERFLOW FIX
========================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
}

section,
header,
footer,
main,
.navbar,
.gallery-section,
.trainer-section,
.footer {
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevent AOS animations from creating side overflow */
[data-aos] {
    max-width: 100%;
}

/* Mobile */
@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .navbar {
        width: 100%;
        max-width: 100%;
    }

    .herosection,
    .offer-section,
    .benefits-section,
    .why-section,
    .pricing-section,
    .gallery-section,
    .trainer-section,
    .contact-section,
    .footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* ==========================================
   CONTACT - MOBILE FIX
========================================== */

@media (max-width: 768px){

    .contact-section{
        width:100%;
        max-width:100%;
        min-height:auto;
        padding:70px 18px 60px;
        overflow:hidden;
    }

    .contact-heading{
        width:100%;
        max-width:100%;
        text-align:center;
        margin-bottom:35px;
    }

    .contact-heading h2{
        font-size:30px;
        line-height:1.2;
    }

    .contact-heading p{
        font-size:15px;
        line-height:1.5;
    }

    .contact-wrapper{
        width:100%;
        max-width:100%;
        display:flex;
        flex-direction:column;
        gap:30px;
    }

    .contact-info,
    .contact-form{
        width:100%;
        max-width:100%;
    }

    .contact-box{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
    }

    .map-box{
        width:100%;
        max-width:100%;
        margin-top:30px;
    }

    .map-box iframe{
        width:100%;
        max-width:100%;
        height:300px;
        display:block;
    }
}

/* FINAL MOBILE HEADER FIX */
@media (max-width: 768px){

    .navbar{
        height: 90px;
        padding: 12px 20px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
    }

    .hamburger{
        width: 35px;
        height: 35px;
        font-size: 30px;
    }

    .logo img{
        width: 75px;
        height: auto;
        display: block;
    }

}

@media (max-width: 768px) {

    .contact-box .contact-details p {
        font-size: 18px;
        line-height: 1.6;
    }

    .contact-box .contact-details h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

}

.contact-box a {
    color: #fff;
    text-decoration: none;

}

@media (max-width: 768px) {

    .contact-details h3 {
        margin-bottom: 10px;
    }

    .contact-details p {
        margin: 4px 0;
        line-height: 1.5;
    }

}

/* EMAIL RESPONSIVE FIX */
@media (max-width: 768px) {

    .contact-box p,
    .contact-box p a {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-box p a {
        font-size: 16px;
        line-height: 1.5;
    }

}
/* =====================================================
   CONTACT - SMALL PHONE LAYOUT FIX
   Keeps desktop/tablet styles unchanged.
===================================================== */
@media (max-width: 480px) {
    .contact-section {
        padding: 55px 16px 70px;
        overflow-x: hidden;
    }

    .contact-wrapper {
        gap: 20px;
    }

    .contact-info {
        width: 100%;
        min-width: 0;
    }

    .contact-box {
        width: 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: 68px minmax(0, 1fr);
        align-items: center;
        column-gap: 18px;
        padding: 24px 20px;
        margin: 0;
        min-height: 155px;
        overflow: hidden;
    }

    .contact-box > i {
        width: 68px;
        height: 68px;
        min-width: 68px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        font-size: 27px;
    }

    .contact-box > div,
    .contact-box .contact-details {
        min-width: 0;
        width: 100%;
    }

    .contact-box h3,
    .contact-box .contact-details h3 {
        font-size: 25px;
        line-height: 1.15;
        margin: 0 0 9px;
    }

    .contact-box p,
    .contact-box .contact-details p,
    .contact-box a,
    .contact-box p a {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-size: 16px;
        line-height: 1.55;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    /* Keep the long email inside the card. */
    .contact-box a[href^="mailto:"] {
        font-size: 14px;
        letter-spacing: 0;
    }

    /* Address and hours should use the available text column. */
    .contact-box .contact-details p + p {
        margin-top: 2px;
    }

    .contact-form {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 360px) {
    .contact-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .contact-box {
        grid-template-columns: 58px minmax(0, 1fr);
        column-gap: 13px;
        padding: 21px 16px;
    }

    .contact-box > i {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 23px;
    }

    .contact-box h3,
    .contact-box .contact-details h3 {
        font-size: 22px;
    }

    .contact-box p,
    .contact-box .contact-details p,
    .contact-box a,
    .contact-box p a {
        font-size: 14px;
    }

    .contact-box a[href^="mailto:"] {
        font-size: 12.5px;
    }
}


/* ==========================================
   MOBILE BACK-TO-TOP BUTTON FIX
   Keeps the arrow clear of the WhatsApp button
========================================== */

@media (max-width: 768px) {
    .back-top {
        width: 54px;
        height: 54px;
        right: 1rem;
        bottom: 105px;
        font-size: 21px;
        z-index: 10000;
    }
}

@media (max-width: 360px) {
    .back-top {
        width: 50px;
        height: 50px;
        right: 78px;
        bottom: 80px;
        font-size: 20px;
    }
}

/* CONTACT SCROLL POSITION FIX */
#contact-us {
    scroll-margin-top: 100px;
}
