/* =========================
   GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#1f2937;
    background:#ffffff;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

.section{
    padding:90px 0;
}

.gray-bg{
    background:#f8fafc;
}

/* =========================
   HEADER
========================= */

header{
    position:fixed;
    top:0;
    width:100%;
    background:#ffffff;
    z-index:1000;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    max-width:1400px;
    width:95%;
    margin:auto;
}

.logo img{
    height:120px;
    width:auto;
}

nav ul{
    display:flex;
    gap:40px;
}

nav ul li a{
    color:#0f172a;
    font-weight:600;
    font-size:1.1rem;
    transition:.3s;
}

nav ul li a:hover{
    color:#14b8a6;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
}

.social-icons a:first-child{
    background:#1877f2;
}

.social-icons a:last-child{
    background:#25D366;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    min-height:100vh;
    background:url("images/laundry-shop.jpg") center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    backdrop-filter:blur(8px);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
    width:90%;
    max-width:900px;
}

.hero-adjust{
    padding-top:200px;
}

.hero-content h1{
    font-family:'Poppins',sans-serif;
    font-size:3.5rem;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content h2{
    color:white;
    margin-bottom:20px;
    font-size:1.3rem;
    letter-spacing:1px;
}

.hero-content p{
    font-size:1.1rem;
    margin-bottom:30px;
}

.hero-content h1,
.hero-content h2,
.hero-content p{
    text-shadow:0 2px 12px rgba(0,0,0,.65);
}

/* =========================
   BUTTONS
========================= */

.btn-primary{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:white;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(37,211,102,.3);
}

/* =========================
   STATS
========================= */

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.stat-card{
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(6px);
    border-radius:15px;
    padding:25px;
}

.stat-card h3{
    font-size:2rem;
    color:#14b8a6;
    margin-bottom:5px;
}

.stat-card p{
    color:white;
}

/* =========================
   SECTION TITLES
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-family:'Poppins',sans-serif;
    font-size:2.4rem;
    color:#0f172a;
    margin-bottom:15px;
}

.section-title p{
    color:#64748b;
    max-width:700px;
    margin:auto;
}

/* =========================
   CARD GRID
========================= */

.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-card img{
    height:280px;
    object-fit:cover;
}

.card-content{
    padding:24px;
}

.card-content h3{
    font-family:'Poppins',sans-serif;
    margin-bottom:10px;
    color:#0f172a;
}

.card-content p{
    color:#64748b;
}
/* =========================
   PICKUP BANNER
========================= */

.pickup-banner{
    background:#14b8a6;
    color:white;
    text-align:center;
    padding:70px 20px;
}

.pickup-banner-inner{
    max-width:700px;
    margin:auto;
}

.pickup-banner h2{
    font-size:2rem;
    margin-bottom:10px;
}

.pickup-banner p{
    margin-bottom:20px;
}

/* =========================
   KILOGRAM SECTION
========================= */

.kilogram-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.kg-image{
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.kg-caption{
    text-align:center;
    margin-top:15px;
    font-size:1rem;
    font-weight:600;
    color:#475569;
}

table{
    width:100%;
    margin:25px 0;
    border-collapse:collapse;
}

table th{
    background:#14b8a6;
    color:white;
}

table th,
table td{
    padding:15px;
    border:1px solid #e5e7eb;
}

table tr:nth-child(even){
    background:#f8fafc;
}

/* =========================
   PROCESS INFOGRAPHIC
========================= */

.process-infographic{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    width:100%;
    max-width:1400px;
    margin:70px auto 0;
    gap:10px;
}

.process-item{
    flex:1;
    text-align:center;
}

.process-big-icon{
    font-size:120px;
    color:#111;
    margin-bottom:25px;
}

.process-item h3{
    font-size:2rem;
    font-weight:500;
    color:#16a34a;
    line-height:1.4;
}

.process-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:35px;
}

.process-arrow i{
    font-size:70px;
    color:#111;
}
/* =========================
   BENEFITS
========================= */

.benefits{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.benefit-card{
    background:white;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.benefit-card i{
    font-size:42px;
    color:#14b8a6;
    margin-bottom:20px;
}

.benefit-card h3{
    font-family:'Poppins',sans-serif;
    font-size:1.2rem;
    font-weight:600;
    color:#0f172a;
}
/* =========================
   CONTACT
========================= */

.contact-section{
    background:#0f172a;
    color:white;
    padding:90px 0;
}

.contact-section h2{
    text-align:center;
    margin-bottom:50px;
    font-size:2.5rem;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:40px;
}

.contact-grid h3{
    margin-bottom:10px;
    color:#14b8a6;
}

.contact-buttons{
    text-align:center;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#08101d;
    color:#cbd5e1;
    text-align:center;
    padding:30px 20px;
}

footer p{
    margin-bottom:10px;
}

footer a{
    color:#14b8a6;
}

/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    z-index:999;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .card-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .kilogram-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .benefits{
        grid-template-columns:repeat(2,1fr);
    }

    .process-infographic{
    flex-direction:column;
    align-items:center;
    gap:30px;
}

.process-arrow i{
    transform:rotate(90deg);
}

.process-big-icon{
    font-size:90px;
}

.process-item h3{
    font-size:1.4rem;
}
}

@media(max-width:768px){

    .nav-container{
    flex-direction:column;
    gap:10px;
    padding-bottom:15px;
}

    nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    row-gap:8px;
}

    nav ul li a{
        font-size:1rem;
    }

    .logo img{
    height:80px;
}

    .hero-adjust{
        padding-top:320px;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

    .hero-content h2{
        font-size:1rem;
    }

    .card-grid{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .benefits{
        grid-template-columns:1fr;
    }

    .section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:2rem;
    }
}