/*==================================================
GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#F4F7FC;
    color:#333;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    color:inherit;

}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

.fima-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*==================================================
NAVBAR
==================================================*/

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:999;
    box-shadow:0 5px 25px rgba(0,0,0,.08);

}

.nav-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;

}

.logo{

    display:flex;
    align-items:center;

}

.logo img{

    width:70px;
    margin-right:15px;

}

.logo-text h2{

    font-size:28px;
    color:#001B48;
    font-weight:700;

}

.logo-text span{

    color:#666;
    font-size:14px;

}

nav ul{

    display:flex;
    list-style:none;
    gap:35px;

}

nav ul li a{

    color:#001B48;
    font-weight:600;
    position:relative;
    transition:.3s;

}

nav ul li a::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#024CAA;
    transition:.3s;

}

nav ul li a:hover{

    color:#024CAA;

}

nav ul li a:hover::after{

    width:100%;

}

.nav-button{

    display:flex;
    align-items:center;
    gap:15px;

}

/*==================================================
MOBILE NAV TOGGLE (hamburger)
==================================================*/

.nav-toggle{

    display:none;
    flex-direction:column;
    justify-content:center;
    gap:5px;
    width:34px;
    height:34px;
    background:none;
    border:none;
    cursor:pointer;
    padding:0;

}

.nav-toggle span{

    display:block;
    width:100%;
    height:3px;
    background:#001B48;
    border-radius:3px;
    transition:.3s;

}

.nav-toggle.open span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2){
    opacity:0;
}

.nav-toggle.open span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

.nav-button-mobile{
    display:none;
}

.btn-login{

    color:#001B48;
    font-weight:600;
    transition:.3s;

}

.btn-login:hover{

    color:#024CAA;

}

.btn-register{

    padding:12px 28px;
    background:#001B48;
    color:white;
    border-radius:10px;
    transition:.35s;

}

.btn-register:hover{

    background:#024CAA;

}

/*==================================================
HERO
==================================================*/

.hero{

    padding-top:170px;
    padding-bottom:120px;

}

.hero-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;

}

.hero-left{

    flex:1;

}

.hero-right{

    flex:1;
    display:flex;
    justify-content:center;

}

.badge{

    display:inline-block;
    padding:10px 22px;
    background:#EAF4FF;
    color:#024CAA;
    border-radius:40px;
    font-weight:600;
    margin-bottom:30px;

}

.hero-left h1{

    font-size:62px;
    color:#001B48;
    line-height:1.15;
    margin-bottom:25px;

}

.hero-left h1 span{

    color:#024CAA;

}

.hero-left p{

    color:#666;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;

}

.hero-button{

    display:flex;
    gap:20px;
    margin-bottom:50px;

}

.btn-primary{

    background:#001B48;
    color:white;
    padding:16px 34px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;

}

.btn-primary:hover{

    background:#024CAA;

}

.btn-secondary{

    border:2px solid #001B48;
    color:#001B48;
    padding:16px 34px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;

}

.btn-secondary:hover{

    background:#001B48;
    color:white;

}

.hero-counter{

    display:flex;
    gap:60px;

}

.hero-counter h2{

    font-size:48px;
    color:#001B48;

}

.hero-counter p{

    color:#666;
    margin-top:5px;

}

