
/* ===========================
   CSS RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
/* ===========================
   BODY
=========================== */

body{
    font-family:'Open Sans', sans-serif;
    background:#ffffff;
    color:#333;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===========================
   HEADER
=========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#D4AF37;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
    z-index:1000;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 30px;

}

/* ===========================
   LOGO
=========================== */

.logo img{

    height:70px;

    width:auto;

}

/* ===========================
   NAVIGATION LINKS
=========================== */

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    position:relative;

    color:#000;

    font-family:'Poppins',sans-serif;

    font-size:16px;

    font-weight:600;

    transition:color .3s ease;

    padding-bottom:5px;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:#fff;

    transition:width .3s ease;

}

.nav-links a:hover{

    color:#fff;

}

.nav-links a:hover::after{

    width:100%;

}

/* HAMBURGER MENU */
.menu-toggle{
    display:none;
    font-size:28px;
    color:#000;
    cursor:pointer;
}

/* MOBILE NAVIGATION */
@media (max-width: 768px){

    .navbar{
        position:relative;
        padding:15px 20px;
    }

    .menu-toggle{
        display:block;
    }

    .desktop-btn{
        display:none;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#D4AF37;
        flex-direction:column;
        align-items:center;
        gap:0;
        max-height:0;
        overflow:hidden;
        transition:max-height .4s ease;
        box-shadow:0 10px 20px rgba(0,0,0,.1);
    }

    .nav-links.active{
        max-height:400px;
    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:18px 0;
        border-bottom:1px solid rgba(0,0,0,.08);
        color:#000;
    }

    .nav-links a:hover{
        background:rgba(255,255,255,.15);
        color:#fff;
    }
}
/* ===========================
   BUTTON
=========================== */

.btn{

    background:#000;

    color:#fff;

    padding:12px 26px;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:#fff;

    color:#000;

    transform:translateY(-2px);

}/* ===========================
   HERO SECTION
=========================== */

.hero{
    min-height:100vh;
    background:#0F172A;
    display:flex;
    align-items:center;
    padding:120px 50px 80px;
}

.hero-content{
    max-width:1200px;
    width:100%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:60px;
    font-family:'Poppins',sans-serif;
    color:#fff;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text span{
    color:#D4AF37;
}

.hero-text p{
    color:#ddd;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

/* ===========================
   HERO IMAGE
=========================== */

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
    height:auto;
    object-fit:contain;
}/* ===========================
   HERO TAG
=========================== */

.hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(212,175,55,.15);

    color:#D4AF37;

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:25px;

    font-size:15px;

    font-weight:600;

}

.hero-tag i{

    font-size:16px;

}/* ===========================
   HERO FEATURES
=========================== */

.hero-features{

    display:flex;

    gap:30px;

    margin-top:40px;

    flex-wrap:wrap;

}

.hero-features span{

    color:#fff;

    display:flex;

    align-items:center;

    gap:8px;

    font-size:15px;

}

.hero-features i{

    color:#D4AF37;

}/* ===========================
   ABOUT SECTION
=========================== */

.about{
    padding:20px 50px;
    background:#ffffff;
}

.container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.about-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    background:#D4AF37;
    color:#000;
    padding:8px 10px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-family:'Poppins',sans-serif;
    font-size:42px;
    margin-bottom:20px;
    color:#0F172A;
}

