@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors - 'Heritage Organic' Palette (Premium & Grounded) */
    --primary-green: #1B3022;
    /* Deep Forest */
    --secondary-green: #2D4A3A;
    /* Muted Sage-Green */
    --accent-orange: #D4A373;
    /* Burnished Bronze/Gold */
    --accent-gold: #C28F5A;
    --light-bg: #FDFBF7;
    /* Warm Bone-White */
    --text-dark: #2B2B2B;
    /* High-Contrast Charcoal */
    --text-muted: #666666;

    /* Typography - Sustainable Luxury pairing */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.7;
    /* Breathable body text */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-weight: 700;
    /* Playfair needs bolder weights for that 'Floret' look */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.bg-white {
    background-color: #ffffff !important;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Header styles are now inline in header.php for     */
/* the premium dark header design. Below are fallback */
/* styles that won't conflict with the premium header */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Legacy nav fallback â€” only for non-premium headers */
nav:not(.premium-nav) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Keep btn styles for header CTA compatibility */
header .btn {
    padding: 8px 22px;
    font-size: 0.9rem;
    border-width: 2px;
    line-height: normal;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* PREMIUM BUTTON SYSTEM                              */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Shimmer animation for all buttons */
@keyframes btnShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Base Button */
.btn {
    padding: 14px 34px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

/* Shimmer overlay for all buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: none;
    z-index: 1;
}

.btn:hover::before {
    animation: btnShimmer 0.6s ease forwards;
}

/* â”€â”€â”€ Primary Button (Filled Dark Green) â”€â”€â”€ */
.btn-primary {
    background: linear-gradient(135deg, #1B3022 0%, #2D4A3A 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(27, 48, 34, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2D4A3A 0%, #3a5e4c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 48, 34, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.15);
    color: #ffffff;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 48, 34, 0.3);
}

/* â”€â”€â”€ Outline Button (Border â†’ Fill on hover) â”€â”€â”€ */
.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #1B3022 0%, #2D4A3A 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: #ffffff;
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 48, 34, 0.2);
}

.btn-outline:hover::after {
    height: 100%;
}

/* â”€â”€â”€ Accent Button (Gold/Bronze) â”€â”€â”€ */
.btn-accent {
    background: linear-gradient(135deg, #D4A373 0%, #C28F5A 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #C28F5A 0%, #b37d48 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 163, 115, 0.4);
    color: #ffffff;
}

/* â”€â”€â”€ Outline White Button (Hero CTAs) â”€â”€â”€ */
.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

/* Hero Section V2 */
.hero-v2 {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    background: #000;
}

.hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-real.png');
    background-size: cover;
    background-position: center;
    animation: zoomHero 20s infinite alternate;
    z-index: 1;
}

@keyframes zoomHero {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-v2 .container {
    text-align: left;
}

.badge {
    background: var(--accent-orange);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out;
}

.hero-v2 h1 {
    color: white;
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 800;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-v2 h1 span {
    color: var(--accent-orange);
}

.hero-v2 p {
    font-size: 1.5rem;
    max-width: 650px;
    margin: 0 0 45px;
    opacity: 0.9;
    line-height: 1.4;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

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

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

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

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

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

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

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

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Purpose Section Redesign */
.purpose-section.centered-layout {
    padding: 100px 0 0;
    /* No bottom padding to connect with mission section */
    background: #ffffff;
    /* Contrast against body bg-light */
    text-align: center;
}

.purpose-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.purpose-content .section-header-v2 {
    text-align: center;
}

.section-tag {
    color: var(--accent-orange);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 5.5rem;
    /* Larger for serif impact */
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -2px;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
}

.purpose-content h3 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.purpose-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 60px 0;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 0 40px;
    background: transparent;
    border-radius: 0;
    flex: 1;
    position: relative;
    border: none;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #e0e0e0;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--accent-orange);
    display: flex;
    justify-content: center;
}

.stat-icon i {
    width: 32px;
    height: 32px;
}



.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.stat-item .num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    /* Olam uses dark numbers */
    display: inline-block;
    line-height: 1;
}

.stat-item .plus {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    /* Highlighted symbol */
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Trust/Certifications Section */
.trust-section {
    padding: 20px 0 0;
    /* Minimal bottom padding */
    background: var(--light-bg);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cert-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cert-item img {
    height: 80px;
    /* Increased from 60px */
    width: auto;
    filter: grayscale(100%) contrast(1.1) brightness(1.05);
    opacity: 0.6;
    mix-blend-mode: multiply;
    /* Removes white/off-white background boxes */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cert-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Products Preview V2 */
.bg-light {
    background: var(--light-bg);
}

.border-top {
    border-top: none;
    /* Removed top border to reduce visual gap */
}

.section-header-v2 {
    padding: 0 0 30px;
    /* Zero top padding, reduced bottom spacing */
    text-align: left;
}

.section-header-v2 h3 {
    font-size: 3rem;
    line-height: 1.15;
    margin-top: 10px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.products-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding-bottom: 0px;
    /* Gap removed completely */
}

.product-card-v2 {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.product-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-card-v2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent-orange);
    transition: width 0.4s ease;
}

.product-card-v2:hover::after {
    width: 100%;
}

.card-img-box {
    height: 300px;
    background: #f0f2f5;
    position: relative;
    overflow: hidden;
}

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

.product-card-v2:hover .card-img-box img {
    transform: scale(1.1);
}

.card-img-box::before {
    content: 'PREMIUM';
    position: absolute;
    top: 20px;
    left: -30px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 40px;
    font-size: 0.6rem;
    transform: rotate(-45deg);
    z-index: 2;
    font-weight: 800;
}

.card-body {
    padding: 40px 30px;
}

.card-body h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-body p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.link-btn {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-bottom: 4px;
}

.link-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), #D4AF37);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-btn:hover {
    color: var(--accent-orange);
}

.link-btn:hover::after {
    width: 100%;
}

.link-btn span {
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-btn:hover span {
    transform: translateX(8px);
}

/* Export Markets V2 */
.export-markets-v2 {
    padding: 120px 0;
    background: #fdfdfd;
}

.market-map-placeholder {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, #1B4332 0%, #0d2119 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.network-dot {
    width: 15px;
    height: 15px;
    background: var(--accent-orange);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 20px var(--accent-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Footer V2 */
.footer-v2 {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle separation for light footer */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 100px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #888;
    line-height: 1.8;
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--accent-orange);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

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

.footer-nav ul li {
    margin-bottom: 15px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-nav ul li a:hover {
    color: var(--accent-orange);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

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

.social-icon-v2 {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-v2:hover {
    background: var(--accent-orange);
    color: #fff;
    transform: translateY(-3px);
}

.social-icon-v2 i {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
}

.social-links a:hover {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(27, 67, 50, 0.8), rgba(27, 67, 50, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.feature-card {
    background: white;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Products Preview */
.products-preview {
    padding: 60px 0 0;
    /* Zero bottom padding to match the Mission-About gap logic */
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.product-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-img {
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-muted);
}

.product-card h3 {
    margin-bottom: 10px;
}

.product-card .link {
    display: block;
    margin-top: 15px;
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
}

.center-btn {
    text-align: center;
}

/* Export Markets */
.export-markets {
    padding: 100px 0;
    background: var(--primary-green);
    color: white;
}

.export-markets h2 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.markets-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.markets-text {
    flex: 1;
}

.markets-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.markets-list li {
    font-size: 1.1rem;
    font-weight: 500;
}

.markets-list span {
    margin-right: 10px;
}

.markets-map {
    flex: 1;
}

.map-placeholder {
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Footer Section */
.main-footer {
    padding: 60px 0;
    background: #0d2119;
    color: white;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-info h3 {
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-social p {
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Inner Page Header V2 */
.page-header-v2 {
    background: var(--primary-green);
    padding: 100px 0;
    color: white;
}

.page-header-v2 h1 {
    color: white;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-top: 15px;
    font-weight: 800;
}

.page-header-v2 h1 span {
    color: var(--accent-orange);
}

.about-text-v2 h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

/* About Page Styles */
.about-content {
    padding: 100px 0;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mission-vision {
    padding-bottom: 100px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-gold);
}

.card h3 {
    margin-bottom: 15px;
}

/* Products Grid Section */
.products-grid-section {
    padding: 100px 0;
}

/* Why Us Styles */
.quality-standards {
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
}

.step h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.card.dark {
    background: var(--primary-green);
    color: white;
    padding: 60px;
    text-align: center;
}

.card.dark h2 {
    color: var(--accent-gold);
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.whatsapp-cta {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
}

.contact-info .info-item {
    margin-bottom: 40px;
}

/* Inner Sections V2 */
.process-steps-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-bottom: 100px;
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* Contact V2 */
.contact-grid-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 100px 0;
}

.contact-form-card {
    background: white;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.olam-form label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    color: var(--text-dark);
}

.olam-form input,
.olam-form select,
.olam-form textarea {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 12px 0;
    margin-bottom: 30px;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s;
}

.olam-form input:focus,
.olam-form select:focus,
.olam-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-orange);
}

.contact-sidebar h2 {
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-orange);
}

.whatsapp-link span {
    transition: margin-left 0.3s;
}

.whatsapp-link:hover span {
    margin-left: 10px;
}

/* Product Detail V2 */
.product-detail-v2 {
    padding: 100px 0;
}

.detail-img-v2 {
    flex: 1;
}

.detail-text-v2 {
    flex: 1;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.spec-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.spec-item p {
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsiveness */
@media (max-width: 992px) {
    .container {
        width: 95%;
    }

    .hero-v2 h1 {
        font-size: 3rem;
    }

    .flex-row,
    .contact-grid-v2 {
        flex-direction: column;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-grid-v2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-v2 h1 {
        font-size: 2.5rem;
    }

    .page-header-v2 h1 {
        font-size: 2.5rem;
    }

    .purpose-text h3,
    .section-header-v2 h3 {
        font-size: 2rem;
    }
}

/* Products & Services Section - Olam Style */
.services-section {
    padding: 60px 0 100px;
    /* Top padding set to match the consistent 60px gap */
    margin-top: 0;
    /* Removed negative margin to ensure consistent spacing */
    background: transparent;
    position: relative;
    z-index: 5;
}

.split-layout {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}

.services-content {
    flex: 1;
    max-width: 500px;
}

.services-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    /* Reduced from 40px */
    line-height: 1.5;
}

.services-main-img {
    margin-top: 20px;
    margin-left: auto;
    /* Push towards icons */
    position: relative;
    width: 100%;
    max-width: 280px;
}

#service-title,
#service-desc,
#service-img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.services-main-img img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    mix-blend-mode: multiply;
    /* Removes pure white backgrounds */
    filter: brightness(1.2) contrast(1.4);
    /* Blows out light backgrounds to pure white */
    transition: all 0.4s ease;
}

.services-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-top: 100px;
    /* Pushes icons down to safe visual area while text stays high */
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-item span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

.service-item:hover .service-icon {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
        gap: 60px;
    }

    .services-content {
        max-width: 100%;
    }

    .services-grid {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Mission Section - Premium Redesign */
.mission-grid-v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mission-item-v3 {
    padding: 50px 30px;
    position: relative;
    background: transparent;
    border-left: 1px solid #eee;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mission-item-v3::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--accent-orange);
    transition: height 0.4s ease;
}

.mission-item-v3:hover::before {
    height: 100%;
}

.mission-item-v3:hover {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.mission-backdrop-num {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 6rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-orange);
    opacity: 0.04;
    /* Very subtle editorial feel */
    pointer-events: none;
    line-height: 1;
}

.mission-icon-v3 {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    z-index: 2;
}

.mission-item-v3:hover .mission-icon-v3 {
    background: var(--accent-orange);
    color: #ffffff;
    transform: rotateY(180deg);
}

.mission-icon-v3 i {
    width: 24px;
    height: 24px;
}

.mission-text-v3 h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
    font-family: var(--font-heading);
}

.mission-text-v3 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Why Gaugreen Section */
.why-gaugreen {
    padding: 100px 0;
    background: var(--primary-green);
    color: white;
}

.why-gaugreen .section-tag {
    color: var(--accent-orange);
}

.why-gaugreen h3 {
    color: white;
    margin-bottom: 50px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: background 0.3s;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.why-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.why-text h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-text p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Sustainability Section */
.sustainability-banner {
    padding: 120px 0;
    background: linear-gradient(rgba(27, 67, 50, 0.9), rgba(27, 67, 50, 0.9)), url('../images/hero-real.png');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.sustainability-content {
    max-width: 800px;
    margin: 0 auto;
}

.sustainability-content h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 30px;
}

.sustainability-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.reveal-flip {
    opacity: 0;
    transform: rotateX(-90deg);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
    perspective: 1000px;
    transform-origin: top;
}

.reveal-flip.active {
    opacity: 1;
    transform: rotateX(0);
}

/* New Premium Footer V3 */
.site-footer {
    background-color: #1A3626;
    /* Dark green matching reference */
    color: #e0e0e0;
    padding: 80px 0 30px;
    font-family: var(--font-body);
}

.footer-grid-v3 {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: #F8C12C;
    /* Gold yellow matching reference */
}

/* Hide the pseudo-element for the first column (Brand column doesn't have it in ref) */
.brand-col h4::after {
    display: none;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-logo-text span {
    color: #F8C12C;
    /* Yellow/Gold for GREEN */
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #c0cdce;
    /* Lighter slightly greenish grey for body text */
}

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

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

.footer-col ul li a {
    color: #c0cdce;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #F8C12C;
    /* Gold hover */
}

.contact-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-col ul li i {
    color: #F8C12C;
    /* Gold icons */
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-col ul li span,
.contact-col ul li a {
    color: #c0cdce;
    line-height: 1.5;
    text-decoration: none;
}

.footer-bottom-v3 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-v3 p {
    color: #a0b3af;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid-v3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid-v3 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Premium Contact Page Styles */
.contact-section-v3 {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.contact-grid-v3 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.contact-form-premium {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group-v3 {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column-reverse;
}

.form-group-v3 label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-green);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.form-control-v3 {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 2px solid #eee;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-control-v3:focus {
    outline: none;
    border-bottom-color: var(--accent-orange);
}

.form-control-v3:focus+label {
    color: var(--accent-orange);
}

.contact-info-premium {
    padding: 40px;
    background: var(--primary-green);
    color: #ffffff;
    border-radius: 20px;
    height: 100%;
}

.contact-info-premium h3 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 2rem;
}

.info-item-v3 {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.info-item-v3 i {
    color: var(--accent-orange);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.info-text-v3 h4 {
    color: var(--accent-orange);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-text-v3 p,
.info-text-v3 a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: color 0.3s;
}

.info-text-v3 a:hover {
    color: #ffffff;
}

.btn-premium {
    background: linear-gradient(135deg, #1B3022 0%, #2D4A3A 100%);
    color: #ffffff;
    padding: 18px 50px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(27, 48, 34, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: none;
}

.btn-premium:hover::before {
    animation: btnShimmer 0.6s ease forwards;
}

.btn-premium:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #c29b2e 100%);
    color: #0a1a10;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
    .contact-grid-v3 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-premium {
        padding: 40px 30px;
    }
}

/* =========================================
   Blog / Editorial Section
   ========================================= */
.blog-preview-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

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

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.blog-card-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #D4AF37, var(--accent-orange));
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

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

.blog-card-category {
    color: var(--accent-orange);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--accent-orange);
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(27, 48, 34, 0.04);
    border: 1px solid transparent;
}

.blog-read-more:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #1B3022 0%, #2D4A3A 100%);
    border-color: transparent;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(27, 48, 34, 0.2);
}

.blog-read-more i {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Blog Pagination & Empty State */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 15px;
    border-radius: 50px;
    background: white;
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(27, 48, 34, 0.1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.blog-pagination .page-numbers:hover {
    background: #fdfbf7;
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.1);
}

.blog-pagination .page-numbers.current {
    background: linear-gradient(135deg, #1B3022 0%, #2D4A3A 100%);
    color: #D4AF37;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(27, 48, 34, 0.25);
    transform: scale(1.05);
}

.empty-state-message {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px dashed rgba(27, 48, 34, 0.15);
    border-radius: 16px;
    margin: 40px auto;
    max-width: 600px;
}

.empty-state-message p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

/* Single Blog Post */
.single-post-header {
    padding: 180px 0 160px;
    background: linear-gradient(135deg, #0d1f16 0%, #1B3022 40%, #2D4A3A 100%);
    text-align: center;
    position: relative;
}

.single-post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single-post-meta span {
    color: #D4AF37;
}

.single-post-title {
    font-family: 'Instrument Serif', serif;
    font-size: 4rem;
    color: #ffffff;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 40px;
    font-weight: 400;
}

/* Container overlaps the dark header slightly */
.single-post-container {
    background: white;
    margin-top: -100px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(27, 48, 34, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 10;
    padding: 60px;
    margin-bottom: 100px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.single-featured-image {
    max-width: 100%;
    margin: 0 auto 50px;
    border-radius: 12px;
    overflow: hidden;
}

.single-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.single-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.single-post-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.single-post-content p {
    margin-bottom: 25px;
}

.single-post-content h2,
.single-post-content h3 {
    margin: 40px 0 20px;
    color: var(--primary-green);
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.single-post-content li {
    margin-bottom: 10px;
}

.single-post-content blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-orange);
    border-left: 4px solid var(--accent-orange);
    padding: 20px 30px;
    margin: 40px 0;
    background: #fff;
    border-radius: 0 12px 12px 0;
}

.post-navigation {
    border-top: 1px solid #ddd;
    padding-top: 40px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.post-nav-link {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.post-nav-link:hover {
    color: var(--accent-orange);
}

.post-nav-link i {
    width: 18px;
    height: 18px;
}

/* Page Header for Archive */
.page-header-v3 {
    padding: 160px 0 80px;
    background: linear-gradient(rgba(27, 67, 50, 0.9), rgba(27, 67, 50, 0.9)), url('../images/hero-real.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.page-header-v3 h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
}

.page-header-v3 p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Removed explicit sticky header override */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/*  PREMIUM PRODUCT PAGE STYLES                                   */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ Products Hero Banner â”€â”€â”€ */
.products-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
    /* Pushes content below the sticky header */
    padding-bottom: 60px;
    background: linear-gradient(135deg, #0d1f16 0%, #1B3022 40%, #2D4A3A 100%);
    overflow: hidden;
    color: white;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.products-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 74, 58, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out 2s infinite alternate;
}

@keyframes heroGlow {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.2) translate(20px, -20px);
    }
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Background image removed to prevent conflict with inline banner styles */
    will-change: transform;
}

.products-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.products-hero-tag {
    display: inline-block;
    background: rgba(212, 163, 115, 0.2);
    border: 1px solid rgba(212, 163, 115, 0.4);
    color: var(--accent-orange);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.products-hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    color: white;
    margin-bottom: 25px;
}

.products-hero h1 span {
    display: block;
    color: var(--accent-orange);
    font-weight: 400;
    font-style: italic;
    font-size: 3.5rem;
    margin-top: 10px;
}

.products-hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-bottom: 50px;
}

/* Hero Stats */
.products-hero-stats {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 0;
    backdrop-filter: blur(20px);
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 0 30px;
}

.hero-stat strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.hero-stat span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-orange), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* â”€â”€â”€ Category Section Layout â”€â”€â”€ */
.products-category-section {
    padding: 100px 0;
    position: relative;
}

.products-category-section.bg-white {
    background: #ffffff;
}

.products-category-section.bg-light {
    background: var(--light-bg);
}

/* Category Header */
.category-header {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.category-number {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-orange);
    opacity: 0.4;
    min-width: 100px;
}

.category-info {
    flex: 1;
}

.category-info .section-tag {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.category-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 15px;
}

.category-info h2 em {
    color: var(--accent-orange);
    font-style: italic;
    font-weight: 400;
}

.category-info .section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

/* â”€â”€â”€ Premium Product Cards â”€â”€â”€ */
.premium-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.premium-products-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.premium-products-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}


.premium-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.premium-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.premium-product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 3;
}

.premium-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(212, 175, 55, 0.15);
}

.premium-product-card:hover::before {
    opacity: 1;
}

.premium-product-card:hover::after {
    transform: scaleX(1);
}

/* Horizontal card for grains section */
.premium-product-card.horizontal {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Card Image */
.premium-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f0f2f5;
}

.premium-product-card.horizontal .premium-card-image {
    height: 100%;
    min-height: 400px;
}

.premium-product-card.horizontal .premium-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}

.premium-product-card:hover .premium-card-image img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

/* Card Image Overlay */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
}

.premium-product-card:hover .card-overlay {
    opacity: 1;
}

.card-badge {
    background: var(--accent-orange);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(-10px);
    transition: transform 0.4s ease 0.1s;
}

.premium-product-card:hover .card-badge {
    transform: translateY(0);
}

/* Card Content */
.premium-card-content {
    padding: 35px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    margin-bottom: 12px;
}

.card-origin {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.premium-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.premium-card-content h3 span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.premium-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Card Feature Tags */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.card-features span {
    background: #F8F9FA;
    color: var(--text-muted);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-product-card:hover .card-features span {
    background: white;
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--primary-green);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Enquire Button */
.premium-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 14px 0;
    border-top: 2px solid rgba(212, 175, 55, 0.15);
    margin-top: auto;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.premium-enquire-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, var(--accent-orange));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-enquire-btn:hover::after {
    width: 100%;
}

.premium-enquire-btn svg {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #D4AF37;
}

.premium-enquire-btn:hover {
    color: #D4AF37;
    padding-left: 8px;
}

.premium-enquire-btn:hover svg {
    transform: translateX(8px);
    color: var(--accent-orange);
}

/* â”€â”€â”€ Products CTA Section â”€â”€â”€ */
.products-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1B3022 0%, #0d1f16 50%, #1B3022 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 50px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content h2 em {
    color: var(--accent-orange);
    font-style: italic;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

/* CTA Certifications */
.cta-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.cta-certifications img {
    height: 65px;
    width: auto;
    filter: grayscale(30%) contrast(1.1);
    opacity: 0.85;
    transition: all 0.4s ease;
    mix-blend-mode: multiply;
}

.cta-certifications img:hover {
    opacity: 1;
    filter: grayscale(0%) contrast(1);
    transform: scale(1.12);
}

/* â”€â”€â”€ Premium Product Page Responsive â”€â”€â”€ */
@media (max-width: 1024px) {
    .products-hero h1 {
        font-size: 3.5rem;
    }

    .products-hero h1 span {
        font-size: 2.5rem;
    }

    .premium-products-grid,
    .premium-products-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-product-card.horizontal {
        grid-column: span 2;
    }

    .category-number {
        font-size: 4rem;
    }

    .category-info h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .products-hero h1 {
        font-size: 2.5rem;
    }

    .products-hero h1 span {
        font-size: 2rem;
    }

    .products-hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
        align-self: center;
    }

    .hero-stat {
        padding: 10px 0;
    }

    .scroll-indicator {
        display: none;
    }

    .category-header {
        flex-direction: column;
        gap: 15px;
    }

    .category-number {
        font-size: 3rem;
        min-width: auto;
    }

    .category-info h2 {
        font-size: 2rem;
    }

    .premium-products-grid,
    .premium-products-grid.two-col,
    .premium-products-grid.four-col {
        grid-template-columns: 1fr;
    }

    .premium-product-card.horizontal {
        grid-column: span 1;
        display: block;
    }

    .premium-product-card.horizontal .premium-card-image {
        min-height: 250px;
    }

    .products-category-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-certifications {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-certifications img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .products-hero h1 {
        font-size: 2rem;
    }

    position: relative;
    overflow: hidden;
}

.products-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 50px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content h2 em {
    color: var(--accent-orange);
    font-style: italic;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

/* CTA Certifications */
.cta-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.cta-certifications img {
    height: 65px;
    width: auto;
    filter: grayscale(30%) contrast(1.1);
    opacity: 0.85;
    transition: all 0.4s ease;
    mix-blend-mode: multiply;
}

.cta-certifications img:hover {
    opacity: 1;
    filter: grayscale(0%) contrast(1);
    transform: scale(1.12);
}

/* â”€â”€â”€ Premium Product Page Responsive â”€â”€â”€ */
@media (max-width: 1024px) {
    .products-hero h1 {
        font-size: 3.5rem;
    }

    .products-hero h1 span {
        font-size: 2.5rem;
    }

    .premium-products-grid,
    .premium-products-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-product-card.horizontal {
        grid-column: span 2;
    }

    .category-number {
        font-size: 4rem;
    }

    .category-info h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .products-hero h1 {
        font-size: 2.5rem;
    }

    .products-hero h1 span {
        font-size: 2rem;
    }

    .products-hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
        align-self: center;
    }

    .hero-stat {
        padding: 10px 0;
    }

    .scroll-indicator {
        display: none;
    }

    .category-header {
        flex-direction: column;
        gap: 15px;
    }

    .category-number {
        font-size: 3rem;
        min-width: auto;
    }

    .category-info h2 {
        font-size: 2rem;
    }

    .premium-products-grid,
    .premium-products-grid.two-col,
    .premium-products-grid.four-col {
        grid-template-columns: 1fr;
    }

    .premium-product-card.horizontal {
        grid-column: span 1;
        display: block;
    }

    .premium-product-card.horizontal .premium-card-image {
        min-height: 250px;
    }

    .products-category-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-certifications {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cta-certifications img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .products-hero h1 {
        font-size: 2rem;
    }

    .products-hero h1 span {
        font-size: 1.5rem;
    }

    .products-hero p {
        font-size: 1.1rem;
    }

    .hero-stat strong {
        font-size: 2rem;
    }

    .category-info h2 {
        font-size: 1.8rem;
    }

    .premium-card-image {
        height: 240px;
    }

    .premium-card-content {
        padding: 25px 20px 20px;
    }

    .premium-card-content h3 {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/*  WHY US PAGE STYLES                                            */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.why-hero-bg {
    /* Background image removed to prevent conflict with inline banner styles */
}

/* â”€â”€â”€ Why Features Grid â”€â”€â”€ */
.why-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.why-feature-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 200px;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.why-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, var(--accent-orange));
    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(212, 175, 55, 0.08);
}

.why-feature-card:hover::before {
    opacity: 1;
}

.why-feature-card:hover::after {
    width: 100%;
}

.why-icon-box {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #fdfbf7 0%, #f4eee0 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.why-feature-card:hover .why-icon-box {
    background: linear-gradient(135deg, #1B3022 0%, #2D4A3A 100%);
    color: #D4AF37;
    transform: scale(1.1) translateY(-5px);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(27, 48, 34, 0.3);
}

/* ═══════════════════════════════════════════════════ */
/* WHY US PAGE STYLES                                 */
/* ═══════════════════════════════════════════════════ */

.why-feature-card h3,
.why-feature-card h4 {
    font-size: 1.4rem;
    min-height: 2.8rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.why-feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    min-height: 5.2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

/* --- Section Overrides for Shorter Content --- */
.supply-chain-grid .why-feature-card h4 {
    min-height: 2.5rem;
}
.supply-chain-grid .why-feature-card p {
    min-height: 2.5rem;
}

.gsap-approach-item h3 {
    min-height: 3.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.gsap-approach-item p {
    min-height: 2.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

/* --- Premium Process Timeline --- */
.why-timeline-wrapper {
    max-width: 800px;
    position: relative;
    padding: 20px 0;
}

.why-timeline {
    position: relative;
}

.why-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.6) 50%, rgba(212, 175, 55, 0.1) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 50px;
}

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

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #D4AF37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: var(--font-heading);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover .timeline-dot {
    background: linear-gradient(135deg, #D4AF37, var(--accent-orange));
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    border-color: transparent;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

/* â”€â”€â”€ Premium Stat Cards â”€â”€â”€ */
.stat-card-premium {
    padding: 45px 25px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.stat-card-premium:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.05);
}

.stat-card-premium:hover::before {
    opacity: 1;
}

.stat-card-premium h3 {
    color: transparent;
    background: linear-gradient(90deg, #D4AF37, #f3d57d);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card-premium:hover h3 {
    transform: scale(1.08);
}

.stat-card-premium p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* â”€â”€â”€ Why Process Timeline â”€â”€â”€ */
.why-timeline-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 20px;
}

.why-timeline {
    position: relative;
}

.why-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: rgba(212, 163, 115, 0.3);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

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

.timeline-dot {
    width: 42px;
    height: 42px;
    background: white;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent-orange);
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 0 6px white;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.1);
}

.timeline-content {
    margin-left: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex: 1;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--light-bg);
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transform: rotate(45deg);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-timeline::before {
        left: 20px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/*  PREMIUM CONTACT PAGE STYLES                                   */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ Contact Hero â”€â”€â”€ */
.contact-hero {
    min-height: 60vh;
}

.contact-hero-bg {
    background: url('../images/spices.png') center/cover no-repeat;
    opacity: 0.1;
}

.text-center {
    text-align: left;
}

/* â”€â”€â”€ Premium Contact Section â”€â”€â”€ */
.premium-contact-section {
    padding: 100px 0;
    position: relative;
    background: var(--light-bg);
}

.premium-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* â”€â”€â”€ Contact Info Area (Left) â”€â”€â”€ */
.contact-info-area h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-info-area h2 em {
    color: var(--accent-orange);
    font-style: italic;
    font-weight: 400;
}

.contact-info-area p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.detail-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.detail-text h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.detail-text span,
.detail-text a {
    display: block;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s;
}

.detail-text a:hover {
    color: var(--accent-orange);
}

.whatsapp-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: #25D366 !important;
    font-weight: 600;
    font-size: 0.95rem !important;
}

.whatsapp-link:hover {
    color: #128c7e !important;
}

/* â”€â”€â”€ Contact Form Area (Right) â”€â”€â”€ */
.contact-form-area {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 5px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.premium-form-v2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

/* Floating Label Inputs */
.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.input-group select {
    cursor: pointer;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-bottom-color: var(--accent-orange);
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Active State & Focus State for floating labels */
.input-group input:focus~label,
.input-group input.has-val~label,
.input-group textarea:focus~label,
.input-group textarea.has-val~label,
.input-group select:focus~label,
.input-group select.has-val~label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 600;
}

/* Custom Select Arrow */
.input-group.has-select {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 10px;
    pointer-events: none;
    color: var(--text-muted);
}

.premium-submit-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, #11261a 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    font-family: inherit;
    margin-top: 10px;
    width: 100%;
}

.premium-submit-btn svg {
    transition: transform 0.4s ease;
}

.premium-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 48, 34, 0.2);
}

.premium-submit-btn:hover svg {
    transform: translate(4px, -4px);
}

/* â”€â”€â”€ Contact Responsive â”€â”€â”€ */
@media (max-width: 992px) {
    .premium-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-area {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-info-area h2 {
        font-size: 2.8rem;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* LEADERSHIP & SUPPLY CHAIN UPDATES                  */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.leader-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.leader-image {
    height: 350px;
    background: #f0f2f5;
}

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

.leader-info {
    padding: 30px;
}

.leader-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--primary-green);
    font-family: var(--font-heading);
}

.leader-title {
    display: block;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.leader-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Supply Chain Stepper */
.supply-chain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.supply-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.supply-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 25px;
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(27, 48, 34, 0.2);
    font-family: var(--font-heading);
}

.supply-step h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.supply-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Approach Items */
.approach-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    width: 180px;
}

.approach-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.approach-item:hover .approach-icon {
    background: var(--accent-orange);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.approach-item span {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* End of index.css */

/* ==========================================================================
   LEADERSHIP GRID (About Page)
   ========================================================================== */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.leader-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

.leader-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.leader-info {
    padding: 30px;
    text-align: center;
}

.leader-info h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.leader-title {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
}

.leader-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   INTEGRATED SUPPLY CHAIN (About Page)
   ========================================================================== */
.supply-chain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.chain-step {
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.chain-step:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.chain-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 163, 115, 0.1);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.chain-step h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.chain-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   PREMIUM CONTACT GRID (Contact Page)
   ========================================================================== */
.premium-contact-section {
    padding: 80px 0;
}

.premium-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-area h2 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.contact-info-area>p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.detail-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-green);
}

.detail-text a,
.detail-text span {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s;
}

.detail-text a:hover {
    color: var(--accent-orange);
}

.whatsapp-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    color: #25D366 !important;
    margin-top: 10px;
    font-weight: 600;
}

.contact-form-area {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.premium-form-v2 .form-header {
    margin-bottom: 30px;
}

.premium-form-v2 .form-header h3 {
    font-size: 2rem;
    color: var(--primary-green);
}

.premium-form-v2 .form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0 10px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.input-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 25px 15px 15px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-height: 120px;
    font-family: inherit;
    resize: vertical;
}

.input-group textarea~label {
    left: 15px;
}

.input-group textarea:focus {
    border-color: var(--accent-orange);
    background: rgba(var(--accent-orange-rgb), 0.02);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-group input:focus~label,
.input-group input.has-val~label,
.input-group input:not(:placeholder-shown)~label,
.input-group input:-webkit-autofill~label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--accent-orange);
}

.input-group textarea:focus~label,
.input-group textarea.has-val~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--accent-orange);
    background: white;
    padding: 0 5px;
}

.premium-submit-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    width: 100%;
    justify-content: center;
}

.premium-submit-btn:hover {
    background: var(--accent-orange);
}

@media (max-width: 992px) {
    .premium-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-area {
        padding: 30px;
    }
}

/* ==========================================================================
   PREMIUM SUPPLY CHAIN GRID (About Page - Old Section)
   ========================================================================== */
.premium-steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.supply-step {
    flex: 0 1 calc(33.333% - 20px);
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.supply-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(27, 73, 67, 0.2);
}

.supply-step h4 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.supply-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .supply-step {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .supply-step {
        flex: 0 1 100%;
    }
}

/* ==========================================================================
   ANIMATIONS FOR NEW VALUE CHAIN SECTION
   ========================================================================== */
@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.chain-step {
    transition: all 0.4s ease;
}

.chain-step:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.chain-step:hover .chain-icon {
    animation: floatIcon 2s ease-in-out infinite;
    background: rgba(212, 163, 115, 0.2);
}

/* ==========================================================================
   ENHANCED PREMIUM UI FOR VALUE CHAIN & APPROACH SECTIONS
   ========================================================================== */
.chain-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.chain-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, var(--accent-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chain-step:hover::before {
    opacity: 1;
}

.chain-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.chain-icon {
    width: 80px;
    height: 80px;
    background: #FDFBF7;
    border: 2px solid rgba(212, 163, 115, 0.2);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.1);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: all 0.4s ease;
}

.chain-step:hover .chain-icon {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
    box-shadow: 0 15px 30px rgba(212, 163, 115, 0.3);
}

.approach-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    min-width: 250px;
    flex: 1 1 calc(25% - 40px);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}

.approach-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 163, 115, 0.3);
}

.approach-icon {
    width: 70px;
    height: 70px;
    background: rgba(27, 73, 67, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.approach-item:hover .approach-icon {
    background: var(--primary-green);
    color: white;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(27, 73, 67, 0.2);
}

.approach-item span {
    font-size: 1.05rem;
    color: var(--primary-green);
    font-weight: 700;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* PRODUCTS & SERVICES SHOWCASE (Olamagri-Style)                     */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-showcase {
    padding: 120px 0;
    background: #FDFBF7;
    position: relative;
    overflow: hidden;
}

.services-showcase::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-showcase::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27, 73, 67, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-showcase-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

/* Left Column */
.services-showcase-left {
    position: relative;
}

.services-showcase-left .section-tag {
    margin-bottom: 20px;
    display: inline-block;
}

.services-showcase-left h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.15;
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--primary-green);
}

.services-showcase-left h2 em {
    font-style: italic;
    color: var(--primary-green);
}

.services-showcase-left .services-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 460px;
}

.services-showcase-image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    width: 440px;
    height: 440px;
    margin-bottom: 30px;
    border: 8px solid #fff;
}

.services-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease, transform 0.8s ease;
}

.services-showcase-image:hover img {
    transform: scale(1.02);
}

.services-showcase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(27, 73, 67, 0.15) 100%);
    pointer-events: none;
}

/* Right Column â€” Product Grid */
.services-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateX(5px);
}

/* Circular Icon */
.service-item-icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: transparent;
}

.service-item-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent-orange);
    fill: none;
    stroke-width: 1.2;
    transition: all 0.4s ease;
}

.service-item:hover .service-item-icon {
    transform: scale(1.1);
    background: var(--accent-orange);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.4);
}

