body{
    font-family: 'Inter', sans-serif;
    background:#f7f3ee;
    color:#333;
        display: flex;
    flex-direction: column;
}

html, body {
    height: 100%;
}

main {
    flex: 1;
}

/* NAVBAR */

.navbar-brand{
    font-weight:700;
    font-size:22px;
}

.nav-link{
    font-weight:500;
}

.navbar-brand img{
    height:40px;
}

.navbar-brand span{
    font-size:18px;
    letter-spacing:1px;
}

.navbar .container-fluid{
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px
}


/* HERO */

.reveal{
    opacity:0;
    transform: translateY(-80px);
    transition: all 0.8s ease;
}

.reveal.active{
    opacity:1;
    transform: translateY(0);
}

.delay{
    transition-delay:0.3s;
}

.hero{
    height:90vh;
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero-overlay{
    background:rgba(0,0,0,0.55);
    height:100%;
    display:flex;
    align-items:center;
}

.hero h1{
    font-size:56px;
    font-weight:700;
}

.hero p{
    font-size:20px;
}

.btn-gold{
    background:#c8a46a;
    color:white;
    border:none;
}

/* SECTION */

.section{
    padding:70px 0;
}

.section-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.section-subtitle{
max-width:700px;
margin:auto;
color:#6c757d;
font-size:16px;
line-height:1.7;
}

.why-section{
    background:#f8f9fa;
    padding:80px 0;
}

.why-card{
    background:white;
    padding:35px 25px;
    border-radius:12px;
    transition:0.3s;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.icon-box{
    width:70px;
    height:70px;
    background:brown;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    font-size:28px;
}

.why-card h5{
    font-weight:600;
    margin-bottom:10px;
}

.why-card p{
    font-size:14px;
    color:#6c757d;
}

/* PRODUCT CARD */

.product-card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.product-card img{
    height:220px;
    object-fit:cover;
    width:100%;
    transition: transform 0.5s ease;
}

.product-card:hover img{
    transform: scale(1.1);
}

/* STATS */

.stats{
    background:#3b2f2a;
    color:white;
}

.stats h2{
    font-size: clamp(28px,5vw,48px);
    font-weight:700;
    transition:all .3s ease;
}

.stats p{
    font-size:14px;
    opacity:0.8;
}

.nowrap{
    white-space: nowrap;
}

/* FOOTER */

footer{
    background:#3b2f2a;
    color:white;
    padding:30px 0;
}

/* ABOUT */
.about-text p{
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.about-text strong{
    font-weight: 600;
}

.mission-list{
    padding-left: 20px;
}

.mission-list li{
    margin-bottom: 10px;
    font-size: 16px;
}


/* GLOBAL MARKET */
.global-text p{
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.export-list{
    padding-left: 20px;
}

.export-list li{
    margin-bottom: 10px;
    font-size: 16px;
}

.export-list strong{
    font-weight: 600;
}

/* MENU PRODUCTS*/

.product-intro{
font-size:17px;
line-height:1.8;
color:#444;
}

.product-card{
border-radius:10px;
transition:0.3s;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.product-card img{
height:230px;
object-fit:cover;
}

/* CONTACT */
.contact-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
height:100%;
}

.contact-card p{
color:#555;
line-height:1.7;
}

.contact-card input,
.contact-card textarea{
padding:12px;
border-radius:6px;
}

.map-container iframe{
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}