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

body{
    background:#0b1220;
    color:#fff;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* NAVBAR */
.navbar{
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:15px 0;
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    height:50px;
}

.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
}

.nav-links a:hover{
    color:#d4a373;
}

.btn{
    background:#d4a373;
    color:#111;
    padding:10px 16px;
    border-radius:10px;
    text-decoration:none;
}

/* HAMBURGER */
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:3px;
    background:#fff;
}

/* HERO */
.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px 0;
    gap:50px;
}

.hero-text{
    flex:1;
}

.hero-text h4{
    color:#d4a373;
}

.hero-text h1{
    font-size:3rem;
    margin:15px 0;
}

.hero-text p{
    color:#cbd5e1;
    margin-bottom:20px;
}

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

.primary{
    background:#d4a373;
    color:#111;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
}

.secondary{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    padding:12px 18px;
    border-radius:10px;
    text-decoration:none;
}

/* HERO IMAGE */
.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    border-radius:20px;
    height:400px;
    object-fit:cover;
}

/* PROJECTS */
.projects{
    padding:60px 0;
}

.projects h2{
    margin-bottom:20px;
}

.project-grid{
    display:flex;
    gap:20px;
}

.project-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
}

/* CONTACT */
.contact{
    padding:80px 0;
}

.contact-box{
    background:#111a2e;
    padding:40px;
    border-radius:20px;
}

.contact-box h2{
    margin-bottom:20px;
}

form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

input, textarea{
    padding:12px;
    border-radius:10px;
    border:none;
    outline:none;
}

textarea{
    min-height:120px;
}

button{
    background:#d4a373;
    border:none;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

/* MOBILE */
@media(max-width:768px){

    .hero{
        flex-direction:column;
    }

    .hero-text h1{
        font-size:2rem;
    }

    .nav-links{
        display:none;
        position:absolute;
        top:70px;
        right:0;
        background:#0b1220;
        flex-direction:column;
        width:200px;
        padding:20px;
    }

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

    .hamburger{
        display:flex;
    }

    .project-grid{
        flex-direction:column;
    }
}

.page-title{
    padding:120px 0 30px;
    text-align:center;
}

.page-title h1{
    font-size:2.5rem;
    margin-bottom:10px;
}

.page-title p{
    color:#cbd5e1;
}

/* FILTERS */
.filters{
    display:flex;
    gap:10px;
    justify-content:center;
    flex-wrap:wrap;
    padding:20px 0 40px;
}

.filter-btn{
    padding:10px 16px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.2);
    background:transparent;
    color:white;
    cursor:pointer;
    transition:.3s;
}

.filter-btn.active,
.filter-btn:hover{
    background:#d4a373;
    color:#111;
}

/* GALLERY */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    padding-bottom:80px;
}

.item{
    overflow:hidden;
    border-radius:15px;
}

.item img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.4s;
}

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

.hide{
    display:none;
}

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

.page-header{
    padding:120px 0 40px;
    text-align:center;
}

.page-header h1{
    font-size:2.5rem;
    margin-bottom:10px;
}

.page-header p{
    color:#cbd5e1;
}

/* SERVICES GRID */
.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    padding-bottom:80px;
}

.service-card{
    background:#111a2e;
    padding:30px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-5px);
    border-color:#d4a373;
}

.service-card h2{
    margin-bottom:10px;
    font-size:1.3rem;
}

.service-card p{
    color:#cbd5e1;
    line-height:1.6;
}

/* CTA */
.cta{
    padding:60px 0;
}

.cta-box{
    text-align:center;
    background:#111a2e;
    padding:50px;
    border-radius:20px;
}

.cta-box h2{
    font-size:2rem;
    margin-bottom:10px;
}

.cta-box p{
    color:#cbd5e1;
    margin-bottom:20px;
}

/* MOBILE */
@media(max-width:768px){

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

    .cta-box h2{
        font-size:1.5rem;
    }
}

.about{
    padding:60px 0;
}

.about-grid{
    display:flex;
    gap:50px;
    align-items:center;
}

.about-text{
    flex:1;
}

.about-text h2{
    margin-bottom:15px;
}

.about-text p{
    color:#cbd5e1;
    line-height:1.7;
    margin-bottom:15px;
}

.about-text h3{
    margin-top:20px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:15px;
    height:400px;
    object-fit:cover;
}

/* TRUST */
.trust{
    padding:60px 0;
}

.trust h2{
    text-align:center;
    margin-bottom:30px;
}

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

.trust-card{
    background:#111a2e;
    padding:25px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.08);
}

.trust-card h3{
    margin-bottom:10px;
}

.trust-card p{
    color:#cbd5e1;
    font-size:0.95rem;
    line-height:1.5;
}

/* PROCESS */
.process{
    padding:60px 0;
}

.process h2{
    text-align:center;
    margin-bottom:30px;
}

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

.process-step{
    background:#111a2e;
    padding:25px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.08);
}

.process-step p{
    color:#cbd5e1;
    margin-top:10px;
}

/* MOBILE */
@media(max-width:768px){

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

    .trust-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .about-image img{
        height:300px;
    }
}

.contact{
    padding:60px 0;
}

.contact-grid{
    display:flex;
    gap:40px;
}

/* FORM */
.contact-form{
    flex:1;
    background:#111a2e;
    padding:30px;
    border-radius:15px;
    border:1px solid rgba(255,255,255,0.08);
}

.contact-form h2{
    margin-bottom:20px;
}

form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

input, select, textarea{
    padding:12px;
    border-radius:10px;
    border:none;
    outline:none;
    font-family:inherit;
}

textarea{
    min-height:120px;
    resize:none;
}

button{
    background:#d4a373;
    border:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}

/* INFO */
.contact-info{
    flex:1;
}

.contact-info h2{
    margin-bottom:15px;
}

.contact-info p{
    margin-bottom:10px;
    color:#cbd5e1;
}

/* BUTTONS */
.contact-buttons{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.call-btn,
.whatsapp-btn{
    flex:1;
    text-align:center;
    padding:12px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.call-btn{
    background:#d4a373;
    color:#111;
}

.whatsapp-btn{
    background:#25D366;
    color:white;
}

/* MAP */
.map{
    margin-top:20px;
    border-radius:15px;
    overflow:hidden;
}

/* MOBILE */
@media(max-width:768px){

    .contact-grid{
        flex-direction:column;
    }

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