/* =========================
   GLOBAL
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111;
    color:#fff;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#fff;
}

.logo span{
    color:#C9A227;
}

.nav-menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-menu a{
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-menu a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #C9A227;
    transition: width 0.3s ease;
}

.nav-menu a:hover{
    color:#C9A227;
}

.nav-menu a:hover::after{
    width: 100%;
}

/* ==========================
   PREMIUM BUTTON
========================== */

.quote-btn{
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #C9A227, #E6C65C);
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(201,162,39,0.35);
}

.quote-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(201,162,39,0.5);
    color: #111;
}

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

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

#hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:0 8%;
    background:url("../images/HERO/hero1.jpeg") center/cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.hero-tag{
    color:#C9A227;
    letter-spacing:4px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#C9A227;
}

.hero-text{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    
}


.view-btn{
    padding:14px 32px;
    border:2px solid #fff;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.view-btn:hover{
    background:#fff;
    color:#111;
}

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

.hero-stats{
    display:flex;
    gap:50px;
    margin-top:50px;
}

.stat h3{
    font-size:32px;
    color:#C9A227;
    margin-bottom:8px;
}

.stat p{
    color:#bdbdbd;
    font-size:15px;
}

/* HERO IMAGE */

.hero-image{
    position:relative;
}

/* FLOATING CARD */

.experience-card{

    position:absolute;

    bottom:-25px;

    left:-30px;

    background:#C9A227;

    color:#111;

    padding:20px 28px;

    border-radius:15px;

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

}

.experience-card h3{

    font-size:36px;

    margin-bottom:5px;

}

.experience-card p{

    font-size:15px;

    font-weight:600;

}

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

#about{
    padding:100px 8%;
    background:#161616;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.4);
}

.about-content{
    flex:1;
}

.about-content h5{
    color:#C9A227;
    letter-spacing:3px;
    margin-bottom:15px;
}

.about-content h2{
    color:#fff;
    font-size:42px;
    margin-bottom:25px;
}

.about-content p{
    color:#ccc;
    line-height:1.9;
    margin-bottom:30px;
}

.about-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.about-points div{
    color:#fff;
}
/* ================= SERVICES ================= */
#services{
    padding:120px 8%;
    background:#111;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:70px;
}

.section-title{
    text-align:center;
    max-width:750px;
    margin:0 auto 70px;
}

.section-title span{
    color:#C9A227;
    letter-spacing:3px;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
}

.section-title h2{
    font-size:50px;
    color:#fff;
    margin:15px 0;
}

.section-title p{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
}

.service-card{
    background:#1a1a1a;
    border:1px solid rgba(201,162,39,.2);
    border-radius:22px;
    padding:45px 35px;
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#C9A227;
    transform:scaleX(0);
    transition:.4s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-card:hover{
    transform:translateY(-12px);
    border-color:#C9A227;
    box-shadow:0 20px 45px rgba(201,162,39,.2);
}

.service-icon{
    font-size:65px;
    color:#C9A227;
    margin-bottom:25px;
}

.service-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:20px;
}

.service-card p{
    color:#bdbdbd;
    font-size:17px;
    line-height:1.9;
}

.service-btn{
    display:inline-block;
    margin-top:28px;
    padding:12px 30px;
    background:#C9A227;
    color:#111;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-3px);
}

/* ================= PROJECTS ================= */

#projects{
    padding:100px 8%;
    background:#0f0f0f;
}

.project-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 25px;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.project-card{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}


.project-card img{
    width: 100%;
    height: 420px;      /* Choose one fixed height */
    display: block;
    object-fit: cover;  /* Crop instead of stretching */
}

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

.project-info{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(transparent,rgba(0,0,0,.9));
}

.project-info h3{
    color:#fff;
}

.project-info p{
    color:#C9A227;
}

/* ================= WHY CHOOSE US ================= */

#why-us{
    padding:100px 8%;
    background:#111;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:50px;
}

.why-card{
    background:#1b1b1b;
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(201,162,39,.2);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#C9A227;
    box-shadow:0 15px 35px rgba(201,162,39,.2);
}

.why-card h3{
    color:#fff;
    margin-bottom:15px;
}

.why-card p{
    color:#ccc;
    line-height:1.8;
}

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

