/* ===========================
   CLEANING BEAR
   STYLE.CSS
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f7f9fc;

    color:#222;

    overflow-x:hidden;

    line-height:1.6;

}

.video-section{

    padding:100px 0;

    background:#ffffff;

    text-align:center;

}

.video-section video{

    width:30%;

    max-width:900px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

img{

    max-width:100%;

    display:block;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

/* ===========================
HEADER
=========================== */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    background:white;

    z-index:999;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{

    font-size:30px;

    font-weight:800;

    color:#0f6fff;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:#333;

    text-decoration:none;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#0f6fff;

}

.call-button{

    background:#20c15a;

    color:white;

    padding:14px 24px;

    border-radius:40px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.call-button:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

/* ===========================
HERO
=========================== */

.hero{

    height:100vh;

    background:url("images/hero.jpg") center center/cover;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    color:white;

    width:90%;

    max-width:850px;

}

.hero h1{

    font-size:70px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:20px;

}

.hero p{

    font-size:24px;

    margin-bottom:45px;

}

.buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#01ff56;

    color:white;

    text-decoration:none;

    padding:18px 40px;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.btn-secondary{

    background:white;

    color:#0f6fff;

    text-decoration:none;

    padding:18px 40px;

    border-radius:50px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.btn-secondary:hover{

    background:#20c15a;

    color:white;

}

/* ===========================
SECTION
=========================== */

section{

    padding:110px 0;

}

section h2{

    text-align:center;

    font-size:46px;

    margin-bottom:60px;

    color:#222;

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:1000px){

.hero h1{

font-size:52px;

}

.hero p{

font-size:20px;

}

nav{

display:none;

}

}

@media(max-width:700px){

.hero{

padding:40px;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:18px;

}

.logo{

font-size:24px;

}

.call-button{

padding:12px 18px;

font-size:14px;

}

section{

padding:80px 0;

}

section h2{

font-size:34px;

}

.buttons{

flex-direction:column;

}

.btn-primary,

.btn-secondary{

width:100%;

text-align:center;

}

}

/* ==========================================
   SERVICES
========================================== */

.services{
    background:#ffffff;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.07);

    cursor:pointer;

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(15,111,255,.18);

}

.card{

    font-size:55px;

}

.card h3{

    margin-top:20px;

    margin-bottom:15px;

    font-size:26px;

    color:#222;

}

.card p{

    color:#666;

    line-height:1.3;

}


/* ==========================================
   WHY US
========================================== */

.about{

    background:#f7f9fc;

}

.features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.features div{

    background:white;

    padding:28px;

    border-radius:18px;

    font-size:20px;

    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.3s;

}

.features div:hover{

    transform:scale(1.03);

    background:#0F6FFF;

    color:white;

}


/* ==========================================
   BEFORE / AFTER
========================================== */

.before-after{

    background:white;

}

.gallery-placeholder{

    height:500px;

    border-radius:25px;

    background:linear-gradient(135deg,#dfe9f3,#ffffff);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    font-weight:700;

    color:#999;

    border:4px dashed #d8d8d8;

}


/* ==========================================
   GALLERY
========================================== */

.gallery{

    background:#f7f9fc;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:22px;

}

.photo{

    height:260px;

    background:white;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:600;

    color:#999;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.07);

}

.photo:hover{

    transform:scale(1.04);

    box-shadow:0 25px 55px rgba(0,0,0,.18);

}


/* ==========================================
   REVIEWS
========================================== */

.reviews{

    background:white;

}

.review-cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.review{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 10px 28px rgba(0,0,0,.08);

    transition:.3s;

}

.review:hover{

    transform:translateY(-8px);

}

.review p{

    margin:20px 0;

    color:#555;

    font-size:18px;

}

.review strong{

    color:#0F6FFF;

}


/* ==========================================
   CTA
========================================== */

.cta{

    background:linear-gradient(135deg,#0F6FFF,#2b8cff);

    color:white;

    text-align:center;

}

.cta h2{

    color:white;

    margin-bottom:35px;

    font-size:48px;

}

.cta .btn-primary{

    background:#20C15A;

}

.cta .btn-primary:hover{

    background:#18a64c;

}


/* ==========================================
   SMALL ANIMATIONS
========================================== */

.card,
.review,
.photo,
.features div{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================
   CONTACT
========================================== */

.contact{
    background:#f4f8fc;
}

.contact form{
    max-width:800px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact input,
.contact textarea{

    width:100%;

    padding:18px 22px;

    border:2px solid #e4e8ef;

    border-radius:14px;

    font-size:17px;

    font-family:'Poppins',sans-serif;

    transition:.3s;

    outline:none;

    background:#fff;

}

.contact textarea{

    min-height:180px;

    resize:vertical;

}

.contact input:focus,
.contact textarea:focus{

    border-color:#0F6FFF;

    box-shadow:0 0 0 5px rgba(15,111,255,.12);

}

.contact button{

    background:#20C15A;

    color:white;

    border:none;

    border-radius:14px;

    padding:20px;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.contact button:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}


/* ==========================================
   FOOTER
========================================== */

footer{

    background:#10253d;

    color:white;

    text-align:center;

    padding:60px 20px;

}

footer h3{

    font-size:34px;

    margin-bottom:15px;

}

footer p{

    margin:8px 0;

    color:#d9d9d9;

}


/* ==========================================
   FLOATING CALL BUTTON
========================================== */

.floating-call{

    position:fixed;

    right:25px;

    bottom:25px;

    width:70px;

    height:70px;

    border-radius:50%;

    background:#20C15A;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    font-size:32px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

    animation:pulse 2s infinite;

}

.floating-call:hover{

    transform:scale(1.1);

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(32,193,90,.55);

}

70%{

box-shadow:0 0 0 22px rgba(32,193,90,0);

}

100%{

box-shadow:0 0 0 0 rgba(32,193,90,0);

}

}


/* ==========================================
   GLASS EFFECT
========================================== */

.glass{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.25);

}


/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:#0F6FFF;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0059d6;

}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.cards,
.gallery-grid,
.review-cards,
.features{

grid-template-columns:1fr;

}

.gallery-placeholder{

height:260px;

font-size:22px;

padding:20px;

text-align:center;

}

.hero{

height:auto;

min-height:100vh;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

.cta h2{

font-size:34px;

}

.contact form{

padding:0 10px;

}

.floating-call{

width:60px;

height:60px;

font-size:28px;

right:18px;

bottom:18px;

}

}


/* ==========================================
   SMOOTH APPEAR
========================================== */

.fade{

opacity:0;

transform:translateY(40px);

transition:all .8s ease;

}

.fade.show{

opacity:1;

transform:translateY(0);

}


/* ==========================================
   IMAGE HOVER
========================================== */

.photo{

overflow:hidden;

}

.photo img{

width:100%;

height:100%;

object-fit:cover;

transition:transform .5s;

}

.photo:hover img{

transform:scale(1.08);

}

.video-buttons{

    margin-top:35px;

    display:flex;

    justify-content:center;

}

.video-buttons a{

    padding:18px 35px;

    border-radius:50px;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.video-buttons a:hover{

    transform:translateY(-4px);

}

/*==========================
    PREMIUM BEFORE / AFTER
===========================*/

.before-after{
    padding:80px 20px;
    text-align:center;
}

.before-after h2{
    font-size:42px;
    margin-bottom:40px;
}

.ba-slider{

    position:relative;

    width:100%;

    max-width:900px;

    margin:auto;

    overflow:hidden;

    border-radius:25px;

    aspect-ratio:16/10;

    cursor:ew-resize;

    box-shadow:0 20px 50px rgba(0,0,0,.2);

}

.ba-slider img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    pointer-events:none;

}

.after-image{

    position:absolute;

    top:0;

    left:0;

    width:50%;

    height:100%;

    overflow:hidden;

}

.after-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.slider-line{

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:4px;

    height:100%;

    background:white;

    z-index:10;

}

.slider-button{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:70px;

    height:70px;

    border-radius:50%;

    background:#0F6FFF;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:bold;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

}

@media(max-width:768px){

    .before-after{

        padding:50px 15px;

    }

    .before-after h2{

        font-size:30px;

    }

    .ba-slider{

        aspect-ratio:3/4;

        border-radius:18px;

    }

    .slider-button{

        width:55px;

        height:55px;

        font-size:22px;

    }

}

@media (max-width:768px){

    .video-section{

        padding:40px 10px;

    }

    .video-section video{

        width:100%;

        max-width:100%;

        border-radius:15px;

    }

}