/* ==========================================
   DAIMA MABATI WEBSITE
   MAIN STYLESHEET
   Author: Eric Munene
========================================== */

/*====================
 GOOGLE FONT
=====================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*====================
 RESET
=====================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fafc;
    color:#1f2937;
    overflow-x:hidden;
}

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

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*====================
 VARIABLES
=====================*/

:root{

    --primary:#0057B8;
    --primary-dark:#00408A;

    --secondary:#FF9800;
    --secondary-dark:#E68900;

    --white:#ffffff;

    --dark:#1E293B;

    --text:#475569;

    --light:#F8FAFC;

    --border:#E5E7EB;

    --shadow:
            0 10px 30px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}

/*====================
 CONTAINER
=====================*/

.container{

    width:min(1200px,90%);
    margin:auto;

}

/*====================
 SECTION
=====================*/

section{

    padding:100px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:2.8rem;
    color:var(--dark);

}

.section-title p{

    margin-top:15px;

    color:var(--text);

    max-width:650px;

    margin-inline:auto;

}

/*====================
 BUTTONS
=====================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 35px;

    background:var(--primary);

    color:white;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}

.btn:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.btn-secondary{

    background:var(--secondary);

}

.btn-secondary:hover{

    background:var(--secondary-dark);

}

.btn-outline{

    border:2px solid white;

    color:white;

    background:transparent;

}

.btn-outline:hover{

    background:white;

    color:var(--primary);

}

/*====================
 CARD
=====================*/

.card{

    background:white;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-10px);

}

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:85px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(14px);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 7%;

    z-index:1000;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.logo{

    font-size:30px;

    font-weight:700;

    color:var(--primary);

}

.logo span{

    color:var(--secondary);

}