.testimonials{
    padding:100px 8%;
    background:#111;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#1b1b1b;
    border:1px solid rgba(201,162,39,.2);
    border-radius:20px;
    padding:35px;
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#C9A227;
    box-shadow:0 15px 35px rgba(201,162,39,.15);
}

.stars{
    color:#C9A227;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:30px;
}

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

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.client h4{
    color:#fff;
}

.client span{
    color:#C9A227;
}

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

#contact{
    padding:120px 8%;
    background:#111;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.contact-info h3{
    font-size:34px;
    margin-bottom:25px;
}

.contact-info p{
    color:#ccc;
    margin-bottom:18px;
    line-height:1.8;
}

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

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    background:#1b1b1b;

    border:1px solid #333;

    color:#fff;

    border-radius:10px;

    font-size:16px;

    outline:none;

}

.contact-form textarea{

    height:180px;

    resize:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#C9A227;

}

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

#footer{
    background:#0a0a0a;
    padding:80px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-box h2,
.footer-box h3{
    color:#fff;
    margin-bottom:20px;
}

.footer-box p,
.footer-box li{
    color:#bbb;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
    padding:0;
}

.footer-box a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer-box a:hover{
    color:#C9A227;
}

.footer-bottom{
    text-align:center;
    color:#777;
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
}

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

@media (max-width:992px){

    .navbar{
        padding:20px 5%;
    }

    .nav-menu{
        display:none;
    }

    #hero,
    #about,
    .contact-container{

        flex-direction:column;
        display:flex;
        text-align:center;

    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content h2{
        font-size:26px;
    }

    .hero-image img{
        width:100%;
        height:auto;
        margin-top:40px;
    }

    .services-grid,
    .project-grid,
    .testimonial-grid,
    .why-grid{

        grid-template-columns:1fr;

    }

    .footer-container{

        grid-template-columns:1fr;
        text-align:center;

    }

    .hero-stats{

        justify-content:center;
        flex-wrap:wrap;

    }

}

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

.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

@media (max-width:992px){

    .menu-toggle{
        display:block;
    }

    /* Hide header quote button on mobile */
    .navbar .quote-btn{
        display:none;
    }

    .nav-menu{
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#111;
        display:none;
        flex-direction:column;
        align-items:center;
        padding:20px 0;
        z-index:999;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu li{
        margin:15px 0;
    }

    .nav-menu a{
        font-size:18px;
    }

    .logo img{
        width:40px;
        height:40px;
    }

    .logo-main{
        font-size:20px;
    }

    .logo-sub{
        font-size:11px;
    }

    .logo{
        gap:8px;
    }
}
.menu-quote-btn{
    display:inline-block;
    background:#C9A227;
    color:#111;
    padding:14px 28px;
    border-radius:40px;
    font-weight:700;
    margin-top:20px;
    text-decoration:none;
}

.mobile-quote{
    margin-top:25px;
}
/* ===========================
   MOBILE (768px)
=========================== */

@media (max-width:768px){

    .hero{
        padding:110px 20px 70px;
        text-align:center;
    }

    .hero h1{
        font-size:32px;
        line-height:1.3;
    }

    .hero p{
        font-size:15px;
    }

    /* Hero Get Quote Button */
    .hero .quote-btn{
        display:inline-flex;
        padding:14px 28px;
        font-size:16px;
        border-radius:40px;
        margin-top:20px;
    }

    .contact-form input,
    .contact-form textarea{
        width:100%;
    }

    .contact-form button{

width:100%;
padding:16px;
font-size:16px;
margin-top:20px;

}
    .contact-form .btn,
    .contact-form input[type="submit"]{
        width:100%;
        display:block;
        padding:16px;
        font-size:16px;
        margin-top:20px;
    }

    body{
        overflow-x:hidden;
    }

    img{
        max-width:100%;
    }
}
/* ===========================
   WHATSAPP BUTTON
=========================== */

.whatsapp-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    z-index:9999;
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.1);
}

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

#topBtn{
    position:fixed;
    bottom:100px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#C9A227;
    color:#111;
    font-size:24px;
    cursor:pointer;
    display:block;
    z-index:9999;
    transition:0.3s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

#topBtn:hover{
    transform:translateY(-5px);
}

/* ===========================
   ACTIVE NAVIGATION
=========================== */

.nav-menu a.active{
    color:#C9A227;
    font-weight:600;
}