.about-content p{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.about-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.about-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.about-item i{
    color:#D4AF37;
}/* ===========================
   SERVICES
=========================== */

.services{

    padding:50px 50px;

    background:#F8FAFC;

}

.services-container{

    max-width:1200px;

    margin:auto;

    text-align:center;

}

.services h2{

    font-size:42px;

    font-family:'Poppins',sans-serif;

    margin:20px 0;

    color:#0F172A;

}

.section-description{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

    margin-bottom:60px;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card i{

    font-size:40px;

    color:#D4AF37;

    margin-bottom:20px;

}

.service-card h3{

    margin-bottom:15px;

    font-size:24px;

    color:#0F172A;

}

.service-card p{

    color:#666;

    line-height:1.8;

}/* ===========================
   HOW IT WORKS
=========================== */

.process{

    padding:10px 20px;

    background:#ffffff;

}

.process-container{

    max-width:1200px;

    margin:auto;

    text-align:center;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.process-card{

    background:#F8FAFC;

    padding:40px 25px;

    border-radius:20px;

    position:relative;

    transition:.4s;

}

.process-card:hover{

    transform:translateY(-8px);

}

.number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:40px;

    font-weight:bold;

    color:rgba(212,175,55,.25);

}

.process-card i{

    font-size:45px;

    color:#D4AF37;

    margin-bottom:20px;

}

.process-card h3{

    margin-bottom:15px;

    color:#0F172A;

}

.process-card p{

    line-height:1.8;

    color:#666;

}/* ===========================
   WHY CHOOSE US
=========================== */

.why-us{

    padding:20px 5px;

    background:#0F172A;

}

.why-us .container{

    max-width:1200px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.why-image{

    flex:1;

}

.why-image img{

    width:100%;

    border-radius:20px;

}

.why-content{

    flex:1;

}

.why-content h2{

    color:#fff;

    font-size:42px;

    margin:20px 0;

    font-family:'Poppins',sans-serif;

}

.why-content p{

    color:#ddd;

    line-height:1.8;

    margin-bottom:35px;

}

.why-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.why-item{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:600;

}

.why-item i{

    color:#D4AF37;

}/*============================
CONTACT SECTION
=============================*/

.contact{

    padding:20px 5px;

    background:#F8FAFC;

}

.contact-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

}

.contact h2{

    font-size:40px;

    margin:20px 0;

    color:#0F172A;

}

.contact p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

/* CONTACT INFO */

.contact-info{

    margin-bottom:35px;

}

.info-box{

    display:flex;

    gap:20px;

    margin-bottom:20px;

}

.info-box i{

    width:55px;

    height:55px;

    background:#D4AF37;

    color:#000;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

}

.info-box h4{

    margin-bottom:5px;

}

.info-box span{

    color:#666;

}

/* FORM */

form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

form input,
form textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    outline:none;

}

form textarea{

    height:160px;

    resize:none;

}

form button{

    border:none;

    cursor:pointer;

}

/* FAQ */

.contact-right .faq-item{

    background:#fff;

    border-radius:12px;

    margin-bottom:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    overflow:hidden;

}

.contact-right .faq-question{

    width:100%;

    border:none;

    background:#fff;

    padding:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

}

.contact-right .faq-question span{

    color:#D4AF37;

    font-size:24px;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:all .4s ease;

    padding:0 20px;

    color:#666;

    line-height:1.8;

}
.faq-item.active .faq-answer{

    max-height:200px;

    padding:0 20px 20px;

}.faq-item.active .faq-question span{

    transform:rotate(45deg);

    transition:.3s;

}.faq-question span{

    transition:0.3s ease;

}/*==========================
PREMIUM FOOTER
==========================*/

.footer{

    background:#08111F;

    color:#fff;

}

.footer-top-line{

    height:5px;

    background:#D4AF37;

}

.footer-container{

    max-width:1200px;

    margin:auto;

    padding:70px 40px;

}

.footer-brand{

    text-align:center;

    margin-bottom:60px;

}

.footer-logo{

    width:120px;

    margin-bottom:20px;

}

.footer-brand h2{

    color:#D4AF37;

    margin-bottom:20px;

    font-size:34px;

}

.footer-brand p{

    color:#bbb;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:50px;

    margin-bottom:60px;

}

.footer-box h3{

    color:#D4AF37;

    margin-bottom:25px;

}

.footer-box ul{

    list-style:none;

}

.footer-box li{

    margin-bottom:15px;

    color:#ccc;

}

.footer-box a{

    color:#ccc;

    text-decoration:none;

    transition:.3s;

}

.footer-box a:hover{

    color:#D4AF37;

    padding-left:8px;

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-bottom:40px;

}

.footer-social a{

    width:55px;

    height:55px;

    background:#D4AF37;

    color:#000;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    transition:.3s;

}

.footer-social a:hover{

    background:#fff;

    transform:translateY(-6px);

}

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.1);

    padding:25px;

    color:#999;

}.contact-btn{

    width:100%;

    padding:18px;

    background:#D4AF37;

    color:#000;

    border:none;

    border-radius:50px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.3s ease;
}
.nav-links a:hover{
    color:red !important;
}/* =================================
   MOBILE RESPONSIVE DESIGN
================================= */

@media (max-width: 768px) {

    /* NAVBAR */
    .navbar{
        padding:15px 20px;
        flex-wrap:wrap;
        gap:15px;
    }

    .nav-links{
        width:100%;
        justify-content:center;
        gap:20px;
        flex-wrap:wrap;
    }

    .btn{
        margin:auto;
    }

    /* HERO */
    .hero{
        padding:120px 20px 60px;
        text-align:center;
    }

    .hero-content{
        flex-direction:column;
    }

    .hero-text h1{
        font-size:38px;
    }

    .hero-text p{
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-image img{
        max-width:100%;
    }

    /* ABOUT */
    .about{
        padding:60px 20px;
    }

    .container{
        flex-direction:column;
    }

    .about-content h2{
        font-size:32px;
    }

    /* SERVICES */
    .services{
        padding:60px 20px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .services h2{
        font-size:32px;
    }

    /* PROCESS */
    .process{
        padding:60px 20px;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    /* WHY CHOOSE US */
    .why-us{
        padding:60px 20px;
    }

    .why-us .container{
        flex-direction:column;
    }

    .why-content h2{
        font-size:32px;
    }

    .why-list{
        grid-template-columns:1fr;
    }

    /* CONTACT + FAQ */
    .contact{
        padding:60px 20px;
    }

    .contact-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact h2{
        font-size:32px;
    }

    /* FOOTER */
    .footer-container{
        padding:60px 20px;
    }

    .footer-brand h2{
        font-size:28px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-social{
        flex-wrap:wrap;
    }

    .footer-bottom{
        font-size:14px;
    }
}/* =================================
   FLOATING WHATSAPP BUTTON
================================= */

.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    z-index:1000;
    transition:all .3s ease;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:translateY(-5px) scale(1.08);
    background:#1ebe5d;
}

@keyframes whatsappPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,0.7);
    }
    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}/* =================================
   BACK TO TOP BUTTON
================================= */

.back-to-top{
    position:fixed;
    bottom:105px;
    right:25px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#D4AF37;
    color:#000;
    font-size:18px;
    cursor:pointer;
    display:none;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
    z-index:999;
    transition:all .3s ease;
}

.back-to-top:hover{
    transform:translateY(-4px);
    background:#fff;
}/* =================================
   SCROLL REVEAL ANIMATION
================================= */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}