.hero-right img{

    width:100%;
    max-width:520px;
    height:430px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 30px 60px rgba(0,0,0,.18);
    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
SECTION TITLE
==================================================*/

.section-title{

    text-align:center;
    margin-bottom:70px;

}

.section-title span{

    color:#024CAA;
    font-weight:700;
    letter-spacing:1px;

}

.section-title h2{

    font-size:44px;
    margin-top:15px;
    color:#001B48;

}

.section-title p{

    max-width:700px;
    margin:20px auto 0;
    line-height:1.8;
    color:#666;

}

/*==================================================
ABOUT
==================================================*/

.about{

    padding:110px 0;
    background:white;

}

.about-wrapper{

    display:flex;
    align-items:center;
    gap:80px;

}

.about-image{

    flex:1;

}

.about-image img{

    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-content{

    flex:1;

}

.about-content h3{

    font-size:38px;
    color:#001B48;
    margin-bottom:20px;

}

.about-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:35px;

}

.about-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.about-card{

    background:#F4F7FC;
    padding:25px;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.about-card:hover{

    background:#024CAA;
    transform:translateY(-8px);
    color:white;

}

.about-card h4{

    margin:15px 0 10px;

}

.about-card:hover p{

    color:white;

}
/*==================================================
MEMBERSHIP
==================================================*/

.membership{

    padding:120px 0;
    background:#F4F7FC;

}

.membership-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

    margin-top:60px;

}

.membership-card{

    background:#fff;

    border-radius:25px;

    padding:40px 35px;

    position:relative;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

.membership-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.membership-card.active{

    background:#001B48;

}

.popular{

    position:absolute;

    top:18px;

    right:-45px;

    background:#FFD43B;

    color:#001B48;

    width:180px;

    text-align:center;

    padding:8px;

    font-size:13px;

    font-weight:700;

    transform:rotate(45deg);

}

.package-name{

    font-size:30px;

    font-weight:700;

    color:#001B48;

    margin-top:10px;

}

.membership-card.active .package-name{

    color:white;

}

.package-category{

    margin-top:10px;

    display:inline-block;

    background:#EAF4FF;

    color:#024CAA;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.membership-card.active .package-category{

    background:white;

    color:#001B48;

}

.price{

    font-size:46px;

    font-weight:700;

    color:#024CAA;

    margin:25px 0;

}

.membership-card.active .price{

    color:white;

}

.membership-card ul{

    list-style:none;

    margin-bottom:35px;

}

.membership-card ul li{

    padding:10px 0;

    border-bottom:1px solid #eee;

    color:#555;

}

.membership-card.active ul li{

    color:white;

    border-bottom:1px solid rgba(255,255,255,.15);

}

.btn-package{

    display:block;

    width:100%;

    text-align:center;

    padding:16px;

    border-radius:12px;

    background:#024CAA;

    color:white;

    font-weight:600;

    transition:.35s;

}

.btn-package:hover{

    transform:translateY(-3px);

}

.membership-card.active .btn-package{

    background:white;

    color:#001B48;

}

/*==================================================
COACH
==================================================*/

.coach{

    padding:120px 0;

    background:white;

}

.coach-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.coach-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.coach-card:hover{

    transform:translateY(-10px);

}

.coach-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.coach-content{

    padding:25px;

}

.coach-content h3{

    color:#001B48;

    margin-bottom:8px;

}

.coach-content p{

    color:#666;

    margin-bottom:15px;

}

.coach-social{

    display:flex;

    justify-content:center;

    gap:12px;

}

.coach-social a{

    width:40px;

    height:40px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#024CAA;

    color:white;

    transition:.3s;

}

.coach-social a:hover{

    background:#001B48;

}

/*==================================================
GALLERY
==================================================*/

.gallery{

    padding:120px 0;

    background:#F4F7FC;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.gallery-grid img{

    width:100%;

    height:260px;

    object-fit:cover;

    border-radius:20px;

    transition:.35s;

    cursor:pointer;

}

.gallery-grid img:hover{

    transform:scale(1.05);

}
/*==================================================
TESTIMONIAL
==================================================*/

.testimonial{

    padding:120px 0;

    background:#ffffff;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

}

.testimonial-card{

    background:#F4F7FC;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-card img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;

}

.testimonial-card h3{

    color:#001B48;

    margin-bottom:5px;

}

.testimonial-card span{

    color:#024CAA;

    font-size:14px;

}

.testimonial-card p{

    margin-top:20px;

    line-height:1.8;

    color:#666;

}

/*==================================================
CONTACT
==================================================*/

.contact{

    padding:120px 0;

    background:#F4F7FC;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

.contact-info h3{

    font-size:38px;

    color:#001B48;

    margin-bottom:20px;

}

.contact-info p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.contact-item{

    display:flex;

    gap:18px;

    margin-bottom:25px;

}

.contact-item i{

    width:55px;

    height:55px;

    background:#024CAA;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:20px;

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #ddd;

    border-radius:10px;

    margin-bottom:20px;

    font-size:15px;

}

.contact-form textarea{

    resize:none;

    height:150px;

}

.contact-form button{

    width:100%;

    padding:16px;

    border:none;

    background:#001B48;

    color:white;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    transition:.35s;

}

.contact-form button:hover{

    background:#024CAA;

}

/*==================================================
FOOTER
==================================================*/

footer{

    background:#001B48;

    color:white;

    padding:70px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-grid h3{

    margin-bottom:20px;

}

.footer-grid p{

    color:#ddd;

    line-height:1.8;

}

.footer-grid ul{

    list-style:none;

}

.footer-grid ul li{

    margin-bottom:12px;

}

.footer-grid ul li a{

    color:#ddd;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:white;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

    color:#ddd;

}

/*==================================================
SCROLL TOP
==================================================*/

.scroll-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:50px;

    height:50px;

    background:#024CAA;

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    text-decoration:none;

    transition:.35s;

}

.scroll-top:hover{

    background:#001B48;

}

/*==================================================
DETAIL COACH
==================================================*/

.coach-detail{
    padding:140px 0 80px;
    background:#F4F7FC;
}

.coach-wrapper{
    display:grid;
    grid-template-columns:360px 1fr;
    gap:60px;
    align-items:center;
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.coach-photo{
    display:flex;
    justify-content:center;
}

.coach-photo img{
    width:100%;
    max-width:340px;
    height:440px;
    object-fit:cover;
    border-radius:20px;
}

.coach-badge{
    display:inline-block;
    padding:8px 18px;
    background:#EAF4FF;
    color:#024CAA;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.coach-info h1{
    font-size:40px;
    color:#001B48;
    margin-bottom:10px;
}

.coach-info h3{
    font-size:22px;
    color:#024CAA;
    margin-bottom:25px;
}

.coach-desc{
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
}

.coach-list{
    display:grid;
    gap:18px;
    margin-bottom:30px;
}

.coach-item{
    background:#F8FAFC;
    border-left:5px solid #024CAA;
    border-radius:12px;
    padding:18px 22px;
}

.coach-item strong{
    display:block;
    margin-bottom:6px;
    color:#001B48;
}

.coach-info .btn-primary{
    display:inline-block;
    margin-top:10px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px){

.hero-container,
.about-wrapper,
.contact-wrapper{

    grid-template-columns:1fr;
    display:grid;

}

.hero-counter{

    justify-content:center;
    flex-wrap:wrap;

}

.hero-button{

    flex-direction:column;

}

.hero-left{

    text-align:center;

}

.hero-right{

    margin-top:40px;

}

.about-list{

    grid-template-columns:1fr;

}

.membership-grid{

    grid-template-columns:1fr;

}

.coach-grid{

    grid-template-columns:1fr;

}

.gallery-grid{

    grid-template-columns:1fr;

}

.testimonial-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.nav-toggle{

    display:flex;

}

.nav-button{

    display:none;

}

nav{

    position:fixed;
    top:90px;
    left:0;
    width:100%;
    max-height:0;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 25px rgba(0,0,0,.1);
    transition:max-height .3s ease;

}

nav.open{

    max-height:calc(100vh - 90px);
    overflow-y:auto;

}

nav ul{

    flex-direction:column;
    gap:0;
    padding:10px 0;

}

nav ul li a{

    display:block;
    padding:16px 30px;

}

nav ul li a::after{

    display:none;

}

.nav-button-mobile{

    display:block;
    padding:8px 30px;

}

.nav-button-mobile .btn-register{

    display:block;
    text-align:center;

}

/*====================================
MEMBERSHIP SLIDER
====================================*/

.membershipSwiper{

    padding:20px 10px 70px;

}

.membershipSwiper .swiper-slide{

    height:auto;

    display:flex;

}

.membership-card{

    width:100%;

}

.swiper-button-next,
.swiper-button-prev{

    color:#024CAA;

}

.swiper-pagination-bullet{

    background:#024CAA;

}

.swiper-pagination-bullet-active{

    width:28px;

    border-radius:20px;

}

/*==================================================
COACH SLIDER
==================================================*/

.coachSwiper{

    padding:20px 10px 70px;

}

.coachSwiper .swiper-slide{

    height:auto;
    display:flex;

}

.coach-card{

    width:100%;

}

.coach-prev,
.coach-next{

    width:50px;
    height:50px;

    background:#fff;

    border-radius:50%;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    color:#024CAA;

}

.coach-prev::after,
.coach-next::after{

    font-size:18px;
    font-weight:bold;

}

.coach-pagination{

    bottom:10px !important;

}

.coach-pagination .swiper-pagination-bullet-active{

    background:#024CAA;

}

}

/*==================================================
PHONE (<= 640px)
==================================================*/

@media(max-width:640px){

    .nav-container{

        height:70px;

    }

    nav{

        top:70px;

    }

    nav.open{

        max-height:calc(100vh - 70px);

    }

    .logo img{

        width:50px;
        margin-right:10px;

    }

    .logo-text h2{

        font-size:20px;

    }

    .logo-text span{

        font-size:11px;

    }

    .hero{

        padding-top:110px;
        padding-bottom:70px;

    }

    .hero-left h1{

        font-size:34px;

    }

    .hero-left p{

        font-size:16px;

    }

    .hero-button{

        gap:14px;

    }

    .btn-primary,
    .btn-secondary{

        padding:14px 24px;
        text-align:center;

    }

    .hero-counter{

        gap:30px;

    }

    .hero-counter h2{

        font-size:32px;

    }

    .hero-right img{

        height:280px;

    }

    .section-title h2{

        font-size:28px;

    }

    .membership,
    .about,
    .coach{

        padding:70px 0;

    }

    .price{

        font-size:34px;

    }

    .membership-card,
    .coach-card{

        padding:28px 22px;

    }

    .footer-bottom{

        font-size:13px;
        padding:20px 15px;

    }

}