/* --------------------------------------------------
   CHANDIKA TRADING CO. - DESIGN SYSTEM & STYLES
-------------------------------------------------- */

/* 1. Imports & Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* 2. Custom CSS Variables */
:root {
    /* Color Palette derived from logo */
    --primary-green: #5B9237;
    /* Fresh Organic Green */
    --primary-green-dark: #375F1E;
    /* Forest Green for text/active state */
    --primary-green-light: #EBF3E6;
    /* Light tinted background */
    --accent-gold: #F58220;
    /* Warm Wheat Orange / Gold */
    --accent-gold-dark: #D46912;
    /* Deeper Orange for hover states */
    --neutral-dark: #1E2D12;
    /* Deep Organic Green-Black for text */
    --neutral-light: #F9FBF8;
    /* Soft Off-White background */
    --white: #FFFFFF;

    /* System Colors */
    --text-primary: #1E2D12;
    --text-secondary: #5E7056;
    --border-color: #E2EADF;
    --bg-card: #FFFFFF;
    --success-bg: #D4EDDA;
    --success-text: #155724;

    /* Fonts */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Shadow constants */
    --shadow-sm: 0 4px 12px rgba(91, 146, 55, 0.04);
    --shadow-md: 0 12px 32px rgba(91, 146, 55, 0.08);
    --shadow-lg: 0 24px 64px rgba(30, 45, 18, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* 3. Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* offset for sticky header */
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--neutral-light);
    -webkit-font-smoothing: antialiased;
}

