:root {
    /* Colors */
    --color-primary: #0A1B2A; /* Deep Forest Green */
    --color-primary-light: #1A2F45;
    --color-primary-dark: #050D15;
    --color-secondary: #1F3B57; /* Coconut Brown */
    --color-secondary-light: #315273;
    --color-accent: #E2E8F0; /* Light Earth */
    
    --color-bg: #FAF9F6; /* Soft Off-White */
    --color-surface: #FFFFFF;
    --color-text-main: #2C2C2C;
    --color-text-muted: #595959;
    --color-border: #E5E2D9;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(44, 85, 48, 0.08);
    --shadow-lg: 0 20px 40px rgba(44, 85, 48, 0.12);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-main);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--color-text-muted);
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-smooth);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.2);
}

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

.btn-secondary:hover {
    background-color: #f1f0eb;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: white; /* Default for hero section */
    transition: color var(--transition-fast);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--color-text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-secondary);
    transition: width var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--color-text-main);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: var(--space-md);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all var(--transition-smooth);
    z-index: 1001;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-menu a {
    color: var(--color-text-main);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-lg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using an abstract gradient mixed with a high quality image placeholder */
    background: url('https://images.unsplash.com/photo-1590682680695-43b964a3ae17?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20, 40, 22, 0.9) 0%, rgba(20, 40, 22, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--space-md);
}

.hero .badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Stats Section */
.stats {
    position: relative;
    z-index: 10;
    margin-top: -3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform var(--transition-smooth);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(44, 85, 48, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
}

.stat-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.stat-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* About Section */
.about {
    padding: var(--space-xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1596395818967-8e6584c3ea4e?q=80&w=1000&auto=format&fit=crop') center/cover;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-secondary);
    color: white;
    padding: 2rem;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 8px solid var(--color-bg);
}

.experience-badge .number {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--color-secondary);
    font-size: 1.5rem;
}

/* Products Section */
.products {
    padding: var(--space-xl) 0;
    background: var(--color-surface);
}

.section-header {
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.section-header.center {
    margin: 0 auto var(--space-lg);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    position: relative;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.product-img-container {
    height: 220px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.p-coir { background-image: url('https://images.unsplash.com/photo-1416879598555-220a2e379bba?q=80&w=800&auto=format&fit=crop'); }
.p-coconut { background-image: url('https://images.unsplash.com/photo-1582299863486-4e56580f1b21?q=80&w=800&auto=format&fit=crop'); }
.p-home { background-image: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?q=80&w=800&auto=format&fit=crop'); }
.p-biomass { background-image: url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?q=80&w=800&auto=format&fit=crop'); }

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-content p {
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    height: auto;
    min-height: 48px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap var(--transition-fast);
    margin-top: auto;
}

.product-card:hover .product-link {
    gap: 0.5rem;
    color: var(--color-secondary);
}

/* Services Section */
.services {
    padding: var(--space-xl) 0;
    background: var(--color-bg);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: var(--color-surface);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-primary);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(44, 85, 48, 0.1);
    position: absolute;
    top: 1rem;
    right: 1rem;
    line-height: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step-content p {
    position: relative;
    z-index: 2;
    margin: 0;
}

/* How to Order Grid */
.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}

.order-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.order-step-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 14px rgba(10, 27, 42, 0.15);
    transition: transform var(--transition-smooth);
}

.order-step-item:hover .order-step-icon {
    transform: translateY(-4px);
}

.order-step-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.order-step-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .order-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
}

@media (max-width: 540px) {
    .order-steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem 0.75rem !important;
    }

    .order-step-icon {
        width: 64px !important;
        height: 64px !important;
        font-size: 1.6rem !important;
        margin-bottom: 0.65rem !important;
    }

    .order-step-item h4 {
        font-size: 1rem !important;
        margin-bottom: 0.35rem !important;
    }

    .order-step-item p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0;
    background: var(--color-surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-lg);
}

.contact-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card i {
    font-size: 2rem;
    color: var(--color-primary);
}

.contact-card h4 {
    margin-bottom: 0.25rem;
}

.contact-card p {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.text-link {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    user-select: none;
}

.accordion-header h3 {
    font-size: 1.125rem;
    margin: 0;
    font-family: var(--font-body);
}

.accordion-icon {
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: transform var(--transition-fast);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.accordion-content p {
    padding-bottom: 1.5rem;
    margin: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

/* Footer */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-xl) 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    background: white;
    color: var(--color-primary-dark);
}

.footer-desc {
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul a {
    transition: color var(--transition-fast);
}

.footer-links ul a:hover {
    color: white;
}

.contact-list li, .location-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-list i, .location-list i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.location-list div {
    display: flex;
    flex-direction: column;
}

.location-list strong {
    color: white;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
}

/* Animations & Utility */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .navbar .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 1rem;
        bottom: -10px;
        right: -10px;
    }
    
    .experience-badge .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .products-grid,
    .products .products-grid,
    body.page-home .products-grid,
    .page-products .products-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .products-grid,
    .products .products-grid,
    body.page-home .products-grid,
    .page-products .products-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Universal mobile fallback for any inline multi-column grids */
@media (max-width: 768px) {
    div[style*="repeat(3, 1fr)"],
    div[style*="repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    div[style*="repeat(4, 1fr)"],
    div[style*="repeat(4,1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.75rem 1rem !important;
    }
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-surface);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    z-index: 1;
    border-radius: var(--radius-sm);
    top: 100%;
    left: 0;
    margin-top: 0; /* Fixed gap issue */
    padding: 10px 0;
}

.dropdown-content a {
    color: var(--color-text-main) !important;
    padding: 10px 20px;
    display: block;
    font-size: 0.875rem;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: rgba(44, 85, 48, 0.05);
    color: var(--color-primary) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Global Reach */
.global-reach {
    padding: var(--space-xl) 0;
    background: var(--color-surface);
}

.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.country-list {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.country-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.country-list i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.map-placeholder {
    height: 400px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Advantages */
.advantages {
    position: relative;
    z-index: 10;
    margin-top: -3rem;
}


/* Navbar overrides for ALQA */
.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar.scrolled {
    padding: 0.5rem 0;
}
.nav-links a {
    color: var(--color-text-main);
}
.nav-links a::after {
    background-color: var(--color-primary);
}

/* ALQA Hero Section */
.hero-alqa {
    padding-top: 100px; /* offset for navbar */
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-alqa-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-alqa-content {
    padding: 4rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--color-text-main);
    margin-bottom: 3rem;
    max-width: 450px;
}

.hero-alqa-image {
    height: 100%;
    width: 100%;
}

.image-fade {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

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

.fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0.7) 15%, rgba(255,255,255,0) 40%);
}



/* What We Export Section */
.what-we-export {
    padding: 5rem 0;
    background: white;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-main);
    margin-bottom: 3rem;
}

.export-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.export-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.export-item i {
    font-size: 2.5rem;
    color: var(--color-text-main);
}

.export-item p {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
}

/* Values Banner */
.values-banner {
    background: var(--color-primary);
    padding: 3rem 0;
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-item i {
    font-size: 2.5rem;
    color: white;
}

.value-item h4 {
    color: white;
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
    letter-spacing: 0.5px;
}

.value-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .hero-alqa-container {
        grid-template-columns: 1fr;
    }
    .image-fade {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

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

.fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0.7) 15%, rgba(255,255,255,0) 40%);
}
    .hero-alqa-content {
        padding: 2rem;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}






/* Floating WhatsApp Button */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Product Availability Badges */
.badge-available {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #25d366;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge-unavailable {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.disabled-card {
    /* Normalized, no grayscale or opacity */
}

/* Out of stock product link: disabled ONLY on Home page */
body.page-home .disabled-card a.product-link {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.55;
}

/* On Catalog (pages/products.html) and other pages: always clickable */
body:not(.page-home) .products-grid .disabled-card a.product-link,
.page-products .disabled-card a.product-link {
    pointer-events: auto !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

/* Vision & Mission Section */
.vision-mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.vm-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.mission-list li i {
    color: var(--color-primary);
    font-size: 1.2rem;
    line-height: 1.6;
    flex-shrink: 0;
    margin-top: 2px;
}

.mission-list li span {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-main);
    text-align: justify;
}

@media (max-width: 860px) {
    .vision-mission-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Risk Management Section */
.risk-management-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.risk-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.risk-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.risk-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
    line-height: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.risk-item strong {
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.15rem;
}

.risk-item span {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--color-text-main);
}

.risk-image-wrapper {
    height: 100%;
    min-height: 480px;
}

.risk-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

@media (max-width: 860px) {
    .risk-management-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .risk-image-wrapper {
        min-height: 280px;
        height: 320px;
    }
}

/* Commercial & Payment Terms */
.commercial-terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
}

@media (max-width: 860px) {
    .commercial-terms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}



