*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#0d0d0d;
    color:white;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:#111;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo h1{
    color:white;
    font-size:40px;
}

.logo span{
    color:red;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-size:18px;
    transition:.3s;
}

nav a:hover{
    color:red;
}

.hero{
    height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:
linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.75)),
url("images/hero.jpg");

background-size: cover;
background-position: center top;
}

.hero h2{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    color:#ccc;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:red;
    color:white;
    text-decoration:none;
    border-radius:40px;
    margin-right:15px;
    transition:.3s;
}

.btn:hover{
    background:white;
    color:black;
}

.btn2{
    display:inline-block;
    padding:15px 35px;
    border:2px solid red;
    color:red;
    text-decoration:none;
    border-radius:40px;
    transition:.3s;
}

.btn2:hover{
    background:red;
    color:white;
}

.products{
    background:#111;
    color:white;
    padding:80px 8%;
}

.products h2{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:30px;
}

.product-card{
    background:#1b1b1b;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h3{
    padding:15px;
}

.product-card p{
    padding:0 15px 20px;
    color:#ccc;
}

.product-card .btn{
    margin:15px;
    display:inline-block;
}
.gallery{
    background:#0d0d0d;
    padding:80px 8%;
}

.gallery h2{
    color:white;
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    transition:.4s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px rgba(255,0,0,.4);
}
.contact{
    padding:80px 10%;
    text-align:center;
    background:#111;
}

.contact h2{
    font-size:40px;
    margin-bottom:20px;
}

.contact p{
    color:#ccc;
    margin:15px 0;
    font-size:18px;
}

.contact .btn{
    margin:20px 0;
    display:inline-block;
}
footer{
    background:#080808;
    color:white;
    text-align:center;
    padding:50px 20px;
}

footer h2{
    font-size:40px;
    margin-bottom:15px;
}

footer span{
    color:red;
}

footer p{
    margin:10px 0;
    color:#ccc;
}

footer a{
    color:red;
    text-decoration:none;
}

footer a:hover{
    color:white;
}
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.4);
    transition:.3s;
    z-index:1000;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}
.faq{
    background:#111;
    padding:80px 8%;
}

.faq h2{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
    color:white;
}

.faq-item{
    background:#1b1b1b;
    padding:20px;
    border-left:5px solid red;
    border-radius:10px;
    margin-bottom:20px;
}

.faq-item h3{
    color:white;
    margin-bottom:10px;
}

.faq-item p{
    color:#ccc;
    line-height:1.6;
}
.quote{
    background:#0d0d0d;
    padding:80px 8%;
    text-align:center;
}

.quote h2{
    font-size:42px;
    margin-bottom:15px;
}

.quote p{
    color:#ccc;
    margin-bottom:40px;
}

.quote form{
    max-width:700px;
    margin:auto;
}

.quote input,
.quote select,
.quote textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:none;
    border-radius:8px;
    background:#1c1c1c;
    color:white;
    font-size:16px;
}

.quote button{
    border:none;
    cursor:pointer;
}

.reviews{
    background:#111;
    padding:80px 8%;
    text-align:center;
}

.reviews h2{
    font-size:40px;
    margin-bottom:10px;
    color:white;
}

.rating{
    color:#FFD700;
    font-size:22px;
    margin-bottom:40px;
}

.review-slider{
    max-width:700px;
    margin:auto;
}

.review{
    display:none;
    background:#1b1b1b;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.3);
}

.review.active{
    display:block;
}

.review h3{
    font-size:28px;
}

.review p{
    color:#ccc;
    margin:20px 0;
    line-height:1.7;
}

.review h4{
    color:red;
}
/* LOADER */

#loader{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader-content{
    text-align:center;
}

.loader-content h1{
    color:white;
    font-size:3rem;
    margin-bottom:25px;
}

.loader-content span{
    color:#ff3b30;
}

.loading-bar{
    width:320px;
    height:8px;
    background:#333;
    border-radius:50px;
    overflow:hidden;
    margin:auto;
}

.loading-progress{
    width:0%;
    height:100%;
    background:#ff3b30;
    animation:loading 2.5s linear forwards;
}

.loader-content p{
    color:#bbb;
    margin-top:20px;
    font-size:18px;
}

@keyframes loading{
    from{
        width:0%;
    }
    to{
        width:100%;
    }
}
/* LIGHTBOX */

#lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:100000;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:15px;
    box-shadow:0 0 30px rgba(255,59,48,.5);
}

#close{
    position:absolute;
    top:25px;
    right:35px;
    color:white;
    font-size:45px;
    cursor:pointer;
    font-weight:bold;
}

.gallery img{
    cursor:pointer;
    transition:.3s;
}

.gallery img:hover{
    transform:scale(1.05);
}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px){

header{
    flex-direction:column;
    gap:15px;
    padding:20px;
}

nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.hero{
    padding:70px 20px;
    text-align:center;
}

.hero h2{
    font-size:2rem;
}

.hero p{
    font-size:16px;
}

.product-grid{
    grid-template-columns:1fr;
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.review-card{
    padding:25px;
}

#quoteForm{
    width:100%;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea{
    width:100%;
    font-size:16px;
}

footer{
    text-align:center;
    padding:30px 20px;
}

.whatsapp-float{
    width:60px;
    height:60px;
    right:15px;
    bottom:15px;
}
}
/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle{
    display:none;
    font-size:32px;
    color:white;
    cursor:pointer;
}

.nav-links{
    display:flex;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        background:#111;
        text-align:center;
        padding:20px 0;
        margin-top:15px;
    }

    .nav-links.active{
        display:flex;
    }
}
/* Scroll Animation */

.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:all 0.8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}