/*=====================================================
    FREEDOM CAR WASH
======================================================*/

:root{

--red:#E30613;
--red2:#ff2b38;
--black:#090909;
--black2:#121212;
--black3:#1b1b1b;
--white:#ffffff;
--gray:#bdbdbd;
--border:#2a2a2a;
--shadow:0 20px 60px rgba(0,0,0,.45);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:var(--black);
color:white;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1350px;
margin:auto;

}


/*==========================
SECTION
==========================*/

section{

padding:90px 0;

}


/*==========================
TITLE
==========================*/

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title span{

color:var(--red);
font-weight:700;
letter-spacing:2px;
font-size:14px;

}

.section-title h2{

font-size:48px;
font-weight:800;
margin-top:10px;

}

.section-title p{

margin-top:15px;
color:#bbbbbb;

}

.line{

width:90px;
height:4px;
background:var(--red);
margin:20px auto;
border-radius:20px;

}



/*==========================
BUTTON
==========================*/

.btn-red{

display:inline-flex;
align-items:center;
gap:12px;

background:var(--red);

padding:17px 38px;

border-radius:50px;

font-weight:700;

color:white;

transition:.35s;

}

.btn-red:hover{

transform:translateY(-5px);
background:#ff2535;

box-shadow:

0 15px 40px rgba(227,6,19,.4);

}

.btn-black{

display:inline-flex;
align-items:center;
gap:12px;

padding:17px 38px;

border-radius:50px;

border:2px solid white;

color:white;

transition:.35s;

}

.btn-black:hover{

background:white;
color:black;

}



/*==========================
HERO
==========================*/

.hero{

height:100vh;

position:relative;

overflow:hidden;

background:

url("../images/hero-bg.jpg")
center center/cover;

display:flex;
align-items:center;

}

.hero-overlay{

position:absolute;

width:100%;
height:100%;

background:

linear-gradient(

90deg,

rgba(0,0,0,.85),

rgba(0,0,0,.55),

rgba(0,0,0,.20)

);

}

.hero-container{

position:relative;

z-index:10;

width:90%;

max-width:1450px;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}


/*==========================
LOGO
==========================*/

.logo{

width:220px;
margin-bottom:35px;

}


/*==========================
LEFT
==========================*/

.hero-left h1{

font-size:82px;

font-weight:900;

line-height:1.05;

margin-bottom:20px;

}

.hero-left h1 span{

display:block;

color:var(--red);

}

.hero-left p{

font-size:22px;

line-height:1.7;

color:#ddd;

margin-bottom:40px;

}

.hero-feature{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-bottom:45px;

}

.hero-feature div{

background:rgba(255,255,255,.08);

backdrop-filter:blur(10px);

padding:16px 28px;

border-radius:40px;

display:flex;

align-items:center;

gap:10px;

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}

.hero-feature div:hover{

background:var(--red);

transform:translateY(-5px);

}

.hero-feature i{

font-size:18px;

}

.hero-button{

display:flex;

gap:20px;

flex-wrap:wrap;

}



/*==========================
RIGHT
==========================*/

.hero-right{

position:relative;

}

.hero-right img{

width:100%;

animation:

floatCar 4s ease-in-out infinite;

filter:

drop-shadow(0 30px 40px rgba(0,0,0,.55));

}



/*==========================
FLOAT
==========================*/

@keyframes floatCar{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}



/*==========================
STATISTIK
==========================*/

.statistik{

margin-top:-90px;

position:relative;

z-index:50;

}

.stat-card{

width:90%;

max-width:1300px;

margin:auto;

background:#ffffff;

color:#111;

border-radius:25px;

display:grid;

grid-template-columns:

repeat(4,1fr);

overflow:hidden;

box-shadow:var(--shadow);

}

.stat-item{

padding:40px;

display:flex;

align-items:center;

gap:20px;

transition:.35s;

}

.stat-item:hover{

background:#fafafa;

}

.stat-item i{

width:70px;
height:70px;

background:var(--red);

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

font-size:28px;

color:white;

}

.stat-item h2{

font-size:38px;

color:var(--red);

margin-bottom:6px;

font-weight:800;

}

