*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:
        linear-gradient(rgba(255,255,255,0.25), rgba(255,255,255,0.25)),
        url("./images/background.jpg");
    background-size:cover;
    background-attachment:fixed;
    background-position:center;
}
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    padding:0 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,0.55);
    backdrop-filter:blur(8px);
    z-index:99999;
}

.nav-logo img{
    height:150px;
    width:auto;
    display:block;
    transition:.3s ease; 
    transform:translateY(8px);
}

.nav-logo img:hover{
    transform:scale(1.05);
}

.nav-links{
    display:flex;
    gap:28px;
    align-items:center;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

.nav-links a:hover{
    color:#cda24f;
}

.nav-whatsapp{
    background:#25D366;
    padding:10px 18px;
    border-radius:25px;
}
/* HERO */
.hero{
    height:100vh;
    background-image:url("./images/banner.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
}

.hero-order-link{
    position:absolute;
    right:17%;
    bottom:25%;
    width:700px;
    height:150px;
    display:block;
    z-index:20;
    cursor:pointer;
}

.offer-link{
    display:none;
}

.hero-whatsapp-link{
    position:absolute;
    right:10%;
    bottom:0%;
    width:430px;
    height:120px;
    display:block;
    z-index:20;
    cursor:pointer;
}

.mobile-hero-buttons{
    display:none;
}

/* BENEFIT BUTTONS */
.benefit-link{
    position:absolute;
    bottom:3%;
    height:90px;
    background:transparent;
    border:none;
    cursor:pointer;
    display:block;
    z-index:10;
}

.delivery-btn{
    left:20%;
    width:330px;
}

.clean-btn{
    left:42%;
    width:360px;
}

.packages-btn{
    left:59%;
    width:320px;
}

/* ABOUT */

.about{
    max-width:900px;
    margin:70px auto;
    padding:55px 45px;
    background:rgba(255,255,255,0.9);
    border-radius:22px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.section-tag{
    color:#b9893d;
    font-weight:bold;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:14px;
}

.about h2{
    font-size:40px;
    color:#111;
    margin:15px 0 25px;
}

.about p{
    max-width:720px;
    margin:0 auto 18px;
    font-size:19px;
    line-height:1.7;
    color:#3d3d3d;
}

/* PACKAGES */
#pachete{
    padding:80px 20px;
    text-align:center;
}

#pachete h2{
    font-size:36px;
    margin-bottom:15px;
}

.packages-note{
    max-width:800px;
    margin:0 auto 40px;
    color:#050000;
    line-height:1.6;
}

.packages-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 320px));
    justify-content:center;
    gap:30px;
}

.packages-gallery img{
    width:100%;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.25);
    cursor:pointer;
    transition:transform 0.3s ease;
}

.packages-gallery img:hover{
    transform:scale(1.05);
}

/* RENT CALCULATOR */
#inchiriaza{
    padding:80px 20px;
    text-align:center;
}

#inchiriaza h2{
    font-size:36px;
    margin-bottom:30px;
}

.rent-box{
    max-width:700px;
    margin:0 auto;
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 0 20px rgba(0,0,0,0.15);
}

.rent-box label{
    display:block;
    text-align:left;
    margin-top:15px;
    font-weight:600;
}

.rent-box input,
.rent-box select,
.rent-box textarea{
    width:100%;
    padding:12px;
    margin-top:6px;
    border:1px solid #ddd;
    border-radius:8px;
}

button{
    width:100%;
    padding:15px;
    margin-top:20px;
    border:none;
    background:#c9a76a;
    color:white;
    font-size:18px;
    border-radius:8px;
    cursor:pointer;
}

.rent-btn{
    background:#25D366;
}

.small-note{
    font-size:0.85rem;
    color:#666;
    font-style:italic;
    margin-top:8px;
}

.extras-toggle{
    width:100%;
    margin-top:20px;
    padding:14px;
    background:#fff4dd;
    color:#9b6f20;
    border:1px solid #d6b26b;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
    text-align:left;
}

.extras-content{
    display:none;
    margin-top:15px;
    padding:15px;
    background:white;
}