.logo i{

    margin-right:10px;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    color:var(--dark);

    font-weight:500;

    position:relative;

    transition:.3s;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

nav a:hover::after,

nav a.active::after{

    width:100%;

}

.quote-btn{

    padding:13px 28px;

    border-radius:50px;

    background:var(--secondary);

    color:white;

    font-weight:600;

    transition:.3s;

}

.quote-btn:hover{

    background:var(--primary);

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

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
            linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
            url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    color:white;

}

.hero .container{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    align-items:center;

    gap:80px;

}

.hero-content h1{

    font-size:4.3rem;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-content p{

    font-size:1.15rem;

    max-width:650px;

    color:#f1f5f9;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.small-title{

    display:inline-block;

    margin-bottom:20px;

    color:#FFD54F;

    letter-spacing:3px;

    font-weight:600;

    text-transform:uppercase;

}

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

.stats{
    background: linear-gradient(135deg,#0057B8,#003d80);
    padding:100px 0;
}

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

.stat-card{
    background:#fff;
    padding:45px 25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h2{
    font-size:56px;
    color:#0057B8;
    margin-bottom:15px;
    font-weight:700;
}

.stat-card p{
    color:#555;
    font-size:18px;
    font-weight:600;
}
/*==========================================
 FEATURES
==========================================*/

.features{

    background:#f8fafc;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.feature-card{

    background:white;

    padding:40px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-12px);

}

.feature-card i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    background:#EEF5FF;

    color:var(--primary);

}

.feature-card h3{

    margin-bottom:15px;

}

.feature-card p{

    color:var(--text);

}

/*==========================================
 PRODUCTS
==========================================*/

.products{

    background:white;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.product-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-info{

    padding:30px;

}

.product-category{

    color:var(--secondary);

    font-size:.85rem;

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:1px;

}

.product-info h3{

    margin:12px 0 18px;

}

.product-info p{

    margin-bottom:20px;

}

.product-features{

    margin-bottom:25px;

}

.product-features li{

    margin-bottom:12px;

    color:var(--text);

}

.product-features i{

    color:green;

    margin-right:10px;

}

/*==========================================
 PROCESS
==========================================*/

.process{

    background:#F8FAFC;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.process-card{

    background:white;

    padding:40px;

    text-align:center;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.process-number{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:bold;

}

/*==========================================
 CTA
==========================================*/

.cta{

    background:
            linear-gradient(rgba(0,87,184,.92),
            rgba(0,87,184,.92)),
            url("../images/roof.jpg");

    background-size:cover;

    background-position:center;

    color:white;

    text-align:center;

}

.cta h2{

    font-size:3rem;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

    color:#f8fafc;

}
/*==========================================
 PAGE HERO
==========================================*/

.page-hero{

    height:60vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:
            linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
            url("../images/products-hero.jpg");

    background-size:cover;

    background-position:center;

    color:white;

}

.page-hero h1{

    font-size:3.8rem;

    margin-bottom:20px;

}

.page-hero p{

    max-width:700px;

    margin:auto;

    color:#f8fafc;

}

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

.about-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:60px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.about-content h2{

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:20px;

}

.about-list{

    margin-top:25px;

}

.about-list li{

    margin-bottom:15px;

    color:var(--text);

}

.about-list i{

    color:green;

    margin-right:12px;

}

/*==========================================
 CONTACT
==========================================*/

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.contact-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    margin-bottom:25px;

}

.contact-card i{

    font-size:30px;

    color:var(--primary);

    margin-bottom:20px;

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px;

    margin-bottom:20px;

    border:1px solid var(--border);

    border-radius:12px;

    font-family:inherit;

    outline:none;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:var(--primary);

}

.contact-form textarea{

    height:180px;

    resize:none;

}

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

footer{

    background:#0f172a;

    color:white;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-grid h3{

    margin-bottom:25px;

}

.footer-grid p{

    color:#cbd5e1;

}

.footer-grid a{

    display:block;

    color:#cbd5e1;

    margin-bottom:12px;

    transition:.3s;

}

.footer-grid a:hover{

    color:var(--secondary);

    padding-left:8px;

}

.socials{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.socials a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1e293b;

    border-radius:50%;

    color:white;

}

.socials a:hover{

    background:var(--secondary);

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

    color:#94a3b8;

}

/*==========================================
 WHATSAPP BUTTON
==========================================*/

.whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

}

/*==========================================
 BACK TO TOP
==========================================*/

.top-btn{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    transition:.3s;

}

.top-btn:hover{

    background:var(--secondary);

}

/*==========================================
 ANIMATIONS
==========================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

/*==========================================
 RESPONSIVE
==========================================*/

@media(max-width:991px){

    .hero .container{

        grid-template-columns:1fr;

        text-align:center;

    }

    /*.stats-grid{*/

    /*    grid-template-columns:repeat(2,1fr);*/

    /*}*/

    .process-grid{

        grid-template-columns:1fr;

    }

    .about-grid{

        grid-template-columns:1fr;

    }

    .contact-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

    .page-hero h1{

        font-size:3rem;

    }

    .hero-content h1{

        font-size:3.2rem;

    }

}

@media(max-width:768px){

    header{

        flex-direction:column;

        height:auto;

        padding:20px;

    }

    nav{

        margin:20px 0;

        flex-wrap:wrap;

        justify-content:center;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .feature-grid{

        grid-template-columns:1fr;

    }

    .product-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

    .hero-content h1{

        font-size:2.6rem;

    }

    .page-hero h1{

        font-size:2.5rem;

    }

    section{

        padding:80px 0;

    }

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

.stats{
    background: var(--primary);
    padding:70px 0;
}

.stats-container{
    width:min(1100px,90%);
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-card{
    background:#fff;
    padding:25px 15px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    transition:.3s;

    max-width:220px;
    margin:auto;
}

.stat-card:hover{
    transform:translateY(-6px);
}

.stat-card h2{
    color:var(--primary);
    font-size:42px;
    margin-bottom:10px;
    line-height:1;
}

.stat-card p{
    font-size:16px;
    color:#555;
    font-weight:500;
}

@media(max-width:900px){
    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .stats-container{
        grid-template-columns:1fr;
    }

    .stat-card{
        max-width:300px;
    }
}
/* ==========================================
   ABOUT PAGE
========================================== */

.about-hero{

    background:
            linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
            url("../images/about-hero.jpg");

    background-size:cover;

    background-position:center;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.section-tag{

    display:inline-block;

    background:#eaf4ff;

    color:var(--primary);

    padding:8px 18px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.about-content h2{

    font-size:42px;

    margin-bottom:25px;

}

.about-content p{

    margin-bottom:20px;

    color:#666;

}

.about-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:30px;

}

.about-highlights div{

    font-weight:600;

}

.about-highlights i{

    color:#28a745;

    margin-right:10px;

}



/* ==========================================
   CONTACT PAGE
========================================== */

.contact-hero{

    background:
            linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
            url("../images/contacct-hero.jpg");

    background-size:cover;

    background-position:center;

}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-box{

    display:flex;

    gap:20px;

    margin:35px 0;

}

.contact-box i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--primary);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.contact-form{

    background:white;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.1);

}

.input-row{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:20px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    outline:none;

    font-family:'Poppins',sans-serif;

    margin-bottom:20px;

    transition:.3s;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:var(--primary);

}

.contact-form textarea{

    resize:none;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:900px){

    .about-container,

    .contact-container{

        grid-template-columns:1fr;

    }

    .about-highlights{

        grid-template-columns:1fr;

    }

    .input-row{

        grid-template-columns:1fr;

    }

    .page-content h1{

        font-size:42px;

    }

}
/* ===============================
   PRODUCT CATEGORIES
================================ */

.categories{
    background:#f5f7fb;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.category-card{
    height:280px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    background-size:cover;
    background-position:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.category-card:hover{
    transform:translateY(-10px);
}

.category-card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.65));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
    color:#fff;
}

.category-card i{
    font-size:40px;
    margin-bottom:15px;
    color:#ff9800;
}

.category-card h3{
    font-size:28px;
    margin-bottom:10px;
}

.category-card p{
    color:#eee;
}

/* Background Images */

.roofing{
    background-image:url("../images/roof-sheet.jpg");
}

.accessories{
    background-image:url("../images/product6.jpg");
}

.gutters{
    background-image:url("../images/gutters.jpg");
}

.custom{
    background-image:url("../images/product5.jpg");
}
/* =========================
   FOOTER
========================= */

footer{
    background:#111827;
    color:#fff;
    padding:70px 8% 20px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-content h3{
    color:#fff;
    margin-bottom:20px;
    font-size:24px;
}

.footer-content p{
    color:#d1d5db;
    line-height:1.8;
}

.footer-content a{
    display:block;
    color:#d1d5db;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-content a:hover{
    color:#ff9800;
}

.socials{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.socials a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#1f2937;
    color:#fff;
    font-size:18px;
    transition:.3s;
}

.socials a:hover{
    background:#ff9800;
    transform:translateY(-5px);
}

footer hr{
    border:none;
    border-top:1px solid rgba(255,255,255,.1);
    margin:40px 0 20px;
}

.copyright{
    text-align:center;
    color:#9ca3af;
    font-size:15px;
}
/* =========================
   QUOTE PAGE
========================= */

.quote-section{
    padding:120px 8% 80px;
    background:#f5f7fb;
}

.quote-container{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.quote-info h2{
    font-size:42px;
    color:var(--dark);
    margin-bottom:20px;
}

.quote-info p{
    color:#666;
    margin-bottom:35px;
    line-height:1.8;
}

.quote-benefits{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.quote-benefits .item{
    display:flex;
    align-items:center;
    gap:18px;
}

.quote-benefits i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.quote-benefits h4{
    margin-bottom:5px;
    color:#222;
}

.quote-benefits p{
    margin:0;
    color:#666;
}

.quote-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.quote-form h3{
    text-align:center;
    margin-bottom:30px;
    color:var(--primary);
}

.quote-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    font-family:'Poppins',sans-serif;
    transition:.3s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 10px rgba(0,86,179,.15);
}

.quote-form textarea{
    resize:vertical;
    min-height:150px;
}

.quote-form button{
    background:var(--secondary);
    color:#fff;
    border:none;
    padding:16px;
    font-size:17px;
    font-weight:600;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
}

.quote-form button:hover{
    background:var(--primary);
    transform:translateY(-3px);
}

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

.quote-hero{
    height:45vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    background:
            linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
            url("../images/roof.jpg");
    background-size:cover;
    background-position:center;
}

.quote-hero h1{
    font-size:55px;
    margin-bottom:15px;
}

.quote-hero p{
    font-size:20px;
    max-width:700px;
    margin:auto;
}

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

@media(max-width:900px){

    .quote-container{
        grid-template-columns:1fr;
    }

    .quote-info{
        text-align:center;
    }

    .quote-benefits .item{
        justify-content:center;
        text-align:left;
    }

    .quote-hero h1{
        font-size:38px;
    }

    .quote-hero p{
        font-size:17px;
    }

    .quote-form{
        padding:25px;
    }
}/* ===========================
   PRODUCTS PAGE IMPROVEMENTS
=========================== */

.section-subtitle{
    max-width:700px;
    margin:0 auto 50px;
    text-align:center;
    color:#666;
    font-size:18px;
}

/* Categories */

.categories{
    background:#fff;
}

.categories .feature-card{
    border-top:5px solid var(--secondary);
}

/* Product Cards */

.product-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.product-card img{
    height:240px;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-card h3{
    color:#0056b3;
    font-size:24px;
}

.product-card p{
    min-height:75px;
}

/* Price Box */

.quote-box{
    margin:20px;
    padding:25px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:15px;
    text-align:center;
}

.quote-box h4{
    color:var(--primary);
    font-size:22px;
    margin-bottom:15px;
}

.quote-box p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.quote-box .btn-small{
    display:inline-block;
    margin:0;
}
/* Product Button */

.btn-small{

    display:block;

    margin:20px;

    text-align:center;

    background:#ff9800;

    color:#fff;

    padding:14px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.btn-small:hover{

    background:#0056b3;

}

/* Colour Section */

.colours{

    background:#f5f7fb;

}

.colour-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:30px;

    margin-top:50px;

}

.colour-card{

    background:white;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.colour-card:hover{

    transform:translateY(-8px);

}

.colour-swatch{

    width:90px;

    height:90px;

    border-radius:50%;

    margin:0 auto 20px;

    border:4px solid #eee;

}

.charcoal{

    background:#3b3b3b;

}

.brick{

    background:#8d2f2f;

}

.green{

    background:#2e7d32;

}

.blue{

    background:#1565c0;

}

.brown{

    background:#5d4037;

}

.beige{

    background:#d7c4a3;

}

/* More Products */

.more-products{

    background:linear-gradient(135deg,#0056b3,#003b80);

    color:white;

    text-align:center;

}

.more-products-content{

    max-width:850px;

    margin:auto;

}

.more-products i{

    font-size:70px;

    color:#ff9800;

    margin-bottom:25px;

}

.more-products h2{

    color:white;

}

.more-products p{

    margin:25px auto;

    line-height:1.8;

    font-size:18px;

}

/* Product Badges */

.product-card::before{

    content:"Popular";

    position:absolute;

    top:15px;

    left:15px;

    background:#ff9800;

    color:white;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    z-index:5;

}

.product-card:nth-child(2)::before{

    content:"Best Seller";

}

.product-card:nth-child(3)::before{

    content:"Premium";

}

.product-card:nth-child(4)::before{

    content:"Accessory";

}

.product-card:nth-child(5)::before{

    content:"New";

}

.product-card:nth-child(6)::before{

    content:"Essential";

}

/* Responsive */

@media(max-width:768px){

    .price-row{

        font-size:14px;

    }

    .product-card h3{

        font-size:20px;

    }

    .colour-grid{

        grid-template-columns:repeat(2,1fr);

    }

}
/*=========================================
        GALLERY PAGE
=========================================*/

.gallery-hero{
    background:
            linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
            url("../images/gallery-hero.jpg");
    background-size:cover;
    background-position:center;
}

.gallery{
    background:#f8fafc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    cursor:pointer;
    transition:.4s ease;
}

.gallery-item:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s ease;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item::before{
    content:"Completed Project";
    position:absolute;
    left:20px;
    bottom:20px;
    background:rgba(0,87,184,.9);
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    z-index:2;
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,0));
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::after{
    opacity:1;
}

/* Gallery CTA */

.gallery .btn{
    margin-top:50px;
}

/* Responsive */

@media(max-width:768px){

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

    .gallery-item img{
        height:240px;
    }

}
/*=========================================
        TESTIMONIALS
=========================================*/

.testimonials{
    background:#ffffff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid var(--secondary);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.stars{
    color:#ffb400;
    margin-bottom:20px;
    font-size:18px;
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
    font-style:italic;
}

.customer{
    display:flex;
    align-items:center;
    gap:15px;
}

.customer img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid var(--secondary);
}

.customer h4{
    margin:0;
    color:#222;
}

.customer span{
    color:#777;
    font-size:14px;
}

@media(max-width:768px){

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

}