.stat-item span{

font-size:15px;
color:#666;

}



/*==========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:var(--red);

border-radius:20px;

}

::-webkit-scrollbar-track{

background:#111;

}
/*=====================================================
    ABOUT
======================================================*/

.about{
    padding:120px 0;
    background:#0d0d0d;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
    transition:.4s;
}

.about-image:hover img{
    transform:scale(1.02);
}

.about-image::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border:8px solid var(--red);
    right:-25px;
    bottom:-25px;
    border-radius:25px;
    z-index:-1;
}

.section-subtitle{
    color:var(--red);
    font-weight:700;
    letter-spacing:3px;
    font-size:14px;
}

.about-content h2{
    font-size:52px;
    margin:18px 0 25px;
    font-weight:800;
}

.about-content p{
    color:#c8c8c8;
    line-height:2;
    margin-bottom:20px;
    font-size:16px;
}


/*=====================================================
    SERVICE
======================================================*/

.service{
    background:#090909;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service-card{
    position:relative;
    background:#151515;
    border:1px solid #242424;
    border-radius:24px;
    padding:40px 30px;
    overflow:hidden;
    transition:.35s;
    cursor:pointer;
}

.service-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:5px;
    background:var(--red);
    transition:.35s;
}

.service-card:hover::before{
    width:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:var(--red);
    box-shadow:0 25px 60px rgba(227,6,19,.25);
}

.service-card i{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(227,6,19,.12);
    color:var(--red);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    margin-bottom:25px;
    transition:.35s;
}

.service-card:hover i{
    background:var(--red);
    color:#fff;
    transform:rotate(10deg) scale(1.08);
}

.service-card h3{
    font-size:25px;
    margin-bottom:15px;
    font-weight:700;
}

.service-card span{
    color:#cfcfcf;
    font-size:15px;
}

.service-card p{
    margin-top:15px;
    color:#999;
}


/*=====================================================
    PRICING
======================================================*/

.pricing{
    background:#111;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.pricing-card{
    position:relative;
    background:#171717;
    border-radius:28px;
    padding:50px 40px;
    border:1px solid #2d2d2d;
    transition:.35s;
    overflow:hidden;
}

.pricing-card:hover{
    transform:translateY(-12px);
    border-color:var(--red);
    box-shadow:0 30px 70px rgba(227,6,19,.25);
}

.pricing-card.active{
    border:2px solid var(--red);
    transform:scale(1.05);
}

.badge{
    position:absolute;
    right:25px;
    top:25px;
    background:var(--red);
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:12px;
    font-weight:700;
}

.pricing-header{
    margin-bottom:35px;
}

.pricing-header h3{
    font-size:30px;
    font-weight:800;
}

.price{
    display:block;
    margin-top:15px;
    color:var(--red);
    font-size:54px;
    font-weight:900;
}

.pricing-card ul{
    margin-bottom:40px;
}

.pricing-card li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
    color:#d7d7d7;
    font-size:16px;
}

.pricing-card li i{
    color:var(--red);
}


/*=====================================================
    HOVER EFFECT
======================================================*/

.service-card,
.pricing-card,
.about-image img{
    transition:all .35s ease;
}


/*=====================================================
    RESPONSIVE
======================================================*/

@media(max-width:1100px){

.about-grid{
    grid-template-columns:1fr;
}

.pricing-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:900px){

.about-content h2{
    font-size:38px;
}

.service-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.service-grid{
    grid-template-columns:1fr;
}

.about-image::after{
    display:none;
}

.about-content h2{
    font-size:32px;
}

.price{
    font-size:42px;
}

}
/*=====================================================
    BEFORE & AFTER
======================================================*/

.before-after{
    background:#0b0b0b;
    position:relative;
}

.compare-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.compare-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    border:1px solid #2a2a2a;
    background:#161616;
    transition:.4s;
}

.compare-card img{
    width:100%;
    height:520px;
    object-fit:cover;
    transition:.5s;
}

.compare-card:hover{
    border-color:var(--red);
    box-shadow:0 25px 70px rgba(227,6,19,.25);
}

.compare-card:hover img{
    transform:scale(1.08);
}

