/* 
   Zaika Verse Exports - Luxury B2B Edition
   Theme: "Opulent Earth" - Charcoal, Gold, Editoral Typography
*/

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

:root {
    /* --- Palette --- */
    --c-charcoal: #0a0a0a;
    --c-obsidian: #141414;
    --c-gold: #D4AF37;
    --c-gold-dim: #AA8C2C;
    --c-cream: #F9F9F7;
    --c-white: #FFFFFF;
    --c-gray-light: #F0F0F0;
    --c-gray-med: #888888;
    
    /* --- Typography --- */
    --f-heading: 'Playfair Display', serif;
    --f-body: 'Manrope', sans-serif;
    
    /* --- Layout --- */
    --header-height: 100px;
    --container-max: 1400px;
    
    /* --- Effects --- */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

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

body {
    background-color: var(--c-cream);
    color: var(--c-charcoal);
    font-family: var(--f-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* --- Typography System --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-heading);
    font-weight: 400;
    line-height: 1.1;
    color: var(--c-charcoal);
}

.display-1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.02em;
}

.heading-2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.heading-3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.text-gold { color: var(--c-gold); }
.text-light { color: var(--c-gray-med); }
.text-white { color: var(--c-white); }
.text-saffron { color: #FF9933; }

/* --- Layout Wrappers --- */
.container, .container-narrow {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.container {
    max-width: 1400px;
}

.container-narrow {
    max-width: 1200px;
}

section {
    padding: 100px 0; /* Reduced from 120px */
}

.grid {
    display: grid;
    gap: 4rem;
}


.contact-grid,
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    font-family: var(--f-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--c-gold);
    color: var(--c-charcoal);
    border-color: var(--c-gold);
}

.btn-primary:hover {
    background-color: var(--c-white);
    border-color: var(--c-white);
    color: var(--c-charcoal);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255,255,255,0.3);
    color: var(--c-white);
}

.btn-outline:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
}

.site-header.sticky {
    height: 80px;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border-bottom-color: rgba(212, 175, 55, 0.4);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
}

.logo img {
    height: 60px;
    width: auto;
    /* filter: brightness(0) invert(1); removed to show original color */
    transition: all 0.3s ease;
    display: block;
}

.logo img:hover {
    /* filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); */
    opacity: 0.9;
}

/* Navigation - Center */
.nav-desktop {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-desktop ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-desktop a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    position: relative;
    padding: 10px 0;
    display: block;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--c-gold);
    transition: width 0.3s ease;
}

.nav-desktop a:hover {
    color: #fff;
}

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

.nav-desktop a.active {
    color: var(--c-gold);
}

