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

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

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

/* TOP BAR */

.top-bar{
background:#045c2c;
color:#fff;
font-size:14px;
padding:12px 0;
}

.top-left{
display:flex;
gap:30px;
flex-wrap:wrap;
}

.top-left span{
display:flex;
align-items:center;
gap:8px;
}

/* HEADER */

header{
background:#fff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header-area{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo img{
height:150px;
}

nav ul{
display:flex;
list-style:none;
gap:60px;
}

nav ul li a{
text-decoration:none;
color:#222;
font-weight:600;
transition:.3s;
}

nav ul li a:hover{
color:#0f7b39;
}

.languages{
display:flex;
gap:10px;
}

.languages a{
text-decoration:none;
background:#0f7b39;
color:#fff;
padding:8px 12px;
border-radius:4px;
font-size:13px;
font-weight:600;
}

/* HERO */

.hero{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
padding:80px 5%;
background:#f7f7f7;
min-height:700px;
}

.hero-content h1{
font-size:64px;
font-weight:700;
line-height:1.1;
margin-bottom:25px;
}

.hero-content h1 span{
display:block;
color:#2d8b3c;
}

.hero-content p{
font-size:18px;
line-height:1.8;
max-width:550px;
margin-bottom:30px;
}

.hero-image img{
width:100%;
border-radius:15px;
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.btn{
display:inline-block;
padding:15px 35px;
background:#0f7b39;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:600;
transition:.3s;
}

.btn:hover{
background:#0b5e2c;
transform:translateY(-2px);
}

/* FEATURES */

.features{
padding:70px 0;
background:#fff;
}

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

.feature{
text-align:center;
padding:30px;
border:1px solid #eee;
border-radius:10px;
transition:.3s;
}

.feature:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature i{
font-size:42px;
color:#2d8b3c;
margin-bottom:20px;
}

.feature h3{
margin-bottom:15px;
font-size:20px;
}

/* ABOUT */

.about{
padding:100px 0;
background:#fafafa;
}

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

.about-text h5{
color:#2d8b3c;
font-size:18px;
margin-bottom:10px;
}

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

.about-text p{
line-height:1.9;
margin-bottom:20px;
font-size:17px;
}

.about-image img{
width:100%;
border-radius:15px;
box-shadow:0 10px 35px rgba(0,0,0,.15);
}

/* PRODUCTS */

.products{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h5{
color:#2d8b3c;
font-size:18px;
margin-bottom:10px;
}

.section-title h2{
font-size:50px;
}

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

.product-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.product-card:hover{
transform:translateY(-6px);
}

.product-card img{
width:100%;
height:220px;
object-fit:cover;
}

.product-card h3{
padding:18px;
text-align:center;
font-size:18px;
}

/* EXPORT */

.export{
padding:100px 0;
background:#f6f8f4;
}

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

.export-text h2{
font-size:50px;
margin-bottom:20px;
}

.export-text p{
font-size:18px;
line-height:1.8;
}

.export-map img{
width:100%;
}

/* CONTACT */

.contact{
padding:100px 0;
}

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

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-grid h4{
margin-top:15px;
margin-bottom:5px;
color:#0f7b39;
}

.contact-grid p{
line-height:1.8;
}

.contact iframe{
border-radius:12px;
}

/* FOOTER */

footer{
background:#03461f;
color:#fff;
padding:30px 0;
text-align:center;
}

/* WHATSAPP */

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

/* RESPONSIVE */

@media(max-width:1200px){

.product-grid{
grid-template-columns:repeat(3,1fr);
}

.feature-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.hero,
.about-grid,
.export-grid,
.contact-grid{
grid-template-columns:1fr;
}

.hero-content h1{
font-size:42px;
}

.section-title h2,
.contact h2,
.about-text h2,
.export-text h2{
font-size:34px;
}

.product-grid{
grid-template-columns:1fr;
}

.feature-grid{
grid-template-columns:1fr;
}

.header-area{
flex-direction:column;
gap:20px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.logo img{
height:90px;
}

.languages a.active{
background:#f4b400;
color:#fff;
}
}