.compare-label{
    position:absolute;
    left:25px;
    top:25px;
    background:#ffffff;
    color:#000;
    padding:12px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

.compare-label.red{
    background:var(--red);
    color:#fff;
}


/*=====================================================
    CTA
======================================================*/

.cta{
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("../images/cta-bg.jpg") center/cover;
    text-align:center;
    padding:140px 0;
}

.cta h2{
    font-size:60px;
    font-weight:900;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    color:#ddd;
    line-height:1.8;
    margin-bottom:45px;
}

.cta-button{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


/*=====================================================
    TESTIMONIAL
======================================================*/

.testimonial{
    background:#090909;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.testimonial-card{
    background:#151515;
    border:1px solid #262626;
    border-radius:25px;
    padding:40px;
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:var(--red);
    box-shadow:0 20px 60px rgba(227,6,19,.20);
}

.stars{
    color:#ffcb3d;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#d3d3d3;
    line-height:1.9;
    min-height:120px;
}

.customer{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:25px;
}

.customer img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--red);
}

.customer h4{
    font-size:18px;
}

.customer span{
    color:#aaa;
    font-size:14px;
}


/*=====================================================
    MEMBERSHIP
======================================================*/

.membership{
    background:#111;
}

.membership-box{
    background:
    linear-gradient(135deg,#1a1a1a,#0d0d0d);
    border:1px solid #2d2d2d;
    border-radius:30px;
    padding:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    box-shadow:0 30px 80px rgba(0,0,0,.40);
}

.membership-box h2{
    font-size:48px;
    margin:15px 0;
}

.membership-box p{
    color:#d0d0d0;
    max-width:650px;
    line-height:2;
}


/*=====================================================
    PROMO
======================================================*/

.promo{
    background:#090909;
}

.promo-box{
    background:
    linear-gradient(90deg,
    rgba(227,6,19,.95),
    rgba(120,0,0,.90));
    border-radius:35px;
    padding:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    overflow:hidden;
    position:relative;
}

.promo-box::before{
    content:'';
    position:absolute;
    right:-100px;
    top:-100px;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.promo-box span{
    font-size:15px;
    letter-spacing:2px;
    font-weight:700;
}

.promo-box h2{
    font-size:54px;
    margin:15px 0;
}

.promo-box p{
    color:#fff;
    font-size:20px;
}


/*=====================================================
    RESPONSIVE
======================================================*/

@media(max-width:1100px){

.compare-grid{
    grid-template-columns:1fr;
}

.testimonial-grid{
    grid-template-columns:1fr;
}

.membership-box{
    flex-direction:column;
    text-align:center;
}

.promo-box{
    flex-direction:column;
    text-align:center;
}

}

@media(max-width:768px){

.cta h2{
    font-size:42px;
}

.membership-box{
    padding:45px 30px;
}

.promo-box{
    padding:45px 30px;
}

.promo-box h2{
    font-size:38px;
}

.compare-card img{
    height:350px;
}

}

/*=====================================================
    LOCATION
======================================================*/

.location{
    background:#0d0d0d;
}

.location-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
    align-items:stretch;
}

.location-info{
    background:#151515;
    border:1px solid #2b2b2b;
    border-radius:25px;
    padding:45px;
    transition:.35s;
}

.location-info:hover{
    border-color:var(--red);
    box-shadow:0 25px 60px rgba(227,6,19,.20);
}

.location-info h3{
    font-size:34px;
    margin-bottom:25px;
}

.location-info p{
    color:#cfcfcf;
    margin-bottom:15px;
    line-height:1.8;
}

.location-info .btn-red{
    margin-top:20px;
}

.map{
    overflow:hidden;
    border-radius:25px;
    border:1px solid #2b2b2b;
}

.map iframe{
    width:100%;
    height:100%;
    min-height:450px;
    display:block;
}


/*=====================================================
    FOOTER
======================================================*/

footer{
    background:#050505;
    border-top:1px solid #1f1f1f;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    margin-bottom:60px;
}

.footer-logo{
    width:180px;
    margin-bottom:25px;
}

.footer-grid p{
    color:#aaaaaa;
    line-height:1.9;
}

.footer-grid h3{
    font-size:22px;
    margin-bottom:25px;
    color:#ffffff;
}

.footer-grid ul{
    padding:0;
}

.footer-grid li{
    color:#bdbdbd;
    margin-bottom:14px;
    transition:.3s;
    cursor:pointer;
}

.footer-grid li:hover{
    color:var(--red);
    padding-left:8px;
}

.copyright{
    text-align:center;
    border-top:1px solid #1f1f1f;
    padding-top:25px;
    color:#7c7c7c;
    font-size:14px;
}


/*=====================================================
    FLOATING WHATSAPP
======================================================*/

.floating-wa{
    position:fixed;
    right:30px;
    bottom:30px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
    z-index:9999;
    animation:waFloat 2s infinite;
    transition:.3s;
}

.floating-wa:hover{
    transform:scale(1.1);
}

@keyframes waFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}


