/* HERO */

.products-hero{
    position:relative;
    height:85vh;
    background:url('../images/products-banner.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.60);
    top:0;
    left:0;
}

.products-hero .container{
    position:relative;
    z-index:2;
    color:#fff;
}

.small-title{
    color:#e3e8eb;
    letter-spacing:2px;
    font-weight:100;
    font-size:15px;
}

.products-hero h1{
    font-size:58px;
    margin:15px 0;
}

.products-hero p{
    max-width:760px;
    margin:auto;
    font-size:18px;
    color:#f2f2f2;
}

/* INTRO */

.intro-section{
    padding:90px 0;
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.intro-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.section-title{
    color:#0077cc;
    font-weight:600;
    letter-spacing:1px;
    font-size:15px;
}

.intro-content h2{
    font-size:42px;
    margin:15px 0 25px;
    line-height:1.2;
    color:#003b70;
}

.intro-content p{
    color:#555;
    margin-bottom:20px;
}

.feature-list{
    margin-top:25px;
}

.feature-item{
    display:flex;
    align-items:center;
    margin-bottom:18px;
}

.feature-item i{
    width:50px;
    height:50px;
    background:#eaf6ff;
    color:#008cff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
}


/* CATEGORIES SECTION */

.categories-section{
    padding:30px 0;
    background:#f7fbff;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:42px;
    color:#003b70;
    margin-top:10px;
}

/* GRID */

.categories-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:30px;
}

/* FIRST 3 CARDS */

.category-card:nth-child(1),
.category-card:nth-child(2),
.category-card:nth-child(3){
    grid-column:span 2;
}

/* LAST 2 CENTER */

.category-card:nth-child(4){
    grid-column:2 / span 2;
}

.category-card:nth-child(5){
    grid-column:4 / span 2;
}

/* CARD */

.category-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.category-card:hover{
    transform:translateY(-8px);
}

.category-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card-content{
    padding:30px;
}

.card-content h3{
    margin-bottom:15px;
    color:#004b87;
}

.card-content p{
    color:#666;
    margin-bottom:25px;
}

.card-content a{
    display:inline-block;
    padding:12px 28px;
    background:#005db1;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:0.4s;
}

.card-content a:hover{
    background:#003b70;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .categories-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .category-card:nth-child(1),
    .category-card:nth-child(2),
    .category-card:nth-child(3),
    .category-card:nth-child(4),
    .category-card:nth-child(5){
        grid-column:auto;
    }

}

@media(max-width:768px){

    .categories-grid{
        grid-template-columns:1fr;
    }

}

/* WHY CHOOSE */

.why-choose{
    padding:5px 0;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.choose-box{
    text-align:center;
    border:1px solid #e5e5e5;
    padding:40px 25px;
    border-radius:15px;
    transition:0.4s;
}

.choose-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.choose-box i{
    width:80px;
    height:80px;
    background:#eef7ff;
    color:#008cff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    font-size:30px;
}

.choose-box h3{
    margin-bottom:15px;
    color:#004b87;
}

.choose-box p{
    color:#666;
}

/* CTA */

.cta-section{
    background:#06355f;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta-content{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#e0e7eb;
}

.cta-content h2{
    font-size:42px;
    margin-bottom:15px;
}




.whatsapp-btn{
    padding:30px 25px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}



.whatsapp-btn{
    background:#25D366;
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .categories-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:992px){

    .intro-grid{
        grid-template-columns:1fr;
    }

    .choose-grid{
        grid-template-columns:1fr;
    }

    .products-hero h1{
        font-size:42px;
    }

}

@media(max-width:768px){

    .categories-grid{
        grid-template-columns:1fr;
    }

    .section-header h2,
    .intro-content h2,
    .cta-section h2{
        font-size:32px;
    }

    .products-hero h1{
        font-size:34px;
    }

    .products-hero{
        height:75vh;
    }

}
/* CTA MOBILE FIX */

@media(max-width:768px){

    .cta-section{
        padding:40px 20px;
        text-align:center;
    }

    .cta-section h2{
        font-size:26px;
        line-height:1.4;
    }

    .cta-section p{
        font-size:15px;
        line-height:1.6;
    }

    .cta-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .cta-buttons a,
    .cta-section .btn{
        width:100%;
        max-width:280px;
        text-align:center;
    }

}

/* PRODUCT BUTTON ONE LINE FIX */
.product-content .btn,
.card-content a,
.whatsapp-btn{
    white-space:nowrap;
    line-height:1;
}