body.body-menu-open {
    overflow: hidden !important;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
    border: 2px solid var(--neutral-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}

/* Utility Layouts */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Background Blur Blobs for Premium Depth */
.bg-blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    -webkit-filter: blur(120px);
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.blob-green {
    background-color: var(--primary-green);
}

.blob-gold {
    background-color: var(--accent-gold);
}

/* 4. Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

.delay-5 {
    transition-delay: 0.75s;
}

/* 5. Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-headings);
    transition: var(--transition-smooth);
    font-size: 15px;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green-dark);
    transform: translateY(-2px);
    border-color: var(--white);
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background-color: var(--primary-green-dark);
    font-family: var(--font-headings);
    border: 1px solid var(--primary-green-dark);
    margin-top: 15px;
}

.btn-product:hover {
    background-color: transparent;
    color: var(--primary-green-dark);
}

/* Section Common Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-tagline {
    font-family: var(--font-headings);
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-family: var(--font-headings);
    font-size: 36px;
    color: var(--neutral-dark);
    font-weight: 800;
    line-height: 1.2;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 16px auto;
    border-radius: 2px;
    position: relative;
}

.accent-line span {
    display: block;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border: 2px solid var(--neutral-light);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
}

/* 6. Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Details */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-green-dark);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-sub {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 11px;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

/* Menu Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(91, 146, 55, 0.2);
}

.btn-header:hover {
    background-color: var(--primary-green-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* 7. Hero Section */
.hero-section {
    position: relative;
    padding: 140px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Deep multi-stop gradient ensuring text readability over any background image details */
    background: linear-gradient(90deg, rgba(10, 18, 7, 0.95) 0%, rgba(10, 18, 7, 0.8) 45%, rgba(10, 18, 7, 0.3) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-content {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(91, 146, 55, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(91, 146, 55, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(8px);
    font-family: var(--font-headings);
    animation: badgeFloat 3s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
    0% { transform: translateY(0); box-shadow: 0 2px 10px rgba(245, 130, 32, 0.1); }
    100% { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(245, 130, 32, 0.25); }
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-title .highlight {
    background: linear-gradient(90deg, #FFB74D 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 19px;
    color: #E2EADF;
    margin-bottom: 44px;
    line-height: 1.6;
    max-width: 660px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Hero Stats Container - Premium Glass Cards */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 0;
    border-top: none;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 16px 28px;
    display: flex;
    flex-direction: column;
    min-width: 170px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(91, 146, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(91, 146, 55, 0.15);
}

.stat-num {
    font-family: var(--font-headings);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white) 0%, #DFEAD9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 13px;
    color: #BDC8B7;
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    display: none;
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}

.hero-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-curve .shape-fill {
    fill: var(--neutral-light);
}

/* 8. About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--neutral-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green-light);
}

.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-green-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px auto;
    transition: var(--transition-smooth);
}

.feature-card:hover .icon-box {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-family: var(--font-headings);
    font-size: 20px;
    color: var(--neutral-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

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

/* 9. Products Section */
.products-section {
    padding: 100px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background-color: var(--neutral-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: var(--font-headings);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-family: var(--font-headings);
    font-size: 22px;
    color: var(--neutral-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.detail-tag {
    font-size: 11px;
    background-color: var(--primary-green-light);
    color: var(--primary-green-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

/* 10. Our Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--neutral-light);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0 auto;
    padding: 20px 0;
}

/* Vertical timeline track line */
.timeline-track {
    position: absolute;
    top: 0;
    left: 40px;
    width: 4px;
    height: 100%;
    /* Gradient progress line guiding the eye through the steps */
    background: linear-gradient(to bottom, var(--accent-gold) 0%, var(--primary-green) 100%);
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
    transition: var(--transition-smooth);
}

.timeline-step:last-child {
    margin-bottom: 0;
}

/* Number display bubble */
.step-number {
    position: absolute;
    left: 20px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 18px;
    border: 4px solid var(--neutral-light);
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.15), var(--shadow-sm);
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-number {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: 0 0 0 5px rgba(91, 146, 55, 0.2), var(--shadow-md);
    transform: scale(1.1);
}

.step-content {
    background: linear-gradient(135deg, var(--white) 0%, #FAFCF9 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-content {
    transform: translateX(8px);
    border-color: rgba(91, 146, 55, 0.25);
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 30px;
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--primary-green-light) 0%, rgba(91, 146, 55, 0.1) 100%);
    border: 1px solid rgba(91, 146, 55, 0.15);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    border-color: var(--primary-green-dark);
    transform: scale(1.08) rotate(5deg);
}

.step-content h3 {
    font-family: var(--font-headings);
    font-size: 20px;
    color: var(--neutral-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Horizontal Process Flow for Desktop */
@media (min-width: 768px) {
    .process-timeline {
        display: flex;
        justify-content: space-between;
        max-width: 1100px;
        gap: 24px;
        padding-top: 40px;
    }
    
    .timeline-track {
        top: 62px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, var(--accent-gold) 0%, var(--primary-green) 100%);
    }

    .timeline-step {
        flex: 1;
        padding-left: 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 25px;
    }

    .step-content {
        flex-direction: column;
        align-items: center;
        padding: 30px 24px;
        height: 100%;
    }

    .timeline-step:hover .step-content {
        transform: translateY(-8px);
    }

    .step-icon {
        margin-bottom: 16px;
    }
}

/* 11. Mid Banner Info */
.banner-info {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 45, 18, 0.85);
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-container h2 {
    font-family: var(--font-headings);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.banner-container p {
    font-size: 18px;
    color: #DFEAD9;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* 12. FAQ Section Accordion */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--neutral-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item.active {
    border-color: var(--primary-green-light);
    box-shadow: var(--shadow-sm);
    background-color: var(--white);
}

.accordion-trigger {
    width: 100%;
    padding: 24px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 17px;
    color: var(--neutral-dark);
    transition: var(--transition-fast);
}

.accordion-trigger i {
    font-size: 14px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-trigger {
    color: var(--primary-green-dark);
}

.accordion-item.active .accordion-trigger i {
    transform: rotate(180deg);
    color: var(--primary-green);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* 13. Contact Section Form */
.contact-section {
    padding: 100px 0;
    background-color: var(--neutral-light);
    border-bottom: 1px solid var(--border-color);
}

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

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 5fr 7fr;
        align-items: start;
    }
}

.align-left {
    text-align: left;
    margin: 0 0 30px 0;
}

.align-left .accent-line {
    margin: 16px 0;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: var(--primary-green-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.detail-text h4 {
    font-family: var(--font-headings);
    font-size: 18px;
    color: var(--neutral-dark);
    margin-bottom: 4px;
    font-weight: 700;
}

.detail-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.detail-text p a:hover {
    color: var(--primary-green);
}

.social-channels h4 {
    font-family: var(--font-headings);
    font-size: 16px;
    color: var(--neutral-dark);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--neutral-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

/* Inquiry Form Styles */
.inquiry-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

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

.form-title-wrapper h3 {
    font-family: var(--font-headings);
    font-size: 24px;
    color: var(--neutral-dark);
    font-weight: 800;
    margin-bottom: 6px;
}

.form-title-wrapper p {
    font-size: 14px;
    color: var(--text-secondary);
}

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

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--neutral-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
    transition: var(--transition-fast);
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(91, 146, 55, 0.15);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(91, 146, 55, 0.2);
}

.btn-submit:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(91, 146, 55, 0.3);
}

.form-feedback {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: var(--success-bg);
    color: var(--success-text);
    border: 1px solid #c3e6cb;
}

/* 14. Footer */
.main-footer {
    background-color: #121C0B;
    /* Extremely dark forest tone */
    color: #BDC8B7;
    font-size: 14px;
}

.footer-top {
    padding: 80px 0 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 40px;
}

.brand-col {
    grid-column: span 1;
}

@media (min-width: 992px) {
    .brand-col {
        grid-column: span 2;
        padding-right: 40px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-logo .brand-name {
    color: var(--white);
}

.footer-logo .brand-sub {
    color: var(--accent-gold);
}

.footer-about-text {
    line-height: 1.6;
}

.footer-col h3 {
    font-family: var(--font-headings);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.newsletter-col p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #6C7F64;
}

.newsletter-form button {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 0 16px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--primary-green-dark);
}

.newsletter-feedback {
    font-size: 13px;
    margin-top: 10px;
    display: none;
}

.newsletter-feedback.success {
    display: block;
    color: #85F499;
}

.footer-bottom {
    padding: 30px 0;
    font-size: 13px;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.legal-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.legal-links a:hover {
    color: var(--white);
}

.legal-links .sep {
    color: rgba(255, 255, 255, 0.1);
}

/* 15. WhatsApp Floating Widget */
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float {
    background-color: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #20BA5A;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 22px;
}

.whatsapp-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 280px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(15px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-popup.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.popup-header {
    background-color: #075E54;
    color: var(--white);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.popup-header i {
    font-size: 28px;
}

.popup-header h4 {
    font-family: var(--font-headings);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.popup-header p {
    font-size: 11px;
    opacity: 0.8;
    margin: 0;
    color: #DFEAD9;
}

.popup-body {
    padding: 12px;
    background-color: var(--neutral-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-chat-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-smooth);
    text-align: left;
}

.whatsapp-chat-btn:hover {
    border-color: #25D366;
    background-color: var(--primary-green-light);
    transform: translateX(-3px);
}

.whatsapp-chat-btn i {
    font-size: 24px;
    color: #25D366;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-title {
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 700;
    color: var(--neutral-dark);
}

.chat-number {
    font-size: 11px;
    color: var(--text-secondary);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 16. Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .section-header h2 {
        font-size: 28px;
    }

    .hero-section {
        padding: 140px 0 80px 0;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .stat-divider {
        display: none;
    }

    .main-header {
        padding: 6px 0;
    }

    .header-container {
        padding: 8px 16px;
    }

    .logo-img {
        height: 42px;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-sub {
        font-size: 9px;
    }

    .inquiry-form {
        padding: 24px 20px;
    }

    .mobile-nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 40px 120px 40px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        display: block;
    }

    .has-dropdown {
        width: 100%;
    }

    .btn-header {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    /* Transform burger menu to 'X' */
    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
}

/* ==================================================
   FRUITS CATALOG PAGE STYLES
   ================================================== */

.fruits-hero-section {
    position: relative;
    padding: 180px 0 80px 0;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background-image: url('assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.fruits-catalog-section {
    padding: 100px 0;
    background-color: var(--neutral-light);
}

.fruit-list-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.fruit-row-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    gap: 40px;
    align-items: center;
}

.fruit-row-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(91, 146, 55, 0.2);
}

.fruit-card-image {
    width: 320px;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.fruit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fruit-row-card:hover .fruit-card-image img {
    transform: scale(1.06);
}

.fruit-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fruit-badge {
    align-self: flex-start;
    background-color: var(--primary-green-light);
    color: var(--primary-green-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-headings);
}

.fruit-card-content h3 {
    font-family: var(--font-headings);
    font-size: 26px;
    color: var(--neutral-dark);
    font-weight: 800;
    margin: 0;
}

.fruit-card-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.fruit-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 8px;
}

.spec-item {
    font-size: 13.5px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spec-label {
    font-weight: 700;
    color: var(--neutral-dark);
}

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

.fruit-actions {
    margin-top: 8px;
}

/* Responsive styles for Fruit Catalog */
@media (max-width: 991px) {
    .fruit-row-card {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 24px;
    }

    .fruit-card-image {
        width: 100%;
        height: 280px;
    }
}

@media (max-width: 575px) {
    .fruits-hero-section {
        padding: 140px 0 60px 0;
        min-height: 35vh;
    }
    
    .fruit-card-image {
        height: 200px;
    }

    .fruit-card-content h3 {
        font-size: 22px;
    }

    .fruit-specs {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   NAVIGATION SUBMENU DROPDOWN STYLES
   ================================================== */

.has-dropdown {
    position: relative;
}

.has-dropdown > .nav-link {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.nav-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
    display: inline-block;
}

@media (min-width: 992px) {
    .has-dropdown:hover > .nav-link .nav-arrow {
        transform: rotate(180deg);
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

@media (min-width: 992px) {
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(5px);
    }
}

.dropdown-link {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    padding: 10px 20px;
    display: block;
    transition: var(--transition-fast);
    text-align: left;
}

.dropdown-link:hover {
    background-color: var(--primary-green-light);
    color: var(--primary-green-dark);
    padding-left: 24px;
}

/* Nested Sub-Dropdown (Desktop Only) */
@media (min-width: 992px) {
    .dropdown-submenu {
        position: relative;
    }
    .dropdown-submenu .sub-dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        background-color: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        min-width: 220px;
        padding: 12px 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        transform: translateX(15px);
        z-index: 1003;
        display: flex;
        flex-direction: column;
    }
    .dropdown-submenu:hover .sub-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(5px);
    }
    .dropdown-submenu > .dropdown-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    .dropdown-submenu > .dropdown-link .nav-arrow-right {
        font-size: 11px;
        transition: transform 0.3s ease;
    }
    .dropdown-submenu:hover > .dropdown-link .nav-arrow-right {
        transform: rotate(-90deg);
    }
}

/* Nested Sub-Dropdown (Mobile Only) */
@media (max-width: 991px) {
    .dropdown-submenu {
        width: 100%;
    }
    .dropdown-submenu > .dropdown-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .dropdown-submenu .sub-dropdown-menu {
        background-color: rgba(0, 0, 0, 0.02);
        padding: 0;
        margin-left: 15px;
        border-left: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    }
    .dropdown-submenu.active-submenu .sub-dropdown-menu {
        max-height: 300px;
        padding: 6px 0;
    }
    .dropdown-submenu.active-submenu > .dropdown-link .nav-arrow-right {
        transform: rotate(90deg);
    }
}

/* Mobile Dropdown styles */
@media (max-width: 991px) {
    .has-dropdown > .nav-link {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-menu {
        display: block !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        background-color: #f6faf4 !important;
        padding: 0 !important;
        margin-left: 15px !important;
        border-left: 2px solid var(--border-color) !important;
        width: calc(100% - 15px) !important;
        min-width: 0 !important;
        max-height: 0;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    }

    .has-dropdown.active-dropdown .dropdown-menu {
        max-height: 500px !important; /* arbitrary limit to allow auto-expand */
        padding: 8px 0 !important;
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .has-dropdown.active-dropdown > .nav-link .nav-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-link {
        padding: 8px 16px;
        font-size: 15px;
    }
}

/* ==================================================
   BLOG PAGE STYLES
   ================================================== */

.blogs-catalog-section {
    padding: 100px 0;
    background-color: var(--neutral-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(91, 146, 55, 0.2);
}

.blog-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.06);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-category {
    align-self: flex-start;
    background-color: var(--primary-green-light);
    color: var(--primary-green-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-headings);
    margin-bottom: 15px;
}

.blog-card-content h3 {
    font-family: var(--font-headings);
    font-size: 22px;
    color: var(--neutral-dark);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.blog-card-content h3 a:hover {
    color: var(--primary-green);
}

.blog-card-content p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    font-size: 13px;
    color: var(--text-secondary);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--neutral-dark);
}

.blog-author i {
    color: var(--primary-green);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==================================================
   CONTACT PAGE MAP STYLES
   ================================================== */

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 350px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

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

/* ==================================================
   PRODUCT DETAIL PAGE STYLES
   ================================================== */

.product-detail-section {
    padding: 120px 0 60px 0;
    background-color: var(--neutral-light);
}

.product-header-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .product-header-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.product-header-info h2 {
    font-family: var(--font-headings);
    font-size: 38px;
    color: var(--neutral-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.product-header-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

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

.product-features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 15.5px;
    color: var(--text-primary);
    font-weight: 500;
}

.product-features-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-green);
    font-size: 18px;
}

.product-header-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.product-header-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.section-divider {
    text-align: center;
    margin: 50px 0;
}

.section-divider h3 {
    font-family: var(--font-headings);
    font-size: 26px;
    color: var(--neutral-dark);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-divider h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-green);
}

.industry-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.industry-item {
    font-family: var(--font-headings);
    font-weight: 600;
    color: #e64a19;
    font-size: 17px;
    padding: 8px 16px;
    background-color: rgba(230, 74, 25, 0.05);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.industry-item:hover {
    background-color: #e64a19;
    color: var(--white);
    transform: translateY(-2px);
}

.specs-table-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.specs-table th {
    background-color: #d32f2f;
    color: var(--white);
    font-family: var(--font-headings);
    font-weight: 600;
    text-align: left;
    padding: 16px 24px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-table td {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 15px;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: #fdfdfd;
}

.specs-table tr:hover {
    background-color: #f5f5f5;
}