.service-item:hover .service-item-icon svg {
    stroke: #ffffff;
    transform: rotate(-5deg);
}

/* Item Text */
.service-item-text {
    position: relative;
    z-index: 1;
}

.service-item-text h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.service-item:hover .service-item-text h4 {
    color: var(--accent-orange);
}

/* Stagger animation delays */
.service-item.reveal.delay-1 {
    transition-delay: 0.05s;
}

.service-item.reveal.delay-2 {
    transition-delay: 0.1s;
}

.service-item.reveal.delay-3 {
    transition-delay: 0.15s;
}

.service-item.reveal.delay-4 {
    transition-delay: 0.2s;
}

.service-item.reveal.delay-5 {
    transition-delay: 0.25s;
}

.service-item.reveal.delay-6 {
    transition-delay: 0.3s;
}

.service-item.reveal.delay-7 {
    transition-delay: 0.35s;
}

.service-item.reveal.delay-8 {
    transition-delay: 0.4s;
}

/* Browse CTA link */
.services-browse-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.services-browse-cta::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 1.5px;
    background: var(--accent-orange);
    transition: width 0.4s ease;
}

.services-browse-cta:hover::after {
    width: 100%;
}

.services-browse-cta:hover {
    gap: 14px;
}

.services-browse-cta svg {
    transition: transform 0.3s ease;
}