/* ==========================
   LOGO
========================== */

.logo a{
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-main{
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-sub{
    color: #C9A227;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo{
    transition: 0.3s ease;
}

.logo:hover{
    transform: scale(1.03);
}

.logo img{
    height:55px;
    width:auto;
    display:block;
    transition:.3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}

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

#stats{

    background:#151515;

    padding:60px 8%;

    display:grid;

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

    text-align:center;

}

.stat-box h2{

    color:#C9A227;

    font-size:48px;

    margin-bottom:10px;

}

.stat-box p{

    color:#bbb;

    letter-spacing:1px;

}

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

#process{
    padding:100px 8%;
    background:#161616;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    margin-top:60px;
}

.timeline-item{
    background:#1f1f1f;
    border:1px solid rgba(201,162,39,.2);
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    transition:.35s ease;
}

.timeline-item:hover{
    transform:translateY(-10px);
    border-color:#C9A227;
    box-shadow:0 15px 30px rgba(201,162,39,.2);
}

.timeline-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    background:#C9A227;
    color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
}

.timeline-item h3{
    color:#fff;
    margin-bottom:15px;
}

.timeline-item p{
    color:#bbb;
    line-height:1.7;
}

/* ================= FEATURED PROJECTS ================= */

#featured-projects{
    padding:100px 8%;
    background:#0d0d0d;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.project-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.1);
}

.project-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(transparent,rgba(0,0,0,.85));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
}

.project-overlay h3{
    color:#fff;
    font-size:28px;
    margin-bottom:8px;
}

.project-overlay p{
    color:#C9A227;
}

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

@media (max-width: 992px){

    .navbar{
        padding:15px 5%;
        flex-wrap:wrap;
    }

    .nav-menu{
        gap:20px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content h2{
        font-size:28px;
    }

    .about-container{
        flex-direction:column;
    }

    .services-grid,
    .project-grid,
    .testimonial-grid,
    .process-grid,
    .timeline,
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

@media (max-width:768px){

    .hero-content h1{
        font-size:36px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .services-grid,
    .project-grid,
    .testimonial-grid,
    .process-grid,
    .timeline,
    .why-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

    .logo img{
        height:50px;
    }

    .quote-btn{
        width:100%;
        text-align:center;
    }
}

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

.menu-toggle{
    display:none;
    font-size:32px;
    color:#fff;
    cursor:pointer;
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        position:fixed;
        top:0;
        left:-100%;
        width:100%;
        height:100vh;

        background:#111;

        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:35px;

        transition:.4s;
        z-index:999;
    }

    .nav-menu.active{
        left:0;
    }

    .menu-toggle{
        position:relative;
        z-index:1000;
    }
}

    .nav-menu.active{

        left:0;

    }

}

/*=========================
 CLIENT LOGOS
=========================*/

.clients{
    padding:100px 8%;
    background:#0f0f0f;
}

.client-logos{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:40px;
    align-items:center;
    margin-top:60px;
}

.client-logos img{
    width:100%;
    max-width:140px;
    margin:auto;
    opacity:.6;
    transition:.3s;
    filter:grayscale(100%);
}

.client-logos img:hover{
    opacity:1;
    filter:grayscale(0%);
    transform:scale(1.05);
}

/*=========================
 GALLERY
=========================*/

.gallery{
    padding:100px 8%;
    background:#111;
}

.gallery .section-title{
    text-align:center;
    margin-bottom:40px;
}

.gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.gallery-filter button{
    padding:12px 25px;
    border:none;
    border-radius:50px;
    background:#222;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.gallery-filter button.active,
.gallery-filter button:hover{
    background:#C9A227;
    color:#111;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    height:260px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

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

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

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

    .gallery-item{
        height:220px;
    }
}

@media(max-width:768px){

.gallery-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;

}

.gallery-grid img{

height:170px;
object-fit:cover;

}

}

/*=========================
    LIGHTBOX
=========================*/

.lightbox{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,.95);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

}

.lightbox img{

    width:90%;
    max-width:900px;

    border-radius:15px;

    animation:zoom .4s;

}

.close-lightbox{

    position:absolute;
    top:25px;
    right:35px;

    font-size:45px;

    color:white;

    cursor:pointer;

}

@keyframes zoom{

    from{

        transform:scale(.7);
        opacity:0;

    }

    to{

        transform:scale(1);
        opacity:1;

    }

}

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

