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

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#fff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.top-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    padding-top:18px;
    padding-bottom:12px;
}

.logo img{
    height:250px;
    width:auto;
    transition:.3s;
}

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

.nav-bar{
    height:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-top:1px solid rgba(255,255,255,.08);
}

nav{
    display:flex;
    gap:42px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    font-size:15px;
    letter-spacing:.5px;
}

nav a:hover{
    color:#ff2a2a;
}

.nav-btn,
.btn-primary{
    background:#ff2a2a;
    color:#fff;
    text-decoration:none;
    padding:16px 28px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.scrolled .top-logo{

    max-height:0;

    padding-top:0;
    padding-bottom:0;

    opacity:0;

    transform:translateY(-50px);
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    text-decoration:none;
    padding:16px 28px;
    border-radius:14px;
    font-weight:700;
}

.hero{
    min-height:100vh;
    padding-top:380px;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

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

.hero-noise{
    position:absolute;
    inset:0;
    opacity:.08;
    background-image:url('https://grainy-gradients.vercel.app/noise.svg');
}

.hero-content{
    position:relative;
    z-index:3;
    max-width:900px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,42,42,.12);
    border:1px solid rgba(255,42,42,.35);
    padding:12px 18px;
    border-radius:100px;
    margin-bottom:25px;
    color:#ff4b4b;
    font-size:14px;
    letter-spacing:1px;
}

.hero h1{
    font-size:92px;

    line-height:1.15;

    letter-spacing:-1px;

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

    margin-bottom:30px;
}

.hero h1 span{
    color:#ff2a2a;
}

.hero p{
    font-size:22px;
    color:#ccc;
    max-width:700px;
    line-height:1.7;
}

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

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

.stat h3{
    font-size:52px;
    font-family:'Anton',sans-serif;
    color:#ff2a2a;
}

.stat span{
    color:#aaa;
}

section{
    padding:140px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:32px;
}

.section-tag{
    color:#ff2a2a;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
    display:block;
}

.about h2,
.section-header h2,
.cta h2{
    font-size:56px;
    line-height:1.1;
    margin-bottom:30px;
    font-family:'Anton',sans-serif;
}

.about p{
    color:#bdbdbd;
    line-height:1.9;
    margin-bottom:25px;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

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

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    height:420px;
}

.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.service-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:40px;
    background:linear-gradient(to top,rgba(0,0,0,.9),transparent);
}

.service-overlay h3{
    font-size:34px;
    font-family:'Anton',sans-serif;
}

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

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

.gallery-item{
    overflow:hidden;
    border-radius:28px;
    height:350px;
}

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

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

.clients{
    background:#090909;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

.client-logo{
    background:#ffffff;
    border-radius:24px;
    padding:35px;
    border:1px solid rgba(255,255,255,.08);
    transition:.4s;

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

    min-height:170px;
}

.client-logo img{
    max-width:100%;
    max-height:90px;
    width:auto;
    height:auto;

    object-fit:contain;

    filter:grayscale(100%);
    opacity:.75;
    transition:.4s;
}

.client-logo:hover{
    border-color:#ff2a2a;
    transform:translateY(-5px);
}

.client-logo:hover img{
    filter:none;
    opacity:1;
}

.cta-box{
    background:#111;
    border-radius:36px;
    padding:90px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}

.cta p{
    color:#bbb;
    margin-bottom:35px;
}

.footer{
    background:#020202;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:90px;
}

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

.footer-logo{
    height:70px;
    margin-bottom:25px;
}

.footer h4{
    margin-bottom:20px;
}

.footer p{
    color:#999;
    margin-bottom:10px;
    line-height:1.8;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.06);
    text-align:center;
    padding:25px;
    color:#666;
}

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

@media(max-width:980px){

    nav,
    .nav-btn{
        display:none;
    }

    .hero h1{
        font-size:58px;
    }

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

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

    .hero-stats{
        gap:30px;
        flex-wrap:wrap;
    }

    .about-grid,
    .services-grid,
    .gallery-grid,
    .clients-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-box{
        padding:50px 30px;
    }

    .about h2,
    .section-header h2,
    .cta h2{
        font-size:42px;
    }

}

.map-section{
    width:100%;
    height:500px;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.08);
}

.map-section iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(100%) contrast(1.1) brightness(.85);
}
.contact-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-bottom:60px;
}

.contact-card{
background:#111;
border-radius:30px;
padding:45px;
text-align:center;
border:1px solid rgba(255,255,255,.08);
}

.contact-card i{
font-size:42px;
color:#ff2a2a;
margin-bottom:20px;
}

.contact-card h3{
font-family:'Anton',sans-serif;
font-size:30px;
margin-bottom:10px;
}

.contact-card p{
color:#aaa;
}

.contact-form-box{
background:#111;
border-radius:36px;
padding:60px;
border:1px solid rgba(255,255,255,.08);
}

.form-grid{
display:grid;
gap:20px;
}

.form-grid input,
.form-grid textarea{
background:#050505;
border:1px solid rgba(255,255,255,.08);
border-radius:16px;
color:#fff;
padding:18px 22px;
font-size:16px;
font-family:'Inter',sans-serif;
}

.form-grid textarea{
min-height:220px;
resize:vertical;
}

.form-grid input:focus,
.form-grid textarea:focus{
outline:none;
border-color:#ff2a2a;
}

.contact-form-box .btn-primary{
margin-top:25px;
border:none;
cursor:pointer;
}

@media(max-width:980px){

```
.contact-cards{
    grid-template-columns:1fr;
}

.contact-form-box{
    padding:35px;
}
```

}
