:root{
    --blue:#1198f5;
    --dark:#222;
    --muted:#747474;
    --red:#f00808;
    --light:#f7fbff;
    --border:#dce8f2;
}

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Poppins,Arial,sans-serif;
    color:#222;
    background:#fff;
    font-size:16px;
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1380px,90%);
    margin:auto;
}

/* ================= HEADER ================= */

header{
    min-height:76px;
    background:#fff;
    display:flex;
    align-items:center;
    border-bottom:1px solid #f0f0f0;
    position:relative;
    z-index:1000;
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    line-height:1.05;
    flex-shrink:0;
}

.logo-mark{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--blue);
    position:relative;
}

.logo-mark:after{
    content:"";
    position:absolute;
    width:12px;
    height:12px;
    background:white;
    border-radius:50%;
    left:9px;
    top:9px;
    box-shadow:9px 9px 0 -1px white;
}

.logo span{
    display:block;
    font-size:16px;
    letter-spacing:.2px;
}

.logo b{
    font-size:18px;
    color:#178ee3;
}

.menu{
    display:flex;
    align-items:center;
    gap:28px;
    font-size:16px;
    color:#555;
}

.menu a{
    transition:.3s;
}

.menu a:hover{
    color:var(--blue);
}

.phone{
    font-size:16px;
    font-weight:600;
    color:#444;
    white-space:nowrap;
}

/* MOBILE MENU BUTTON */

.menu-toggle{
    display:none;
    width:45px;
    height:42px;
    border:0;
    border-radius:5px;
    background:var(--blue);
    color:#fff;
    font-size:25px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
}

/* ================= HERO ================= */

.hero{
    padding:70px 0 58px;
    background-image:radial-gradient(#d8e5ee .8px,transparent .8px);
    background-size:11px 11px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.kicker{
    font-size:16px;
    color:#777;
    text-transform:uppercase;
    margin-bottom:5px;
}

.hero h1{
    font-size:48px;
    line-height:1.15;
    color:#1698f4;
    letter-spacing:-1.8px;
}

.hero h1 span{
    color:#252525;
}

.hero p{
    font-size:16px;
    color:#606060;
    max-width:540px;
    margin:15px 0;
}

.locations{
    font-size:16px;
    color:#168de2;
    font-weight:600;
    margin:15px 0;
}

.btn{
    display:inline-block;
    background:var(--blue);
    color:white;
    border:0;
    border-radius:5px;
    padding:12px 20px;
    font-size:16px;
    font-weight:600;
    box-shadow:0 4px 12px #1198f533;
    transition:.3s;
}

.btn:hover{
    background:#087fcf;
    transform:translateY(-2px);
}

.hero-card{
    background:white;
    border-radius:13px;
    padding:10px;
    box-shadow:0 9px 30px #65a9d72e;
}

.hero-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:8px;
}

/* ================= PROMO ================= */

.promo{
    padding:0 0 25px;
}

.offer{
    background:#f10909;
    color:#fff;
    border-radius:10px;
    padding:30px 42px;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 24px #f00a0a22;
}

.offer:before{
    content:"";
    position:absolute;
    inset:-50%;
    background:repeating-linear-gradient(
        135deg,
        transparent 0 14px,
        #ffffff12 15px 16px
    );
    transform:rotate(2deg);
}

.offer-inner{
    position:relative;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:30px;
    align-items:center;
}

.badge{
    font-size:16px;
    text-transform:uppercase;
    margin-bottom:5px;
}

.discount{
    font-size:52px;
    font-weight:800;
    line-height:1;
}

.discount small{
    font-size:18px;
    vertical-align:middle;
}

.offer p{
    font-size:16px;
    margin:12px 0;
}

.code{
    display:inline-block;
    border:1px solid #fff8;
    border-radius:5px;
    padding:10px 14px;
    font-size:16px;
}

.code b{
    background:#fff;
    color:#e60000;
    padding:4px 7px;
    margin-left:5px;
    border-radius:3px;
}

.locations-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    font-size:16px;
}

.locations-list div:before{
    content:"◉";
    margin-right:7px;
    font-size:10px;
}

/* ================= STATS ================= */

.stats{
    background:#ed0707;
    color:white;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat{
    padding:25px 15px;
    text-align:center;
    border-right:2px solid #ffffff35;
}

.stat b{
    font-size:32px;
    display:block;
    line-height:1.1;
}

.stat span{
    font-size:16px;
    text-transform:uppercase;
}

/* ================= COMMON SECTIONS ================= */

.section{
    padding:82px 0;
}

.section-title{
    text-align:center;
    margin-bottom:35px;
}

.section-title h2{
    font-size:32px;
    line-height:1.2;
}

.section-title h2:after{
    content:"";
    display:block;
    width:40px;
    height:3px;
    background:var(--blue);
    margin:10px auto;
    border-radius:2px;
}

.section-title p{
    font-size:16px;
    color:#888;
    max-width:850px;
    margin:auto;
}

/* ================= STEPS ================= */

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:42px;
    position:relative;
}