.stats{
    padding:80px 8%;
    background:#181818;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    text-align:center;
}

.stat-box{
    background:#202020;
    padding:40px 20px;
    border-radius:18px;
    border:1px solid rgba(201,162,39,.2);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
    border-color:#C9A227;
}

.stat-box h2{
    font-size:48px;
    color:#C9A227;
    margin-bottom:10px;
}

.stat-box p{
    color:#ddd;
    font-size:18px;
}

/*=========================
    PRELOADER
=========================*/

#preloader{

    position:fixed;
    inset:0;

    background:#111;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:999999;

    transition:opacity .6s ease, visibility .6s ease;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:90px;
    margin-bottom:20px;

}

.loader-content h2{

    color:#fff;
    letter-spacing:3px;
    margin-bottom:25px;

}

.loader{

    width:60px;
    height:60px;

    border:5px solid rgba(255,255,255,.2);
    border-top:5px solid #C9A227;

    border-radius:50%;

    margin:auto;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

#preloader.hide{

    opacity:0;
    visibility:hidden;

}

/*=========================
    SCROLL PROGRESS BAR
=========================*/

#progress-bar{

    position:fixed;
    top:0;
    left:0;

    width:0%;
    height:4px;

    background:#C9A227;

    z-index:9999999;

    transition:width .1s linear;

}

/*=========================
        FAQ
=========================*/

.faq{
    padding:100px 8%;
    background:#181818;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    margin-bottom:20px;
    border-radius:12px;
    overflow:hidden;
    background:#222;
}

.faq-question{
    width:100%;
    padding:20px;
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    font-size:28px;
    color:#C9A227;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 20px 20px;
    color:#ccc;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

/*=========================
    SOCIAL LINKS
=========================*/

.social-links{

    display:flex;
    gap:15px;
    margin-top:20px;

}

.social-links a{

    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#222;

    color:#fff;

    transition:.4s;

    text-decoration:none;

}

.social-links a:hover{

    background:#C9A227;

    color:#111;

    transform:translateY(-5px);

}

/*=========================
    CONSULTATION POPUP
=========================*/

.popup{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:999999;

}

.popup.active{
    display:flex;
}

.popup-content{

    width:90%;
    max-width:550px;

    background:#181818;

    padding:40px;

    border-radius:20px;

    position:relative;

}

.popup-content h2{

    color:#fff;

    margin-bottom:25px;

    text-align:center;

}

.popup-content input,
.popup-content select,
.popup-content textarea{

    width:100%;

    padding:14px;

    margin-bottom:18px;

    border:none;

    border-radius:8px;

    background:#222;

    color:#fff;

}

.close-popup{

    position:absolute;

    right:20px;

    top:15px;

    color:#fff;

    font-size:30px;

    cursor:pointer;

}

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

.testimonials{
    padding:100px 8%;
    background:#111;
    text-align:center;
}

.testimonial-slider{
    max-width:800px;
    margin:50px auto 0;
    position:relative;
}

.testimonial{
    display:none;
    background:#1b1b1b;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.testimonial.active{
    display:block;
    animation:fade .6s ease;
}

.testimonial p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
    margin-bottom:25px;
    font-style:italic;
}

.testimonial h4{
    color:#C9A227;
    margin-bottom:8px;
}

.testimonial span{
    color:#aaa;
    font-size:14px;
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*=========================
    BEFORE & AFTER
=========================*/

.before-after{
    padding:100px 8%;
    background:#181818;
}

.compare-container{

    position:relative;

    width:100%;
    max-width:900px;

    margin:50px auto;

    overflow:hidden;

    border-radius:20px;

}

.compare-container img{

    width:100%;

    display:block;

    user-select:none;

    pointer-events:none;

}

.after-wrapper{

    position:absolute;

    top:0;
    left:0;

    width:50%;

    height:100%;

    overflow:hidden;

}

.after-img{

    width:100%;

    height:100%;

    object-fit:cover;

}

#compareSlider{

    position:absolute;

    left:50%;

    bottom:20px;

    transform:translateX(-50%);

    width:80%;

    cursor:pointer;

}

/*=========================
      OUR CLIENTS
=========================*/

.client-slider{
    overflow:hidden;
    width:100%;
    margin-top:60px;
}

