@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;
}

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/Navigation Styles */
header {
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0;
    background: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* Slimmer header forced height */
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.logo img {
    height: 65px; /* Clear size that fits perfectly inside the slim header */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Removes white background from logo asset */
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

header .btn {
    padding: 8px 22px;
    font-size: 0.9rem;
    border-width: 2px; /* keeping it proportional */
    line-height: normal;
}

/* Button Styles */
.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: white;
}

.btn-accent {
    background-color: var(--accent-orange);
    color: white;
}

.btn-accent:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--text-dark);
}

/* 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: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.link-btn:hover {
    color: var(--accent-orange);
}

.link-btn span {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.link-btn:hover span {
    transform: translateX(5px);
}

/* 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;
    }
}