.services-browse-cta:hover svg {
    transform: translateX(4px);
}

/* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media screen and (max-width: 1024px) {
    .services-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-showcase-left h2 {
        font-size: 2.5rem;
    }

    .services-showcase-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-showcase {
        padding: 80px 0;
    }
}

@media screen and (max-width: 600px) {
    .services-showcase-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .services-showcase-left h2 {
        font-size: 2rem;
    }

    .service-item {
        padding: 18px 20px;
    }

    .service-item-icon {
        width: 48px;
        height: 48px;
    }

    .service-item-icon svg {
        width: 20px;
        height: 20px;
    }

    .services-showcase {
        padding: 60px 0;
    }

    .services-showcase-image {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }
    .services-showcase-image img {
        height: 100%;
        width: 100%;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* TRENDY BLOB HOVER & DESCRIPTION REVEAL                            */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Liquid Blob Background Morphing */
.service-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(212, 163, 115, 0.05) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-item:hover::before {
    width: 250%;
    height: 250%;
    opacity: 1;
    animation: blob-wobble 8s linear infinite;
}

@keyframes blob-wobble {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

/* Icon Morphing - Subtle scale instead of drastic morph to maintain premium feel */
.service-item:hover .service-item-icon {
    border-radius: 50%; /* Keep it circular but filled */
}

/* Text Container Adjustments */
.service-item-text {
    flex: 1;
}

/* Product Description Reveal */
.service-item-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
    overflow: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.25, 1, 0.5, 1), margin-top 0.45s ease, opacity 0.35s ease;
    opacity: 0;
    margin-top: 0;
}

