@font-face {
    font-family: 'Cooper Black';
    src: url('../assets/fonts/CooperBlack.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --primary: hsl(145, 63%, 32%);
    --primary-dark: hsl(145, 63%, 25%);
    --gold: hsl(42, 90%, 55%);
    --bg: hsl(0, 0%, 100%);
    --text: hsl(150, 10%, 15%);
    --text-light: hsl(150, 5%, 45%);
    --border: hsl(140, 15%, 88%);
    --accent: hsl(140, 30%, 94%);
}

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cooper Black', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    gap: 5px;
    text-decoration: none;
    font-size: 28px;
    font-family: 'Cooper Black', serif;
}

.logo-primary {
    color: var(--primary);
}

.logo-secondary {
    color: var(--text);
}

#navbar.scrolled .logo-secondary {
    color: var(--text);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(150, 30%, 10%, 0.85), hsla(150, 30%, 10%, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-gold {
    color: var(--gold);
}

.hero-desc {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: var(--accent);
}

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

.section-subtitle {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 40px;
}

.text-primary {
    color: var(--primary);
}

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

.about-grid h2 {
    font-size: 36px;
    margin: 10px 0 25px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text strong {
    color: var(--text);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.stat-card {
    background: hsla(140, 30%, 94%, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.stat-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 28px;
    font-family: 'Cooper Black', serif;
    font-weight: bold;
    color: var(--text);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

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

.about-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.product-card {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.product-subtitle {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin: 20px 0;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-light);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-group {
    display: flex;
    gap: 30px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
}

.contact-item a:hover {
    color: var(--primary);
}

.map {
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: var(--text);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 999;
}

.floating-cart span {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 126, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
    margin: 0 auto 20px;
}

.modal-content h3 {
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Products Hero */
.products-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(to bottom, var(--accent), white);
    text-align: center;
}

.products-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-detail img {
    width: 100%;
    border-radius: 16px;
}

.packaging-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.packaging-btn {
    padding: 12px 20px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.packaging-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.quantity-input input {
    width: 100px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

/* Checkout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
}

.cart-total {
    padding: 20px;
    background: var(--accent);
    border-radius: 8px;
    margin-top: 20px;
}

.checkout-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-section input {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
}

.location-field {
    position: relative;
}

.location-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 100;
    margin-top: 5px;
}

.dropdown-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: var(--accent);
}

/* Quality Source Section */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-image img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 16px;
}

.quality-grid h2 {
    font-size: 36px;
    margin: 10px 0 20px;
}

.quality-grid p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.quality-grid .font-bold {
    font-weight: 600;
    color: var(--text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

/* Infrastructure Section */
.infrastructure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.facility-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 400px;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 126, 79, 0.9), transparent);
    padding: 30px;
    color: white;
}

.facility-size {
    font-size: 32px;
    font-family: 'Cooper Black', serif;
    font-weight: bold;
    margin-bottom: 5px;
}

.facility-desc {
    font-size: 14px;
    opacity: 0.8;
}

.infrastructure-grid h2 {
    font-size: 36px;
    margin: 10px 0 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Choose Us Section */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.reason-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.reason-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}

.reason-card h4 {
    font-size: 18px;
    font-family: 'Cooper Black', serif;
    margin-bottom: 10px;
    color: var(--text);
}

.reason-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Market Presence Section */
.section-desc {
    max-width: 600px;
    margin: 15px auto 0;
    color: var(--text-light);
}

.markets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.market-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.market-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.market-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.market-card h4 {
    font-size: 20px;
    font-family: 'Cooper Black', serif;
    margin-bottom: 5px;
    color: var(--text);
}

.market-card p {
    font-size: 14px;
    color: var(--text-light);
}

.export-banner {
    background: var(--primary);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.export-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.export-banner h3 {
    font-size: 28px;
    font-family: 'Cooper Black', serif;
    margin-bottom: 15px;
}

.export-banner p {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-grid,
    .checkout-grid,
    .product-detail,
    .quality-grid,
    .infrastructure-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row,
    .benefits-grid,
    .features-grid,
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}
