/* ===================================
   Global Styles & Reset
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2F6546;
    --dark-green: #2F6546;
    --light-green: #dcfce7;
    --dark-bg: #1e293b;
    --darker-bg: #0f172a;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --orange: #2F6546;
    --red: #2F6546;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===================================
   Header Styles
   =================================== */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-gray);
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-green);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* ===================================
   Hero Section
   =================================== */
.page-hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.1);
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.product-content {
    padding: 30px;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-header i {
    color: var(--primary-green);
    font-size: 20px;
}

.product-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Product Specifications */
.product-specs {
    margin-bottom: 25px;
}

.product-specs h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.spec-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-item {
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    gap: 15px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
}

.spec-name {
    font-weight: 600;
    color: var(--primary-green);
}

.spec-value {
    color: var(--text-dark);
}

.spec-pack {
    color: var(--text-gray);
    font-size: 13px;
}

/* Product Details */
.product-details {
    margin-bottom: 25px;
}

.product-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.detail-item strong {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.detail-item span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Quality Grades */
.quality-grades {
    margin-bottom: 25px;
}

.quality-grades h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.grade-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.grade-badge {
    padding: 8px 16px;
    background: var(--light-green);
    color: var(--dark-green);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #2F6546;
    color: white;
}

.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-danger {
    background: var(--red);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.btn-warning {
    background: var(--orange);
    color: white;
}

.btn-warning:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-white {
    background: white;
    color: var(--primary-green);
}

.btn-white:hover {
    background: #f8fafc;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-green);
}

/* ===================================
   Other Products Section
   =================================== */
.other-products-section {
    padding: 60px 0;
    background: #f8fafc;
}

.other-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.other-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.other-product-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.other-product-item i {
    color: var(--primary-green);
    font-size: 18px;
}

.other-product-item span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===================================
   Fried Onion Section
   =================================== */
.fried-onion-section {
    background: white;
}

.fried-onion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.fried-onion-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.fried-onion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-range-box,
.key-features-box {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.product-range-box h3,
.key-features-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-range-box h3 i,
.key-features-box h3 i {
    color: var(--primary-green);
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.range-item {
    padding: 12px;
    background: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: var(--text-dark);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 10px;
}

/* ===================================
   Spices Section
   =================================== */
.spices-section {
    background: #f8fafc;
}

.spices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.spice-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.spice-image {
    position: relative;
    height: 250px;
}

.spice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spice-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--orange);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.spice-badge-red {
    background: var(--red);
}

.spice-content {
    padding: 30px;
}

.spice-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.spice-content h3 i {
    color: var(--orange);
}

.spice-list {
    list-style: none;
    margin-bottom: 25px;
}

.spice-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: var(--text-dark);
}

.spice-list li:last-child {
    border-bottom: none;
}

.spice-specs {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.spice-specs h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.spice-specs p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 8px 0;
}

.spice-specs strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Footer Styles
   =================================== */
.main-footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-logo p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.company-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.company-addresses {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.address-item {
    display: flex;
    gap: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.address-item i {
    color: var(--primary-green);
    font-size: 16px;
    margin-top: 2px;
}

.address-item strong {
    color: white;
    display: block;
    margin-bottom: 4px;
}

.address-item a {
    color: var(--primary-green);
}

.address-item a:hover {
    text-decoration: underline;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 20px;
}

.contact-info strong {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.contact-info a:hover {
    color: var(--primary-green);
}

.contact-info i {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left p {
    font-size: 14px;
    margin: 0;
    color: var(--text-light);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-tags {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.footer-credits {
    display: flex;
    align-items: center;
}

.footer-credits a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: white;
}

.footer-credits i {
    font-size: 6px;
    opacity: 0.5;
}

.footer-credits span {
    font-size: 13px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .fried-onion-content {
        grid-template-columns: 1fr;
    }
    
    .spices-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .spec-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .other-products-grid {
        grid-template-columns: 1fr;
    }
    
    .range-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-left {
        text-align: center;
    }
    
    .footer-bottom-right {
        flex-direction: column;
        gap: 10px;
    }
}


/* ===================================
   Quality Page Styles
   =================================== */

/* Highlight Blue Text */
.highlight-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quality Standards Section */
.quality-standards-section {
    padding: 80px 0;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.quality-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quality-point {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    color: var(--primary-green);
    font-size: 24px;
}

.point-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.point-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.quality-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iso-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.iso-badge i {
    color: var(--primary-green);
    font-size: 18px;
}

.iso-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Quality Process Cards */
.quality-process-cards {
    padding: 60px 0;
    background: #f8fafc;
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon.green-light {
    background: var(--light-green);
}

.process-icon.yellow-light {
    background: #fef3c7;
}

.process-icon.blue-light {
    background: #dbeafe;
}

.process-icon i {
    font-size: 32px;
}

.green-light i {
    color: var(--primary-green);
}

.yellow-light i {
    color: #f59e0b;
}

.blue-light i {
    color: #3b82f6;
}

.process-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Manufacturing Process Section */
.manufacturing-process-section {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.process-step {
    text-align: center;
    padding: 25px 15px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: var(--light-green);
    transform: translateY(-3px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: #f8fafc;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.certification-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.cert-icon i {
    color: var(--primary-green);
    font-size: 30px;
}

.certification-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.certification-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Responsive - Quality Page */
@media (max-width: 1024px) {
    .quality-content {
        grid-template-columns: 1fr;
    }
    
    .process-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quality-text h2 {
        font-size: 28px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}