.service-item-desc>div {
    min-height: 0;
}

.service-item:hover .service-item-desc {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 6px;
    color: rgba(27, 73, 67, 0.85);
    /* Slightly darker green-grey for contrast */
}
/* --------------------------------------------------- */
/* ABOUT PREMIUM SECTION                               */
/* --------------------------------------------------- */
.about-premium-section {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .about-premium-section .container > div {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        text-align: center;
    }
    
    .about-premium-section .section-tag {
        justify-content: center;
    }
    
    .about-premium-section h2 {
        font-size: 2.8rem !important;
    }
    
    .about-premium-section ul {
        text-align: left;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-premium-section .reveal.delay-2 {
        padding: 20px !important;
    }
    
    .about-premium-section img {
        aspect-ratio: 4/3 !important;
    }
}

/* â”€â”€â”€ Premium Section Divider â”€â”€â”€ */
.premium-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.60), transparent);
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 5;
    border: none;
}

/* â”€â”€â”€ Smooth Scroll Enhancement â”€â”€â”€ */
html {
    scroll-behavior: smooth;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* PREMIUM ABOUT PAGE REDESIGN STYLES                 */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Cinematic Hero Zoom */
.about-hero {
    overflow: hidden;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: inherit;
    z-index: -1;
    transition: transform 15s ease-out;
    transform: scale(1);
}

.about-hero.is-active::before {
    transform: scale(1.15);
}

/* Glassmorphic Cards */
.glass-premium-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-premium-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-premium-card:hover::after {
    opacity: 1;
}

/* Dynamic Journey / Supply Chain */
.journey-container {
    padding: 60px 0;
    position: relative;
}

.journey-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-50%);
}