#totalInchiriere{
    font-size:1.4rem;
    font-weight:bold;
    text-align:center;
    color:#8b6b2f;
    margin-top:20px;
}

/* LIGHTBOX */
.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.9);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.lightbox img{
    max-width:95%;
    max-height:95%;
    border-radius:10px;
}

.close{
    position:absolute;
    top:20px;
    right:30px;
    color:white;
    font-size:45px;
    cursor:pointer;
}

/* BENEFIT MODAL */
.benefit-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.benefit-box{
    background:white;
    max-width:500px;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    position:relative;
}

.benefit-close{
    position:absolute;
    right:20px;
    top:10px;
    font-size:32px;
    cursor:pointer;
}

.benefit-box h2{
    margin-bottom:15px;
    color:#c9a76a;
}

/* FLOATING WHATSAPP */
.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    z-index:9999;
}

.whatsapp-float:hover{
    transform:scale(1.08);
} 
.mobile-hero-buttons{
    display:none;
}  
 
.why-us{
    max-width:1100px;
    margin:80px auto;
    padding:40px;
    background:rgba(255,255,255,0.9);
    border-radius:20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

.why-text h2::after{
    content:"";
    display:block;
    width:200px;
    height:4px;
    background:#cda24f;
    margin-top:12px;
    border-radius:5px;
}

.why-list div{
    background:#fff7e8;
    color:#5b3b13;
    padding:18px 20px;
    border-radius:14px;
    margin-bottom:15px;
    font-weight:600;
    font-size:17px;
    border-left:6px solid #cda24f;

    display:flex;
    align-items:center;
    gap:14px;

    transition:.3s ease;
}

.why-list div:hover{
    transform:translateX(8px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.why-list i{
    color:#cda24f;
    font-size:18px;
}

.why-text p{
    font-size:18px;
    line-height:1.7;
    color:#444;
    margin-bottom:25px;
}

.why-image img{
    width:105%;
    border-radius:24px;
    border:4px solid #cda24f;
    box-shadow:0 12px 35px rgba(0,0,0,.2); 
    transition:.4s ease;
} 

.why-image img:hover{
    transform:scale(1.02);
} 
#despre{
    scroll-margin-top:100px;
}

#pachete{
    scroll-margin-top:100px;
}

#inchiriaza{
    scroll-margin-top:100px;
} 
.reveal{
    opacity:0;
    transform:translateY(45px);
    transition:all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}
.footer{
    background:rgba(0,0,0,0.85);
    color:white;
    text-align:center;
    padding:50px 20px;
}

.footer h2{
    color:#cda24f;
    margin-bottom:15px;
}

