*{
    font-family:'Poppins',sans-serif;
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
}

header{
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(10px);
    box-shadow:0 0 25px rgba(212,175,55,.25);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 80px;
    background:#111;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#FFD700;
}
.logo img{
    width:70px;
    height:auto;
    display:block;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-size:18px;
    transition:0.3s;
}

nav a:hover{
    color:#FFD700;
}
.hero{
    ...
}

.hero-content{
    max-width:650px;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
}

.hero-content p{
    color:#d0d0d0;
    margin-top:20px;
}

.hero-content h2{
    color:#D4AF37;
    font-size:24px;
}
.hero-content h1{
    text-transform:uppercase;
    letter-spacing:3px;
    font-weight:800;
    font-size:70px;
    color:#FFD700;
    margin-bottom:15px;
}

.hero-content h2{
    font-size:38px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    line-height:35px;
    margin-bottom:35px;
}
.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    background:#D4AF37;
    color:#000;
    border:2px solid #D4AF37;
    box-shadow:0 10px 25px rgba(212,175,55,.25);
}

.btn:hover{
    background:transparent;
    color:#D4AF37;
}

.whatsapp{
    background:#25D366;
    color:#fff;
}

.whatsapp:hover{
    background:#1EBE5D;
}
section{
    padding:70px 10%;
    text-align:center;
}

section h2{
    font-size:35px;
    margin-bottom:20px;
}

section p{
    font-size:20px;
    line-height:35px;
    margin-bottom:25px;
}

button{
    background:#D4AF37;
    color:white;
    border:none;
    padding:15px 35px;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
}

button:hover{
    background:#0056b3;
}
.products{
    background:#0d0d0d;
    padding:80px 8%;
}

.products h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.product-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.card img{
    width:220px;
    height:220px;
    object-fit:contain;
    transition:.4s;
}

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

.card img{
    width:150px;
    height:150px;
    object-fit:contain;
}
.card p{
    color:#ccc;
    font-size:17px;
    line-height:28px;
}
.services{ 
    background:#000;
    padding:80px 8%;
}

.services h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.service-box{
    border:1px solid rgba(212,175,55,.2);
    background:#111111;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.service-box p{
    line-height:1.8;
    color:#cccccc;
}
.about{
    padding:80px 8%;
    background:#0d0d0d;
}

.about-content{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.about h2{
    font-size:40px;
    margin-bottom:25px;
}

.about p{
    font-size:18px;
    line-height:1.8;
    color:#cccccc;
}

.about-boxes{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
    margin-top:50px;
}

.about-box{
    background:#D4AF37;
    color:white;
    padding:35px;
    border-radius:15px;
    transition:.3s;
}

.about-box:hover{
    transform:translateY(-10px);
}

.about-box h3{
    font-size:36px;
    margin-bottom:10px;
}

.about-box p{
    color:white;
    font-size:17px;
}
.contact{
    background:#111;
    color:white;
    text-align:center;
    padding:80px 8%;
}

.contact h2{
    font-size:40px;
    margin-bottom:40px;
}

.contact-box{
    max-width:700px;
    margin:auto;
}

.contact-box p{
    font-size:18px;
    line-height:2;
    margin-bottom:20px;
}

.contact-btn,
.whatsapp-btn{
    display:inline-block;
    margin:10px;
    padding:15px 30px;
    text-decoration:none;
    color:white;
    border-radius:8px;
    transition:0.3s;
}

.contact-btn{
    background:#D4AF37;
}

.contact-btn:hover{
    background:#0056b3;
}

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

.whatsapp-btn:hover{
    background:#1da851;
}
footer{
    background:#000;
    color:white;
    text-align:center;
    padding:30px 20px;
    border-top:2px solid gold;
}

footer h2{
    color:#FFD700;
    margin-bottom:15px;
}

footer p{
    margin:10px 0;
    color:#ccc;
}
.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
    transition:.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}
.instagram-btn{

    display:inline-block;

    margin-top:20px;

    background:#E1306C;

    color:white;

    text-decoration:none;

    padding:15px 35px;

    border-radius:8px;

    font-size:18px;

    transition:.3s;

}

.instagram-btn:hover{

    background:#C13584;

    transform:translateY(-3px);

}
.why-us{
    padding:80px 8%;
    background:#111;
}

.why-us h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.why-box{
    background:#111;
    border:1px solid rgba(212,175,55,.25);
    padding:30px;
    border-radius:18px;
    transition:.4s;
    text-align:center;
}

.why-box:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 15px 35px rgba(212,175,55,.30);
}

.why-box h3{
    margin-bottom:15px;
    color:#D4AF37;
}

.why-box p{
    color:#cccccc;
    line-height:1.7;
}
.packages{
    padding:80px 8%;
    background:#000;
}

.package-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.package-card{
    background:#111;
    border:1px solid #D4AF37;
    border-radius:15px;
    padding:25px;
    transition:.3s;
}

.package-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(212,175,55,.3);
}

.package-card h3{
    color:#FFD700;
    margin-bottom:15px;
}

.package-card p{
    margin:8px 0;
    color:#ddd;
}

.package-card h4{
    color:#25D366;
    margin:20px 0;
}

.note{
    color:#999;
    font-size:14px;
    margin-bottom:20px;
}
.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:60px 8%;
    background:#111;
}

.stat-box{
    background:#181818;
    border:1px solid rgba(212,175,55,.25);
    border-radius:15px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(212,175,55,.25);
}

.stat-box h2{
    color:#D4AF37;
    font-size:42px;
    margin-bottom:10px;
}

.stat-box p{
    color:#ccc;
    font-size:18px;
} 
.packages{
    padding:80px 8%;
    background:#0d0d0d;
}

.packages h2{
    text-align:center;
    color:#D4AF37;
    font-size:42px;
    margin-bottom:50px;
}

.package-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.package-card{
    background:#111;
    border:1px solid rgba(212,175,55,.25);
    border-radius:20px;
    padding:30px;
    transition:.4s;
    text-align:center;
}

.package-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(212,175,55,.30);
}

.package-card h3{
    color:#D4AF37;
    margin-bottom:20px;
}

.package-card p{
    color:#ccc;
    margin:10px 0;
}

.package-card h4{
    color:#fff;
    margin:25px 0;
}
.brands{
    padding:80px 8%;
    background:#111;
    text-align:center;
}

.brand-container{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.brand-card{
    background:#1b1b1b;
    border:1px solid #D4AF37;
    color:#fff;
    padding:20px 35px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.brand-card:hover{
    background:#D4AF37;
    color:#000;
}
.faq{
    padding:80px 8%;
    background:#000;
}

.faq h2{
    text-align:center;
    color:#FFD700;
    margin-bottom:40px;
}

.faq-box{
    background:#111;
    border:1px solid #D4AF37;
    border-radius:12px;
    padding:20px;
    margin-bottom:20px;
}

.faq-box h3{
    color:#FFD700;
    margin-bottom:10px;
}

.faq-box p{
    color:#ddd;
    line-height:1.7;
}
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero,
    .hero-content,
    .product-container {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .product-container {
        justify-content: center;
    }
}
