@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary: #012d1d; /* Deep Forest Green */
    --primary-light: #1b4332;
    --secondary: #d4a373; /* Earthy/Warm accent */
    --dark: #1a1a1a; /* Charcoal */
    --light: #fbf9f4; /* Warm Cream */
    --off-white: #f5f5f5;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    
    /* System */
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(1, 45, 29, 0.08);
    --shadow-hover: 0 20px 30px -10px rgba(1, 45, 29, 0.15);
    
    --container: 1280px;
    --section-pad: 100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Manrope', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--dark); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Typography */
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: inline-block; }
.section-title { font-size: clamp(32px, 5vw, 48px); font-weight: 800; margin-bottom: 24px; }
.section-subtitle { font-size: 18px; color: var(--text-muted); max-width: 700px; margin: 0 auto 56px auto; line-height: 1.6; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-light { background-color: var(--light); }
.section-dark { background-color: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; font-weight: 700; border-radius: var(--radius-md); transition: var(--transition); cursor: pointer; font-size: 15px; border: none; }
.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background-color: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background-color: var(--primary); color: var(--white); }
.btn-accent { background-color: var(--secondary); color: var(--white); }
.btn-accent:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); transition: var(--transition); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--dark); }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 16px; align-items: center; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--primary); }

/* Mobile Nav */
@media(max-width: 1150px) {
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 24px; gap: 20px; box-shadow: var(--shadow-md); }
    .nav-links.active { display: flex; }
    .nav-actions { display: flex; gap: 8px; margin-left: auto; margin-right: 16px; }
    .nav-contact-btn { display: none; }
    .nav-login-btn { padding: 4px 10px !important; font-size: 11px !important; border-width: 1px !important; }
    .menu-toggle { display: block; }
}

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(1,45,29,0.95) 0%, rgba(1,45,29,0.4) 100%); z-index: -1; }
.hero-content { max-width: 700px; color: var(--white); padding: 40px 0; }
.hero-title { font-size: clamp(40px, 6vw, 72px); color: var(--white); margin-bottom: 24px; line-height: 1.1; }
.hero-desc { font-size: 20px; opacity: 0.9; margin-bottom: 40px; font-weight: 400; line-height: 1.6; }
.hero-btns { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.trust-indicators { display: flex; gap: 24px; opacity: 0.9; font-weight: 600; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px; }
.trust-indicators span { display: flex; align-items: center; gap: 8px; }

/* Grid Utils */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media(max-width: 992px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}
@media(max-width: 576px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .trust-indicators { flex-direction: column; gap: 12px; }
}

/* About Section */
.about-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; height: 100%; min-height: 500px; box-shadow: var(--shadow-md); }
.about-img { width: 100%; height: 100%; object-fit: cover; position: absolute; }
.about-content { padding-left: 32px; display: flex; flex-direction: column; justify-content: center; }
.highlight-cards { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
.h-card { background: var(--white); padding: 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border-left: 4px solid var(--primary); }
.h-card h4 { font-size: 18px; margin-bottom: 8px; }
.h-card p { font-size: 15px; color: var(--text-muted); }

@media(max-width: 992px) { .about-content { padding-left: 0; margin-top: 40px; } .about-img-wrap { min-height: 400px; } }

/* Products Section */
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.p-img { width: 100%; height: 260px; object-fit: cover; }
.p-info { padding: 32px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.p-info h3 { font-size: 22px; margin-bottom: 12px; }
.p-info p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; flex-grow: 1; }
.p-link { color: var(--primary); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; }
.p-link::after { content: '→'; transition: transform 0.2s; }
.p-link:hover::after { transform: translateX(6px); }

/* Features / Why Choose Us */
.feature-card { background: var(--white); padding: 48px 32px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); height: 100%; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: transparent; }
.f-icon { width: 72px; height: 72px; background: var(--light); color: var(--primary); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.f-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
.feature-card h3 { font-size: 20px; margin-bottom: 16px; }
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* Markets */
.market-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 240px; }
.market-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.market-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(1,45,29,0.9), transparent 80%); transition: opacity 0.3s ease; }
.market-card:hover img { transform: scale(1.08); }
.market-card h3 { position: absolute; bottom: 24px; left: 24px; color: var(--white); z-index: 2; margin: 0; font-size: 20px; }

/* Timeline Process */
.timeline { display: flex; justify-content: space-between; position: relative; margin-top: 64px; }
.timeline::before { content: ''; position: absolute; top: 36px; left: 0; width: 100%; height: 2px; background: rgba(1,45,29,0.1); z-index: 1; }
.t-step { flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 16px; }
.t-num { width: 72px; height: 72px; background: var(--light); border: 2px solid var(--primary); color: var(--primary); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; margin: 0 auto 24px auto; font-family: 'Plus Jakarta Sans', sans-serif; box-shadow: 0 0 0 8px var(--light); }
.t-step h3 { font-size: 20px; margin-bottom: 12px; }
.t-step p { font-size: 15px; color: var(--text-muted); }

@media(max-width: 768px) {
    .timeline { flex-direction: column; gap: 48px; }
    .timeline::before { width: 2px; height: 100%; left: 36px; top: 0; }
    .t-step { display: flex; text-align: left; align-items: flex-start; gap: 24px; padding: 0; }
    .t-num { margin: 0; flex-shrink: 0; box-shadow: 0 0 0 8px var(--light); }
}

/* Values */
.value-card { border-top: 3px solid var(--primary); padding-top: 32px; }
.value-card h3 { font-size: 28px; margin-bottom: 16px; }
.value-card p { color: var(--text-muted); font-size: 16px; }

/* CTA Section */
.cta-section { position: relative; padding: 140px 0; background: var(--primary); text-align: center; color: var(--white); overflow: hidden; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.15; mix-blend-mode: multiply; }
.cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-content h2 { color: var(--white); margin-bottom: 24px; font-size: clamp(36px, 4vw, 56px); }
.cta-content p { font-size: 20px; margin-bottom: 48px; opacity: 0.9; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.c-info-card { background: var(--light); padding: 32px; border-radius: var(--radius-md); display: flex; gap: 20px; margin-bottom: 24px; }
.c-info-card svg { width: 28px; height: 28px; color: var(--primary); flex-shrink: 0; }
.c-info-card h4 { font-size: 18px; margin-bottom: 6px; }
.c-info-card p { color: var(--text-muted); font-size: 15px; margin: 0; }
.c-form { background: var(--white); padding: 48px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { padding: 16px; border: 1px solid #cbd5e1; border-radius: 8px; font-family: inherit; font-size: 15px; outline: none; transition: var(--transition); background: #f8fafc; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(1,45,29,0.1); }
.form-group textarea { height: 160px; resize: vertical; }

@media(max-width: 992px) { .contact-wrap { grid-template-columns: 1fr; } .c-form { padding: 32px 24px; } }
@media(max-width: 576px) { .form-grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--dark); color: var(--off-white); padding: 100px 0 32px 0; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 80px; }
.f-brand img { height: 56px; background: var(--white); padding: 12px; border-radius: 12px; margin-bottom: 24px; }
.f-brand p { color: #a1a1aa; font-size: 16px; max-width: 320px; line-height: 1.8; }
.f-links h4 { color: var(--white); font-size: 18px; margin-bottom: 24px; }
.f-links ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.f-links a { color: #a1a1aa; font-size: 15px; }
.f-links a:hover { color: var(--white); }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: #71717a; }

@media(max-width: 768px) {
    .f-grid { grid-template-columns: 1fr; gap: 48px; margin-bottom: 48px; }
    .f-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Animations & Utilities */
.fade-up { animation: fadeUp 0.8s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