/*=====================================================
    FADE ANIMATION
======================================================*/

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}


/*=====================================================
    HOVER EFFECT GLOBAL
======================================================*/

img{
    transition:.4s;
}

img:hover{
    transform:scale(1.02);
}

.btn-red,
.btn-black,
.service-card,
.pricing-card,
.testimonial-card,
.location-info{
    transition:all .35s ease;
}


/*=====================================================
    SELECTION
======================================================*/

::selection{
    background:var(--red);
    color:#fff;
}


/*=====================================================
    RESPONSIVE
======================================================*/

@media(max-width:1200px){

.hero-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-right{
    order:2;
}

.hero-left{
    order:1;
}

.hero-feature{
    justify-content:center;
}

.hero-button{
    justify-content:center;
}

.location-grid{
    grid-template-columns:1fr;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo{
    margin:auto auto 25px;
}

}

@media(max-width:992px){

.hero-left h1{
    font-size:58px;
}

.section-title h2{
    font-size:40px;
}

.stat-card{
    grid-template-columns:repeat(2,1fr);
}

.hero{
    min-height:100vh;
    height:auto;
    padding:120px 0;
}

}

@media(max-width:768px){

.hero-left h1{
    font-size:42px;
}

.hero-left p{
    font-size:18px;
}

.section-title h2{
    font-size:32px;
}

.stat-card{
    grid-template-columns:1fr;
}

.stat-item{
    padding:30px;
}

.hero-feature{
    flex-direction:column;
}

.hero-button{
    flex-direction:column;
}

.btn-red,
.btn-black{
    width:100%;
    justify-content:center;
}

.floating-wa{
    width:60px;
    height:60px;
    font-size:28px;
    right:20px;
    bottom:20px;
}

section{
    padding:70px 0;
}

}

@media(max-width:480px){

.container{
    width:92%;
}

.hero-left h1{
    font-size:34px;
}

.hero-left p{
    font-size:16px;
}

.section-title h2{
    font-size:28px;
}

.location-info{
    padding:30px;
}

.membership-box,
.promo-box{
    padding:30px;
}

.pricing-card,
.service-card,
.testimonial-card{
    padding:30px;
}

}

/* ==========================
   HERO BENEFITS
========================== */

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px 40px;
    width:100%;
    max-width:650px;
}

.benefit-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.benefit-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#d50000;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    box-shadow:0 8px 20px rgba(213,0,0,.35);
    transition:.3s;
}

.benefit-icon i{
    color:#fff;
    font-size:28px;
}

.benefit-item:hover .benefit-icon{
    transform:translateY(-5px) scale(1.08);
}

.benefit-text h4{
    margin:0;
    color:#fff;
    font-size:19px;
    font-weight:800;
    letter-spacing:.8px;
    line-height:1.2;
}

.benefit-text span{
    display:block;
    color:#fff;
    font-size:16px;
    font-weight:500;
    opacity:.9;
}

/* Responsive */

@media(max-width:992px){

    .hero-benefits{

        grid-template-columns:1fr;
        margin-top:40px;

    }

}

@media(max-width:768px){

    .benefit-icon{

        width:55px;
        height:55px;

    }

    .benefit-icon i{

        font-size:22px;

    }

    .benefit-text h4{

        font-size:17px;

    }

    .benefit-text span{

        font-size:14px;

    }

}