html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Poppins, sans-serif;
    background:#f8fafc;
}

.hero{
    width:100%;
    height:100vh;
    background-image:linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("background.png");
    background-size:cover;
    background-position:center;
    color:white;
}

nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:rgba(15,23,42,0.85);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,0.1);
    z-index:1000;
}

.logo{
    width:65px;
    display:block;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:0.3s;
}

nav ul li a:hover{
    color:#facc15;
}

.hero-content{
    height:calc(100vh - 105px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 20px;
    animation:fadeUp 1.2s ease;
}

.hero-content h1{
    font-size:65px;
    max-width:900px;
}

.hero-content p{
    margin-top:20px;
    font-size:22px;
}

.typing-text{
    margin-top:20px;
    font-size:28px;
    color:#facc15;
    min-height:40px;
}

.btn{
    display:inline-block;
    margin-top:30px;
    background:#facc15;
    color:black;
    padding:14px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
    box-shadow:0 5px 20px rgba(250,204,21,0.35);
    border:none;
    cursor:pointer;
}

.btn:hover{
    background:white;
    transform:translateY(-3px);
}

.services,
.how-it-works,
.contact{
    padding:80px 8%;
    text-align:center;
    background:#f8fafc;
}

.why-us{
    padding:60px 8%;
    text-align:center;
    background:white;
}

.services h2,
.how-it-works h2,
.contact h2,
.reviews h2{
    font-size:38px;
    margin-bottom:45px;
    color:#0f172a;
}

.why-us h2{
    font-size:36px;
    margin-bottom:40px;
    color:#0f172a;
}

.services-container,
.why-container,
.reviews-container,
.steps-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    perspective:1000px;
}

.service-box,
.why-box,
.review-card,
.step-box{
    padding:28px;
    border-radius:20px;
    transition:0.3s;
    transform-style:preserve-3d;
}

.service-box,
.step-box,
.why-box{
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.why-box{
    background:#f8fafc;
}

.service-box:hover,
.why-box:hover,
.review-card:hover,
.step-box:hover{
    transform:translateY(-10px) rotateX(6deg) rotateY(-6deg);
}

.service-box:hover{
    background:#0f172a;
    box-shadow:0 10px 30px rgba(250,204,21,0.25);
}

.service-box h3,
.why-box h3,
.step-box h3{
    margin-bottom:15px;
    color:#0f172a;
}

.service-box p,
.why-box p,
.step-box p{
    color:#475569;
    line-height:1.6;
}

.service-box:hover h3,
.service-box:hover p{
    color:white;
}

.step-number{
    width:55px;
    height:55px;
    margin:0 auto 20px auto;
    background:#facc15;
    color:#020617;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
}

.reviews{
    padding:80px 8%;
    background:#0f172a;
    color:white;
    text-align:center;
}

.reviews h2{
    color:white;
}

.review-card{
    background:#111827;
    border:1px solid #334155;
}

.review-card h3{
    color:#facc15;
    margin-bottom:15px;
}

.review-card p{
    color:#e5e7eb;
    line-height:1.7;
}

.review-card span{
    display:block;
    margin-top:18px;
    color:#facc15;
    font-weight:bold;
}

.contact{
    background:white;
}

.contact p{
    color:#475569;
    margin-bottom:40px;
}

.quote-form{
    max-width:700px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.quote-form input,
.quote-form textarea{
    width:100%;
    padding:16px;
    border:none;
    border-radius:14px;
    background:#f1f5f9;
    font-size:16px;
    font-family:Poppins, sans-serif;
}

.quote-form textarea{
    min-height:100px;
    resize:none;
}

.quote-form input:focus,
.quote-form textarea:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(250,204,21,0.4);
}

.quote-form .btn{
    width:fit-content;
    margin:25px auto 0 auto;
}

.contact-buttons{
    margin-top:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.contact-buttons .btn{
    margin:0;
    min-width:150px;
    text-align:center;
}

footer{
    background:#020617;
    color:white;
    text-align:center;
    padding:50px 8%;
}

footer h2{
    margin-bottom:15px;
}

footer p{
    color:#94a3b8;
}

.footer-links{
    margin:25px 0;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin:0 12px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#facc15;
}

.copyright{
    margin-top:25px;
    font-size:14px;
}

.whatsapp-float,
.instagram-float{
    position:fixed;
    width:60px;
    height:60px;
    right:25px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.25);
    z-index:1000;
    transition:0.3s;
}

.whatsapp-float{
    bottom:25px;
    background:#25D366;
}

.instagram-float{
    bottom:100px;
    background:#E1306C;
}

.whatsapp-float:hover,
.instagram-float:hover{
    transform:scale(1.1);
}

.whatsapp-float img{
    width:34px;
}

.instagram-float img{
    width:32px;
}

#cookie-banner{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;
    background:#020617;
    color:white;
    padding:18px 25px;
    border-radius:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:999999;
    box-shadow:0 8px 25px rgba(0,0,0,0.35);
}

#cookie-banner button{
    background:#facc15;
    color:#020617;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#020617;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    transition:opacity 0.8s ease, visibility 0.8s;
}

.loader-logo{
    width:140px;
    animation:logoPulse 1.8s infinite ease-in-out;
}

.loader-hidden{
    opacity:0;
    visibility:hidden;
}

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

img{
    user-select:none;
    -webkit-user-drag:none;
}

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#020617;
}

::-webkit-scrollbar-thumb{
    background:#facc15;
    border-radius:10px;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes logoPulse{
    0%{
        transform:scale(1);
        opacity:0.7;
    }

    50%{
        transform:scale(1.08);
        opacity:1;
    }

    100%{
        transform:scale(1);
        opacity:0.7;
    }
}

@media(max-width:768px){

    nav{
        padding:16px 20px;
        flex-direction:column;
        gap:15px;
    }

    .logo{
        width:55px;
    }

    nav ul{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:12px;
    }

    nav ul li{
        margin:0;
    }

    nav ul li a{
        font-size:14px;
    }

    .hero-content{
        height:calc(100vh - 140px);
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:18px;
    }

    .typing-text{
        font-size:22px;
    }

    .services,
    .how-it-works,
    .reviews,
    .contact,
    .why-us{
        padding:60px 6%;
    }

    .contact h2,
    .services h2,
    .how-it-works h2,
    .reviews h2,
    .why-us h2{
        font-size:32px;
    }

    .quote-form{
        max-width:100%;
    }

    .quote-form .btn{
        width:240px;
        margin:25px auto 0 auto;
    }

    .contact-buttons{
        flex-direction:column;
        margin-top:40px;
        gap:15px;
    }

    .contact-buttons .btn{
        width:240px;
        margin:0;
    }

    .whatsapp-float,
    .instagram-float{
        width:55px;
        height:55px;
        right:18px;
    }

    .instagram-float{
        bottom:90px;
    }

    .whatsapp-float{
        bottom:20px;
    }

    #cookie-banner{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
}