/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}


/* TOP BAR */

.top-bar{
background:#111;
color:white;
display:flex;
justify-content:space-between;
padding:8px 40px;
font-size:14px;
}


/* NAVIGATION */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
font-size:28px;
font-weight:bold;
letter-spacing:2px;
}

nav ul{
list-style:none;
display:flex;
gap:30px;
}

nav ul li a{
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

nav ul li a:hover{
color:#b88e2f;
}

.active{
color:#b88e2f;
}


/* MOBILE MENU */

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
width:25px;
height:3px;
background:#333;
margin:4px;
}


/* HERO SECTION */

.hero{
height:80vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
background:rgba(0,0,0,0.5);
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:40px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
margin-bottom:30px;
line-height:1.6;
}


/* HERO BUTTONS */

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-bottom:25px;
}

.btn-primary{
background:#b88e2f;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:4px;
font-weight:bold;
transition:0.3s;
}

.btn-primary:hover{
background:#9b7425;
}

.btn-danger{
background:#e63946;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:4px;
font-weight:bold;
transition:0.3s;
}

.btn-danger:hover{
background:#c72f3c;
}


/* TRUST BADGES */

.trust-badge{
display:flex;
justify-content:center;
gap:20px;
font-size:14px;
}


/* SECTION */

section{
padding:60px 40px;
background:#f7f7f7;
}

section h2{
text-align:center;
margin-bottom:40px;
font-size:32px;
}


/* PRODUCTS GRID */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}


/* PRODUCT CARD */

.card{
background:white;
border-radius:8px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:0.3s;
text-align:center;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.card h3{
padding:15px;
font-size:18px;
}

.price{
color:#b88e2f;
font-size:18px;
font-weight:bold;
margin-bottom:10px;
}

.card button{
background:#111;
color:white;
border:none;
padding:12px 20px;
margin-bottom:20px;
cursor:pointer;
border-radius:4px;
transition:0.3s;
}

.card button:hover{
background:#b88e2f;
}


/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:25px;
font-size:14px;
line-height:1.8;
}


/* WHATSAPP FLOAT */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 18px;
border-radius:50%;
text-decoration:none;
font-weight:bold;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}


/* MOBILE */

@media(max-width:768px){

.menu-toggle{
display:flex;
}

nav ul{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
display:none;
}

nav ul.active{
display:flex;
}

.hero h1{
font-size:28px;
}

.hero-buttons{
flex-direction:column;
}

.trust-badge{
flex-direction:column;
}

.top-bar{
flex-direction:column;
gap:5px;
text-align:center;
}

}
/* ===============================
    GENERAL RESET & BODY
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #000;
    color: #fff;
}

/* ===============================
    TOP BAR
================================ */
.top-bar {
    background: #111;
    padding: 10px 10%;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.top-bar a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.top-bar a i {
    margin-right: 8px;
}

/* ===============================
    HEADER
================================ */
.main-header {
    padding: 20px 10%;
    text-align: center;
    background: #000;
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
}

/* ===============================
    HERO SECTION
================================ */
.contact-hero {
    padding: 80px 10%;
    text-align: center;
    background: #111;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d4af37;
}

.contact-hero p {
    font-size: 18px;
    color: #ccc;
}

/* ===============================
    CONTACT SECTION
================================ */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding: 80px 10%;
}

.contact-info, .contact-form-box {
    flex: 1;
    min-width: 320px;
}

/* Contact Info */
.contact-info h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #d4af37;
}

.contact-info p {
    margin-bottom: 30px;
    color: #ccc;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #ddd;
}

.info-item i {
    margin-right: 12px;
    color: #d4af37;
    font-size: 18px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #b8962e;
}

/* Contact Form */
.contact-form-box {
    background: #111;
    padding: 40px;
    border: 1px solid #333;
    border-radius: 8px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    border-radius: 5px;
}

.contact-form-box button {
    width: 100%;
    padding: 14px;
    background: #d4af37;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form-box button:hover {
    background: #b8962e;
}

/* Map Container */
.map-container iframe {
    border-radius: 8px;
    margin-bottom: 30px;
}

/* ===============================
    FOOTER
================================ */
footer {
    text-align: center;
    padding: 25px 10%;
    background: #111;
    color: #d4af37;
    font-weight: bold;
    margin-top: 40px;
}

/* ===============================
    RESPONSIVE
================================ */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
}