.client-track{
    display:flex;
    align-items:center;
    gap:60px;
    width:max-content;
    animation:scrollLogos 25s linear infinite;
}

.client-track img{
    width:180px;
    height:100px;
    object-fit:contain;
    background:#1b1b1b;
    padding:20px;
    border-radius:15px;
    filter:grayscale(100%);
    transition:.3s;
}

.client-track img:hover{
    filter:grayscale(0);
    border:1px solid #C9A227;
}

.client-slider:hover .client-track{
    animation-play-state:paused;
}

@keyframes scrollLogos{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

.client-logos{

    display:grid;

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

    gap:30px;

    margin-top:60px;

    align-items:center;

}

.client-logos img{

    width:100%;
    height:120px;

    object-fit:contain;

    background:#1b1b1b;

    padding:25px;

    border-radius:18px;

    transition:.4s;

    filter:grayscale(100%);

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

}

.client-logos img:hover{

    transform:translateY(-8px);

    filter:grayscale(0);

    border-color:#C9A227;

    box-shadow:0 12

    .client-logos img:nth-child(odd){
    animation:float 4s ease-in-out infinite;
}

.client-logos img:nth-child(even){
    animation:float 4s ease-in-out infinite 2s;
}

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

}

.clients .section-title::after{

    content:"";

    width:90px;
    height:4px;

    background:#C9A227;

    display:block;

    margin:18px auto 0;

    border-radius:20px;

}

/* ===================================================
   PREMIUM MOBILE RESPONSIVE (Desktop Unchanged)
=================================================== */

@media screen and (max-width:768px){

*{
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
}

/* Header */

header{
    padding:12px 18px;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:42px;
    height:42px;
}

.logo-text h1{
    font-size:18px;
    margin:0;
    line-height:1.2;
}

.logo-text p{
    display:none;
}

/* Mobile Menu */

.menu-toggle{
    display:block;
    font-size:28px;
    cursor:pointer;
}

/* Hide desktop button */

.navbar .quote-btn{
    display:none;
}

/* Hero */

.hero{
    padding:110px 20px 70px;
    text-align:center;
}

.hero h1{
    font-size:32px;
    line-height:1.25;
}

.hero p{
    font-size:15px;
    margin:15px 0 25px;
}

.hero .quote-btn{
    display:flex;
    justify-content:center;
    align-items:center;

    width:320px;
    max-width:90%;
    height:58px;

    margin:25px auto 0;

    background:linear-gradient(135deg,#D4AF37,#C79A12);
    color:#111 !important;

    font-size:18px;
    font-weight:700;
    text-decoration:none;

    border:none;
    border-radius:50px;

    box-shadow:0 12px 30px rgba(212,175,55,.35);

    transition:.3s;
}

.hero .quote-btn:hover{

    background:#111;
    color:#D4AF37 !important;
    border:2px solid #D4AF37;

}



/* Sections */

section{
    padding:60px 20px;
}

.section-title{
    font-size:28px;
}

/* Cards */

.services-grid,
.projects-grid,
.gallery-grid,
.stats-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.services-grid{

grid-template-columns:1fr;

}
/* Gallery */

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
}

/* Contact */

.contact{
    padding:60px 20px;
}

.contact-container{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.contact-form{
    width:100%;
}


.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    font-size:15px;
}

.contact-form textarea{
    min-height:140px;
}

.contact-form button{
    width:100%;
    display:block;
    padding:16px;
    font-size:17px;
    margin-top:20px;
}

/* Footer */

.footer{
    text-align:center;
}

/* Floating Buttons */

.whatsapp-btn{
    width:55px;
    height:55px;
    right:18px;
    bottom:20px;
}

.back-to-top{
    width:50px;
    height:50px;
    right:18px;
    bottom:90px;
}

img{
    max-width:100%;
    height:auto;
}

}

@media (max-width:768px){

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 20px;
}

.logo a{
    display:flex;
    align-items:center;
    gap:8px;
}

.logo img{
    width:42px;
    height:42px;
}

.logo-main{
    font-size:20px;
    display:block;
    line-height:1;
}

.logo-sub{
    display:block;
    font-size:10px;
    letter-spacing:2px;
}

.navbar>.quote-btn{
    display:none;
}

.menu-toggle{
    display:block;
    font-size:28px;
}

}