.steps:before{
    content:"";
    position:absolute;
    left:10%;
    right:10%;
    top:21px;
    border-top:1px solid #1198f5;
    z-index:0;
}

.step{
    text-align:center;
    position:relative;
    z-index:1;
}

.icon{
    width:55px;
    height:55px;
    border:1px solid var(--blue);
    border-radius:50%;
    display:grid;
    place-items:center;
    margin:0 auto 15px;
    background:white;
    color:var(--blue);
    font-size:22px;
}

.step h4{
    font-size:18px;
    margin-bottom:8px;
}

.step p{
    font-size:16px;
    color:#888;
}

/* ================= ABOUT ================= */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    align-items:center;
}

.about-img{
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 8px 20px #0001;
}

.about-img img{
    height:300px;
    width:100%;
    object-fit:cover;
}

.about h2{
    font-size:32px;
}

.about h2:after{
    content:"";
    display:block;
    width:40px;
    height:3px;
    background:var(--blue);
    margin:10px 0;
}

.about p{
    font-size:16px;
    color:#777;
    margin:12px 0 18px;
}

/* ================= PRICING ================= */

.pricing{
    background-image:radial-gradient(#d8e5ee .8px,transparent .8px);
    background-size:11px 11px;
}

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

.price-card{
    background:#fff;
    border:1px solid #d9e5ed;
    border-radius:8px;
    padding:25px;
    box-shadow:0 5px 15px #00000008;
}

.price-card.featured{
    border-color:var(--blue);
    box-shadow:0 7px 22px #1198f522;
}

.price-card h4{
    font-size:22px;
}

.price-card .sub{
    font-size:16px;
    color:#777;
}

.price{
    font-size:35px;
    color:var(--blue);
    font-weight:800;
    margin:8px 0 12px;
}

.price small{
    font-size:16px;
    color:#777;
    font-weight:400;
}

.features{
    list-style:none;
    margin:12px 0 20px;
}

.features li{
    font-size:16px;
    color:#666;
    margin:8px 0;
}

.features li:before{
    content:"✓";
    color:var(--blue);
    margin-right:8px;
    font-weight:800;
}

.price-card .btn{
    width:100%;
    text-align:center;
}

/* ================= SERVICES ================= */

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service{
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 3px 13px #00000012;
    background:#fff;
}

.service img{
    height:200px;
    width:100%;
    object-fit:cover;
}

.service .body{
    padding:18px;
}

.service h4{
    font-size:20px;
}

.service p{
    font-size:16px;
    color:#777;
    margin-top:8px;
}

/* ================= INSTRUCTOR ================= */

.instructor{
    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:30px;
    align-items:center;
}

.instructor-photo{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
}

.instructor-photo img{
    height:220px;
    width:100%;
    object-fit:cover;
    border-radius:6px;
}

.instructor h2{
    font-size:32px;
}

.instructor p{
    font-size:16px;
    color:#777;
    margin:10px 0;
}

.checks{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:18px 0;
}

.checks div{
    font-size:16px;
    font-weight:600;
}

.checks span{
    display:inline-grid;
    place-items:center;
    width:28px;
    height:28px;
    background:#f1f6f9;
    border-radius:50%;
    margin-right:7px;
}

/* ================= REVIEWS ================= */

.reviews{
    background:#fafcff;
}

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

.review{
    background:#fff;
    border:1px solid #e7edf2;
    border-radius:6px;
    padding:18px;
    box-shadow:0 3px 10px #00000007;
}

.user{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.avatar{
    width:35px;
    height:35px;
    border-radius:50%;
    object-fit:cover;
}

.user b{
    font-size:16px;
}

.review p{
    font-size:16px;
    color:#777;
}

/* ================= FAQ ================= */

.faq{
    width:min(720px,100%);
    margin:auto;
}

.faq details{
    border:1px solid #e3e9ee;
    border-radius:5px;
    margin:10px 0;
    background:#fff;
}

.faq summary{
    list-style:none;
    cursor:pointer;
    padding:14px 16px;
    font-size:16px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
    gap:15px;
}

.faq summary::-webkit-details-marker{
    display:none;
}

.faq summary:after{
    content:"+";
    color:var(--blue);
    font-size:22px;
}

.faq details[open] summary:after{
    content:"−";
}

.faq details p{
    padding:0 16px 15px;
    font-size:16px;
    color:#777;
}

/* ================= FOOTER ================= */

footer{
    background:#292929;
    color:#fff;
    padding:40px 0 25px;
    text-align:center;
}

.footer-logo{
    font-size:22px;
    font-weight:800;
}

.footer-logo span{
    color:var(--blue);
}

footer p{
    font-size:16px;
    color:#aaa;
}

.footer-btns{
    margin:18px 0 28px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    text-align:left;
    gap:30px;
    border-top:1px solid #ffffff12;
    padding-top:22px;
}

.footer-grid h5{
    font-size:16px;
    text-transform:uppercase;
    color:#aaa;
    margin-bottom:10px;
}

.footer-grid p{
    font-size:16px;
    margin:6px 0;
}

.copyright{
    margin-top:25px;
    font-size:14px;
    color:#777;
}

/* ================= FLOAT BUTTON ================= */

.float{
    position:fixed;
    right:17px;
    bottom:18px;
    width:45px;
    height:45px;
    border-radius:50%;
    background:#16cf68;
    color:#fff;
    display:grid;
    place-items:center;
    font-weight:800;
    z-index:999;
    box-shadow:0 5px 15px #0002;
}

/* ================= TABLET ================= */

@media(max-width:900px){

    header{
        min-height:70px;
        padding:12px 0;
    }

    .menu{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        border-top:1px solid #eee;
        border-bottom:1px solid #eee;
        box-shadow:0 8px 20px #00000012;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:10px 5%;
    }

    .menu.active{
        display:flex;
    }

    .menu a{
        padding:14px 0;
        border-bottom:1px solid #f0f0f0;
        font-size:16px;
    }

    .menu a:last-child{
        border-bottom:0;
    }

    .menu-toggle{
        display:flex;
        order:3;
    }

    .phone{
        margin-left:auto;
        font-size:16px;
    }

    .hero{
        padding:40px 0;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .hero h1{
        font-size:40px;
    }

    .hero-card img{
        height:280px;
    }

    .offer-inner{
        grid-template-columns:1fr;
    }

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

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

    .stat{
        border-bottom:1px solid #ffffff30;
    }

    .section{
        padding:55px 0;
    }

    .steps{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .steps:before{
        display:none;
    }

    .about-grid,
    .instructor{
        grid-template-columns:1fr;
    }

    .price-grid,
    .service-grid{
        grid-template-columns:1fr;
    }

    .service-grid{
        gap:20px;
    }

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

    .instructor-photo img{
        height:200px;
    }
}

/* ================= MOBILE ================= */

@media(max-width:520px){

    .container{
        width:92%;
    }

    header{
        min-height:65px;
    }

    .logo{
        gap:7px;
    }

    .logo-mark{
        width:35px;
        height:35px;
    }

    .logo span{
        font-size:12px;
    }

    .logo b{
        font-size:14px;
    }

    .phone{
        display:none;
    }

    .menu-toggle{
        width:42px;
        height:40px;
        font-size:23px;
    }

    .menu{
        top:65px;
    }

    .hero{
        padding:35px 0;
    }

    .hero h1{
        font-size:32px;
        letter-spacing:-1px;
    }

    .hero p,
    .locations,
    .kicker{
        font-size:16px;
    }

    .hero-card img{
        height:220px;
    }

    .offer{
        padding:25px 20px;
    }

    .discount{
        font-size:42px;
    }

    .locations-list{
        grid-template-columns:1fr 1fr;
        gap:8px;
        font-size:16px;
    }

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

    .stat{
        padding:20px 7px;
    }

    .stat b{
        font-size:25px;
    }

    .stat span{
        font-size:14px;
    }

    .section{
        padding:45px 0;
    }

    .section-title h2,
    .about h2,
    .instructor h2{
        font-size:27px;
    }

    .section-title p{
        font-size:16px;
    }

    .steps{
        grid-template-columns:1fr 1fr;
        gap:25px 12px;
    }

    .step h4{
        font-size:17px;
    }

    .step p{
        font-size:16px;
    }

    .about-img img{
        height:220px;
    }

    .price-card{
        padding:22px;
    }

    .price-card h4{
        font-size:22px;
    }

    .price{
        font-size:32px;
    }

    .service img{
        height:220px;
    }

    .service h4{
        font-size:20px;
    }

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

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:20px;
    }

    .footer-logo{
        font-size:20px;
    }

    .footer-grid p,
    footer p{
        font-size:16px;
    }
}



.service-video {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.service-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .service-video {
        height: 220px;
    }
}



.reviews {
    overflow: hidden;
}

.review-slider {
    width: 100%;
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviewScroll 25s linear infinite;
}

.review {
    flex: 0 0 calc((100vw - 120px) / 4);
    max-width: 320px;
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.review-track:hover {
    animation-play-state: paused;
}

.user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review p {
    margin: 0;
    line-height: 1.7;
}

@keyframes reviewScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

/* Tablet */
@media (max-width: 991px) {
    .review {
        flex: 0 0 calc((100vw - 72px) / 2);
        max-width: 400px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .review-track {
        gap: 16px;
        animation-duration: 20s;
    }

    .review {
        flex: 0 0 calc(100vw - 40px);
        min-width: 0;
        padding: 24px;
    }
}