/* Header Right - CTA & Mobile Toggle */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-cta {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--c-gold);
    color: var(--c-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 600;
    background: transparent;
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--c-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.mobile-toggle {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Tablet & Mobile Layout Logic */
@media (max-width: 992px) {
    .nav-desktop {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
        transition: height 0.4s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-desktop.mobile-menu-active {
        height: auto;
        padding: 2rem 0;
    }

    .nav-desktop ul {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .mobile-toggle {
        display: block;
        margin-left: 1rem;
    }

    /* Hide Desktop CTA on mobile (it's duplicated or we move it) 
       For now, let's keep it visible in header-right, but maybe smaller padding */
    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .header-cta {
        display: none; /* Hide CTA button on very small screens to fit logo/burger, 
                        assuming we add it to mobile menu or keep it simple */
    }
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background-color: var(--c-charcoal);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* Mandala Overlay */
.mandala-bg {
    position: relative;
}
.mandala-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 C60 20 80 20 80 40 C80 60 60 80 50 100 C40 80 20 60 20 40 C20 20 40 20 50 0 Z" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px 200px;
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 10s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--c-white);
}

.hero-overline {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--c-gold);
    margin-bottom: 1.5rem;
}

.heritage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--c-gold);
    border-radius: 50px;
    font-family: var(--f-heading);
    font-size: 0.9rem;
    color: var(--c-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(212, 175, 55, 0.05);
}

/* --- Dark Section (Why Choose Us) --- */
.section-dark {
    background-color: var(--c-charcoal);
    color: var(--c-white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.feature-card {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 2rem;
    transition: all 0.5s ease;
}

.feature-card:hover { border-color: var(--c-gold); }

.feature-number {
    font-family: var(--f-heading);
    font-size: 3rem;
    color: rgba(255,255,255,0.1);
    margin-bottom: 1rem;
    display: block;
}

/* --- Product Showcase --- */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.showcase-text {
    padding: 6rem;
    background: var(--c-white);
}

.showcase-image {
    height: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--c-obsidian);
    color: rgba(255,255,255,0.6);
    padding: 100px 0;
    font-size: 0.9rem;
    border-top: 3px solid var(--c-gold);
}

.site-footer h3 {
    color: var(--c-white);
    margin-bottom: 1.5rem;
}

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

/* --- Responsive Design --- */

/* Tablet (Landscape) & Small Laptops */
@media (max-width: 1024px) {
    :root {
        --container-max: 960px;
        --header-height: 80px;
    }
    
    .display-1 { font-size: 4rem; }
    .heading-2 { font-size: 2.5rem; }
    
    .hero-content {
        max-width: 700px;
    }
    
    .feature-grid {
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Tablet (Portrait) & Large Phones */
@media (max-width: 968px) {
    .nav-desktop { display: none; }
    .mobile-toggle { display: block; }
    
    .product-showcase {
        grid-template-columns: 1fr;
    }
    
    .showcase-image {
        min-height: 400px;
        order: -1; /* Image on top on mobile */
    }
    
    .showcase-text {
        padding: 4rem 2rem;
    }
    
    .section-dark .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    section {
        padding: 60px 0;
    }
    
    .display-1 {
        font-size: 2.75rem;
    }
    
    .heading-2 {
        font-size: 2rem;
    }
    
    .heading-3 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    /* Stack everything */
    .grid, 
    .feature-grid, 
    .footer-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }
    
    .hero-bg {
        opacity: 0.3; /* Darker bg for readability */
    }
    
    .feature-card {
        text-align: center;
        padding: 2rem;
        background: rgba(255,255,255,0.02);
        border-radius: 8px;
    }
    
    .site-footer {
        text-align: center;
        padding: 60px 0;
    }
    
    .site-footer h3::after {
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background: var(--c-gold);
        margin: 10px auto 0;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-active {
        display: block !important;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--c-charcoal);
        padding: 2rem;
        z-index: 999;
        overflow-y: auto;
    }
    
    .mobile-menu-active ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .mobile-menu-active a {
        color: var(--c-white);
        font-size: 1.25rem;
    }
}

.bg-soft { background-color: var(--c-cream); }


/* --- Hero Section --- */
.hero {
    height: 100vh;
    background-color: var(--c-charcoal);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 10s ease; /* Subtle zoom */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--c-white);
}

.hero-overline {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--c-gold);
    margin-bottom: 1.5rem;
}

/* --- Dark Section (Why Choose Us) --- */
.section-dark {
    background-color: var(--c-charcoal);
    color: var(--c-white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.feature-card {
    border-top: 1px solid rgba(212, 175, 55, 0.3); /* Dim gold border */
    padding-top: 2rem;
    transition: all 0.5s ease;
}

.feature-card:hover {
    border-color: var(--c-gold);
}

.feature-number {
    font-family: var(--f-heading);
    font-size: 3rem;
    color: rgba(255,255,255,0.1);
    margin-bottom: 1rem;
    display: block;
}


/* --- Indian Heritage Accents --- */
.mandala-bg {
    background-image: 
        radial-gradient(circle at 50% 50%, transparent 0%, transparent 30%, rgba(212, 175, 55, 0.03) 30%, rgba(212, 175, 55, 0.03) 40%, transparent 40%),
        radial-gradient(circle at 50% 50%, transparent 0%, transparent 50%, rgba(212, 175, 55, 0.02) 50%, rgba(212, 175, 55, 0.02) 60%, transparent 60%);
    position: relative;
}

.mandala-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 C60 20 80 20 80 40 C80 60 60 80 50 100 C40 80 20 60 20 40 C20 20 40 20 50 0 Z" fill="none" stroke="%23D4AF37" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.heritage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--c-gold);
    border-radius: 50px;
    font-family: var(--f-heading);
    font-size: 0.9rem;
    color: var(--c-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(212, 175, 55, 0.05);
}

.text-saffron {
    color: #FF9933; /* Indian Saffron */
}

/* --- Product Teaser (Asymmetrical) --- */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.showcase-text {
    padding: 6rem;
    background: var(--c-white);
}

.showcase-image {
    height: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--c-obsidian);
    color: rgba(255,255,255,0.6);
    padding: 100px 0;
    font-size: 0.9rem;
}

.site-footer h3 {
    color: var(--c-white);
    margin-bottom: 1.5rem;
}

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

/* --- Mobile --- */
.mobile-toggle { display: none; color: #fff; font-size: 1.5rem; }

@media (max-width: 968px) {
    .nav-desktop { display: none; }
    .mobile-toggle { display: block; }
    .product-showcase { grid-template-columns: 1fr; }
    .showcase-text { padding: 3rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Compatibility for old class names temporarily */
.bg-soft { background-color: var(--c-cream); }

/* --- Compliance Section Redesign --- */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.compliance-card {
    background: var(--c-white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--c-gold);
}

.compliance-icon {
    font-size: 2.5rem;
    color: var(--c-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
    width: 60px;
}

.compliance-title {
    font-family: var(--f-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-charcoal);
    margin-bottom: 0.75rem;
}

.compliance-desc {
    font-size: 0.95rem;
    color: rgba(0,0,0,0.7);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-card {
        padding: 2rem;
    }
}

/* --- B2B Commercial Box --- */
.commercial-box {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 2rem;
    border-radius: 4px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.commercial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.commercial-label {
    display: block;
    color: var(--c-charcoal);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.commercial-value {
    opacity: 0.8;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.info-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.info-list li i {
    color: var(--c-gold);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* --- Product Detail Layout --- */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.product-image-container {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Subtle premium shadow */
    margin-bottom: 2.5rem;
    position: relative;
    border-bottom: 3px solid var(--c-gold); /* Thin gold accent */
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-container {
        height: 350px;
    }
}

/* --- Product Hero Redesign --- */
.product-hero {
    position: relative;
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--c-gold);
}

.product-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.product-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 5%;
    z-index: 2;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    right: 0;
}

.hs-code {
    display: inline-block;
    color: var(--c-gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    background: rgba(0,0,0,0.6);
    padding: 2px 8px;
    border-radius: 2px;
}

.product-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.product-hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    font-weight: 300;
}

.product-content-wrapper {
    padding: 5rem 0;
    background: #fff;
}

.product-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.commercial-box-premium {
    background: #fcfcfc;
    border: 1px solid var(--c-gold);
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
}

.commercial-box-premium::before {
    content: 'LOGISTICS';
    position: absolute;
    top: -10px;
    left: 2rem;
    background: var(--c-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 4px 12px;
}

@media (max-width: 900px) {
    .product-hero { height: 400px; }
    .product-title-large { font-size: 2.5rem; }
    .product-data-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* --- Quality Page Redesign --- */
.quality-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--c-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.process-icon {
    font-size: 2rem;
    color: var(--c-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.lab-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.lab-table th {
    background: var(--c-charcoal);
    color: #fff;
    padding: 1.2rem;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.lab-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #555;
    font-size: 0.95rem;
}

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

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

.cert-card {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: #f9f9f9;
    border-left: 3px solid var(--c-gold);
}

.doc-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.doc-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
    color: var(--c-charcoal);
}

.doc-item i {
    color: var(--c-gold);
    margin-right: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .quality-process-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
}

/* --- Quality Page Refinements --- */

/* Standardized Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--c-gold);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* 6-Step Process Improvements */
.process-card {
    background: #fff;
    padding: 3rem 2rem;
    border: 1px solid rgba(0,0,0,0.05); /* Clean border */
    border-top: 3px solid var(--c-gold); /* Gold accent top */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
    position: relative;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Elevated shadow */
}

.process-step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15); /* More visible */
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    line-height: 1;
    z-index: -1;
}

/* Lab Table Upgrade */
.lab-table-container {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.lab-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.lab-table th {
    background: var(--c-charcoal);
    color: #fff;
    padding: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
}

.lab-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.2s ease;
}

.lab-table tr:nth-child(even) td {
    background-color: #fcfcfc; /* Alternating row */
}

.lab-table tr:hover td {
    background-color: rgba(212, 175, 55, 0.05); /* Hover effect */
}

/* Accreditations Improvements */
.cert-card {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 4px solid var(--c-gold); /* Gold left accent */
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.cert-card i {
    font-size: 2.5rem;
    color: var(--c-gold);
    flex-shrink: 0;
}

/* Export Doc Grid Improvements */
.doc-item {
    background: #fff;
    padding: 1.75rem 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--c-charcoal);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.doc-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: var(--c-gold);
}

.doc-item i {
    color: var(--c-gold);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Section Backgrounds */
.bg-light-alt {
    background-color: #f9f9f9;
}

.bg-texture-dark {
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
}

/* --- Contact Page Refinements --- */
.contact-hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border: 1px solid var(--c-gold);
    border-radius: 4px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-premium {
    background: #fff;
    padding: 2.5rem;
    border-top: 4px solid var(--c-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 4px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

.data-label {
    font-weight: 600;
    color: var(--c-charcoal);
}

.data-value {
    color: #666;
    text-align: right;
}

.form-premium {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-charcoal);
    margin-bottom: 0.5rem;
    display: block;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fafafa;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-family: var(--f-body);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--c-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1.5rem;
    text-align: center;
    font-style: italic;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}

/* --- Homepage B2B Redesign --- */

/* Hero Overlay & Trust Anchors */
.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-trust-anchors {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.trust-anchor {
    font-family: var(--f-body);
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.trust-anchor i {
    color: var(--c-gold);
}

/* Premium Metric Section */
.metrics-section {
    background-color: var(--c-charcoal);
    padding: 80px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 1rem;
}

.metric-block {
    position: relative;
    padding: 0 1rem;
}

.metric-block:not(:last-child) {
    border-right: 1px solid rgba(212, 175, 55, 0.3);
}

.metric-number {
    display: block;
    font-family: var(--f-heading);
    font-size: 2.5rem;
    color: var(--c-gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
}

/* Why Global Buyers Section */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    text-align: left;
    padding: 1rem;
}

.advantage-icon {
    font-size: 2rem;
    color: var(--c-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.advantage-title {
    font-family: var(--f-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--c-charcoal);
}

.advantage-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Upgraded Ancient Wisdom Section */
.wisdom-card {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.wisdom-card:hover {
    border-color: var(--c-gold);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.02);
}

.wisdom-number {
    position: absolute;
    top: -1rem;
    right: 1rem;
    font-size: 6rem;
    font-family: var(--f-heading);
    color: rgba(255,255,255,0.05);
    font-weight: 700;
    line-height: 1;
}

/* Product Micro-Specs */
.product-specs {
    font-size: 0.85rem;
    color: var(--c-gold-dim);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Global Presence */
.global-map-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    color: rgba(0,0,0,0.03);
    pointer-events: none;
    z-index: 0;
}

.market-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: var(--f-heading);
    font-size: 1.5rem;
    color: var(--c-charcoal);
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.market-item {
    position: relative;
    padding-right: 2rem;
}

.market-item:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: 0.75rem;
    color: var(--c-gold);
}

@media (max-width: 900px) {
    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    .metric-block:nth-child(even) {
        border-right: none;
    }
    .advantage-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .metric-block {
        border-right: none !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .hero-trust-anchors {
        flex-direction: column;
        gap: 1rem;
    }
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    .market-list {
        flex-direction: column;
        gap: 1rem;
    }
    .market-item {
        padding-right: 0;
    }
    .market-item::after {
        display: none;
    }
}

/* --- Executive Split Layout (Why Us) --- */
.executive-split {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 6rem;
    align-items: start;
}

.executive-intro {
    text-align: left;
    position: sticky;
    top: 120px;
}

.executive-intro .heading-2 {
    margin-bottom: 2rem;
    line-height: 1.3;
}

.executive-intro p {
    font-size: 1.15rem;
    opacity: 0.75;
    line-height: 1.8;
    color: var(--c-charcoal);
}

.gold-line-left {
    width: 90px;
    height: 3px;
    background: var(--c-gold);
    margin: 0 0 2.5rem 0;
}

.executive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.executive-card {
    background: #fff;
    padding: 3.5rem 3rem;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.executive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    border-color: rgba(212, 175, 55, 0.4);
}

.advantage-icon {
    font-size: 2.5rem;
    color: var(--c-gold);
    margin-bottom: 2rem;
    display: inline-block;
}

.advantage-title {
    font-family: var(--f-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--c-charcoal);
}

.advantage-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .executive-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .executive-intro {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .executive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .executive-card {
        padding: 2.5rem 2rem;
    }
}

/* --- Premium Contact Form Redesign --- */

.form-premium {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Subtle shadow */
    border: none;
    border-radius: 12px; /* Rounded corners */
    transition: transform 0.3s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group label {
    font-size: 0.9rem; /* Increased size */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-charcoal);
    margin-bottom: 0.6rem; /* Increased spacing */
    display: block;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 1rem 1.2rem; /* Increased padding */
    border: 1px solid #e5e5e5; /* Soft border */
    background: #fff;
    border-radius: 8px; /* Softer inputs */
    transition: all 0.3s ease;
    font-family: var(--f-body);
    font-size: 1rem;
    color: var(--c-charcoal);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); /* Glow effect */
}

/* Form Trust Badges */
.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    flex-wrap: wrap;
}

.form-trust-badges i {
    color: var(--c-gold);
    margin-right: 0.4rem;
}

/* Mobile Responsiveness for Form */
@media (max-width: 768px) {
    .section-dark {
        padding-top: 140px !important; /* Adjust for fixed header */
    }

    .contact-grid {
        grid-template-columns: 1fr !important; /* Stack columns */
        gap: 3rem !important;
    }

    .form-premium {
        padding: 1.5rem; /* Reduced padding on mobile */
    }

    .form-row {
        grid-template-columns: 1fr; /* Stack inputs */
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .heading-2 {
        font-size: 2rem !important; /* Smaller headings */
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 1rem;
    }

    /* Stack sticky CTA if needed or ensure button is big */
    .btn-primary {
        padding: 1rem;
        font-size: 1.1rem;
    }
}

/* --- Mobile Homepage Redesign (Under 768px) --- */
@media (max-width: 768px) {
    
    /* 1. Hero Section */
    .hero {
        min-height: 100vh; /* Ensure full height */
        padding: 0 1rem;
    }

    .hero-content {
        padding-top: 2rem;
    }

    .display-1 {
        font-size: 2.25rem !important; /* Reduced headline */
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin-bottom: 2rem !important;
        padding: 0 0.5rem;
    }

    .hero-content .fade-in.delay-3 {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .hero .btn {
        width: 100% !important;
        padding: 1rem;
        font-size: 1rem;
    }

    .hero-overlay-dark {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)); /* Stronger overlay */
    }

    /* 2. Trust Anchors */
    .hero-trust-anchors {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .trust-anchor {
        font-size: 0.9rem;
        justify-content: center;
    }

    /* 3. Stats Section */
    .metrics-section {
        padding: 60px 0;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr !important; /* 2-column grid */
        gap: 2rem 1rem !important;
    }

    .metric-block {
        border-right: none !important;
        border-bottom: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .metric-number {
        font-size: 2rem;
    }

    /* 4. Spacing & Typography */
    section {
        padding: 70px 0;
    }

    .heading-2 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    /* 5. Executive Split (Why Us) */
    .executive-split {
        gap: 3rem;
    }

    .executive-intro {
        text-align: center;
    }
    
    .gold-line-left {
        margin: 0 auto 2rem; /* Center line */
    }

    /* 6. Navigation Tweaks */
    .site-header {
        height: 80px;
        background: rgba(5,5,5,0.98); /* Always solid on mobile */
    }

    .logo img {
        height: 50px;
    }
}

/* Additional Mobile Tweaks */
@media (max-width: 768px) {
    /* Improve Section Spacing */
    .showcase-text {
        padding: 3rem 1.5rem !important;
    }
    
    .showcase-image {
        min-height: 300px !important;
    }
    
    /* Footer Alignment */
    .site-footer {
        text-align: center;
        padding: 4rem 1rem 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Global Presence Map */
    .global-map-bg {
        font-size: 15rem; /* Smaller map */
    }
}

/* --- Clientele Section (Premium Refinement) --- */
.clientele-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    border-top: 1px solid var(--c-border);
}

.clientele-split {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: center;
}

.clientele-intro .heading-2 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.clientele-p {
    font-size: 1.1rem;
    color: var(--c-charcoal);
    opacity: 0.8;
    line-height: 1.8;
}

.clientele-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.client-card {
    background: var(--c-light-gray);
    border: none;
    border-left: 4px solid var(--c-gold);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.client-icon {
    font-size: 1.4rem;
    color: var(--c-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.client-title {
    font-family: var(--f-heading);
    font-size: 1.25rem;
    color: var(--c-charcoal);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.client-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .clientele-split {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .clientele-intro {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .gold-line-left {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 600px) {
    .clientele-section {
        padding: 80px 0;
    }
    
    .clientele-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .client-card {
        padding: 1.75rem;
    }
}
/* --- Quality Assurance Hero Redesign --- */
.quality-hero {
    background: radial-gradient(circle at 30% 50%, #1a1a1a 0%, #0a0a0a 100%);
    padding: 120px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.quality-hero-split {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    width: 100%;
}

.quality-hero-content {
    text-align: left;
}

.quality-hero-content .hero-overline {
    color: var(--c-gold);
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.quality-hero-content .heading-2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.quality-hero-content .hero-divider {
    width: 80px;
    height: 3px;
    background: #c8a23a; /* Exact gold accent */
    margin: 0 0 2rem 0;
}

.quality-hero-content p {
    font-size: 1.2rem;
    color: var(--c-gray-med);
    line-height: 1.8;
    max-width: 550px;
}

/* Mobile Responsiveness for Quality Hero */
@media (max-width: 768px) {
    .quality-hero {
        padding: 140px 0 80px;
    }

    .quality-hero-split {
        grid-template-columns: 1fr;
    }

    .quality-hero-content {
        padding: 0 4px;
    }

    .quality-hero-content .heading-2 {
        font-size: 2.5rem;
    }
}