.journey-track-fill {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, #D4AF37, #E6C24B);
    transform: translateX(-50%);
    height: 0%;
    transition: height 0.1s linear;
}

.journey-item {
    margin-bottom: 80px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.journey-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border-left: 4px solid #D4AF37;
}

.journey-item:nth-child(even) .journey-content {
    margin-left: auto;
    border-left: none;
    border-right: 4px solid #D4AF37;
}

.journey-item:nth-child(odd) .journey-content {
    margin-right: auto;
}

.journey-node {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #D4AF37;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* Parallax Image Wrapper */
.parallax-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.parallax-image-wrapper img {
    will-change: transform;
}

/* Media Queries for Journey */
@media (max-width: 768px) {
    .journey-track, .journey-track-fill {
        left: 20px;
        transform: none;
    }
    .journey-node {
        left: 20px;
        transform: none;
    }
    .journey-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        border-left: 4px solid #D4AF37 !important;
        border-right: none !important;
    }
}
/* --------------------------------------------------- */
/* PRO-LEVEL 3D VISION/MISSION ANIMATIONS */
/* --------------------------------------------------- */
.mission-vision-grid {
    perspective: 2000px !important;
}

.glass-premium-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: transform 0.1s ease-out, box-shadow 0.4s ease, background 0.4s ease !important;
    transform-style: preserve-3d !important;
    will-change: transform !important;
}