.footer p{
    margin-bottom:18px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.footer-links a:hover{
    color:#cda24f;
}

copyright,
.copyright{
    font-size:14px;
    color:#aaa;
} 
.contact-section{
    max-width:1100px;
    margin:80px auto;
    padding:45px;
    background:rgba(255,255,255,0.9);
    border-radius:22px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.contact-section h2{
    font-size:42px;
    color:#b58b4f;
    margin-bottom:15px;
}

.contact-intro{
    color:#444;
    font-size:18px;
    margin-bottom:30px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    margin-bottom:35px;
}

.contact-card{
    background:#fff7e8;
    padding:25px;
    border-radius:16px;
    border-left:5px solid #cda24f;
}

.contact-card h3{
    margin-bottom:10px;
    color:#5b3b13;
}

.contact-card a{
    color:#111;
    font-weight:bold;
    text-decoration:none;
}

.map-box{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.18);
}

.map-box iframe{
    width:100%;
    height:380px;
    border:0;
} 
.nav-links a.active{
    color:#cda24f;
} 
.stats{
    max-width:1100px;
    margin:80px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    background:white;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box h2{
    color:#cda24f;
    font-size:48px;
    margin-bottom:10px;
}

.stat-box p{
    color:#555;
    font-size:18px;
} 
.cta{
    max-width:1000px;
    margin:90px auto;
    padding:60px 40px;
    text-align:center;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(6px);

    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.cta h2{
    font-size:42px;
    color:#b8863b;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
    font-size:19px;
    color:#444;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta-main,
.cta-whatsapp{

    padding:18px 34px;
    border-radius:14px;

    text-decoration:none;
    font-size:18px;
    font-weight:bold;

    transition:.35s;
}

.cta-main{
    background:#cda24f;
    color:#111;
}

.cta-main:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(205,162,79,.35);
}

.cta-whatsapp{
    background:#25D366;
    color:white;
}

.cta-whatsapp:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(37,211,102,.35);
}
/* MOBILE */
/* MOBILE */
@media (max-width:768px){
.navbar{
    height:auto;
    padding:12px 18px;
    flex-direction:column;
    gap:10px;
}

.nav-logo{
    font-size:30px;
    font-weight:700;
    color:#cda24f;
    letter-spacing:2px;
    text-transform:uppercase;
    line-height:1;
}

.nav-links{
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
}

.nav-links a{
    font-size:14px;
}

.nav-whatsapp{
    padding:8px 14px;
}
    body{
        background-attachment:scroll;
    }

    .hero{
        height:65vh;
        background-image:url("./images/banner-mobile.jpg");
        background-size:cover;
        background-position:center top;
        position:relative;
    }

    .hero::after{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(0,0,0,0.15);
    }

   .hero-order-link,
.offer-link{
    display:none;
}

    .mobile-hero-buttons{
        display:flex;
        flex-direction:column;
        gap:12px;
        position:absolute;
        left:50%;
        bottom:-110px;
        transform:translateX(-50%);
        width:82%;
        z-index:50;
    }

    .mobile-main-btn,
    .mobile-wa-btn{
        display:block;
        text-align:center;
        padding:14px;
        border-radius:12px;
        text-decoration:none;
        font-weight:bold;
    }

    .mobile-main-btn{
        background:#cda24f;
        color:#111;
    }

    .mobile-wa-btn{
        background:#25D366;
        color:white;
    } 
    .benefit-link{
    display:block;
    position:absolute;
    bottom:9%;
    height:75px;
    z-index:60;
    background:transparent;
    border:none;
}

.delivery-btn{
    left:2%;
    width:23%;
}

.clean-btn{
    left:26%;
    width:23%;
}

.packages-btn{
    left:51%;
    width:23%;
}

.hero-whatsapp-link{
    display:block;
    position:absolute;
    right:2%;
    bottom:9%;
    width:23%;
    height:75px;
    z-index:60;
} 
.why-us{
    grid-template-columns:1fr;
    margin:40px 15px;
    padding:25px 18px;
}

.why-text h2{
    font-size:28px;
    text-align:center;
}

.why-text p{
    font-size:15px;
    text-align:center;
}

.why-image img{
    max-width:320px;
    display:block;
    margin:0 auto;
}
.footer{
    padding:40px 20px;
}

.footer h2{
    font-size:28px;
}

.footer-links{
    flex-direction:column;
    gap:15px;
} 
.contact-section{
    margin:40px 15px;
    padding:25px 18px;
}

.contact-section h2{
    font-size:30px;
}

.contact-grid{
    grid-template-columns:1fr;
}

.map-box iframe{
    height:300px;
} 
.stats{
    grid-template-columns:1fr 1fr;
    margin:50px 15px;
}

.stat-box{
    padding:25px;
}

.stat-box h2{
    font-size:36px;
}

.stat-box p{
    font-size:15px;
} 
.nav-logo{
    font-size:30px;
    font-weight:700;
    color:#cda24f;
    letter-spacing:2px;
    text-transform:uppercase;
}

.nav-logo span{
    display:block;
    font-size:13px;
    letter-spacing:4px;
    color:white;
    margin-top:-4px;
}

.cta{
    margin:60px 15px;
    padding:40px 25px;
}

.cta h2{
    font-size:30px;
}

.cta p{
    font-size:17px;
}

.cta-buttons{
    flex-direction:column;
}

.cta-main,
.cta-whatsapp{
    width:100%;
}

}