.glass-premium-card::after {
    content: "" !important;
    position: absolute !important;
    top: -150% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.15), transparent) !important;
    transform: rotate(45deg) !important;
    transition: top 0.7s cubic-bezier(0.19, 1, 0.22, 1) !important;
    opacity: 1 !important;
}

.glass-premium-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4) !important;
}

.glass-premium-card:hover::after {
    top: 150% !important;
}

.glass-premium-card > * {
    transform: translateZ(30px) !important;
}

.glass-premium-card .why-icon-box {
    transform: translateZ(60px) !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.glass-premium-card:hover .why-icon-box {
    transform: translateZ(80px) scale(1.15) !important;
}

/* ========================================================================= */
/* RESPONSIVENESS OVERRIDES - TABLET & MOBILE EXCLUSIVELY                    */
/* ========================================================================= */

@media (max-width: 1024px) {
    /* Container Adjustments */
    .container {
        width: 95%;
    }

    /* Purpose Stats Layout */
    .purpose-stats {
        flex-wrap: wrap;
        padding: 40px 0;
    }
    .stat-item {
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
    .stat-item:not(:last-child)::after {
        display: none; /* Remove right borders to prevent mess */
    }

    /* Certifications Grid */
    .cert-logos {
        gap: 20px;
    }
    .cert-item img {
        height: 60px;
    }

    /* Footer Constraints */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Typography Overrides */
    .hero-v2 h1, .hero-content h1 {
        font-size: clamp(2.5rem, 8vw, 4rem) !important; /* Scale dynamically */
        line-height: 1.1;
    }
    
    .hero-v2 p {
        font-size: 1.1rem !important;
        margin-bottom: 30px;
    }

    .purpose-content h3 {
        font-size: clamp(2rem, 6vw, 2.5rem) !important;
        line-height: 1.2;
    }

    .section-header-v2 h3 {
        font-size: clamp(2rem, 6vw, 2.5rem) !important;
    }

    .stat-item .num, .stat-item .plus {
        font-size: 2.5rem !important;
    }

    /* Padding & Margin Replacements */
    .purpose-section.centered-layout,
    .export-markets-v2,
    .products-grid-v2 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    /* Grid Layout Simplifications */
    .products-grid-v2 {
        grid-template-columns: 1fr !important;
    }

    .purpose-stats {
        flex-direction: column;
        padding: 30px 0;
    }
    .stat-item {
        flex: 1 1 100%;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
    }
    .stat-item:last-child {
        border-bottom: none;
    }

    /* Footer Fix for Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Miscellaneous Adjustments */
    .card-img-box {
        height: 250px;
    }

    /* Disable some 3D hovers on mobile to prevent overflow */
    .glass-premium-card,
    .why-feature-card,
    .premium-product-card {
        transform: none !important;
        transition: none !important;
    }
    .glass-premium-card:hover,
    .why-feature-card:hover,
    .premium-product-card:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    }

    /* Force GSAP initially hidden items to be visible on mobile where animations are disabled */
    .gsap-fade-in,
    .gsap-product-card,
    .gsap-why-card,
    .gsap-vision-item,
    .gsap-approach-item,
    .gsap-export-card,
    .about-deco-bg,
    .about-main-image,
    .about-deco-accent,
    .about-floating-badge,
    .about-deco-circle {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Hide the animated image mask since GSAP won't trigger it on mobile */
    .premium-card-image::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    /* Ultra-small screens */
    .hero-v2 h1, .hero-content h1 {
        font-size: 2.2rem !important;
    }
    .hero-v2 p {
        font-size: 1rem !important;
    }
    .section-desc {
        font-size: 1rem !important;
    }
}

/* ========================================================================= */
/* RESPONSIVE GRID UTILITIES FOR HOMEPAGE FIXES                              */
/* ========================================================================= */

/* Laptop/Desktop (Default) Settings */
.responsive-grid-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
}
.responsive-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
}
.responsive-grid-auto200 {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
}
.about-editorial-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr !important;
}
.mission-vision-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
}

/* Tablet Overrides */
@media (max-width: 1024px) {
    .responsive-grid-4 {
        grid-template-columns: 1fr 1fr !important;
    }
    .responsive-grid-auto200 {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    }
    .about-editorial-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .mission-vision-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }
}

/* Mobile Overrides */
@media (max-width: 768px) {
    .responsive-grid-2,
    .responsive-grid-4,
    .about-editorial-grid,
    .mission-vision-grid,
    .form-row {
        grid-template-columns: 1fr !important;
    }
    .responsive-grid-auto200 {
        grid-template-columns: 1fr !important;
    }
    
    /* Additional fix for leadership section if it overlaps */
    .leadership-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
}
