/* ==========================================================================
   1. RESET & GLOBAL STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden; /* Prevents horizontal scrolling during element entrance animations */
}

/* ==========================================================================
   2. TOP RED STRIPE
   ========================================================================== */
.top-announcement-bar {
    background-color: #D2143A; /* Vibrant Sri Lankan crimson red */
    color: #FFFFFF;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

/* ==========================================================================
   3. NAVIGATION HEADER
   ========================================================================== */
.main-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 110px;
}

/* ==========================================================================
   UPDATED LOGO SETUP (MATCHED TO INDEX CLASSES: 250px x 125px)
   ========================================================================== */
.logo-area {
    width: 250px;
    height: 100%;         /* Dynamically fills the natural height of your navbar */
    display: flex;
    align-items: center;   /* Vertically centers the logo perfectly */
    justify-content: flex-start;
}

/* Matches your HTML link class */
.header-logo-link {
    text-decoration: none;
    display: block;
    width: 250px;         /* Scaled down cleanly */
    height: 125px;        /* Maintained proportional ratio */
    position: relative;
}

/* Matches your HTML image class */
.header-logo-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;  /* Keeps your fruit textures sharp and unwarped */
}

/* Safely hiding old typographic fallback classes if they are still in the file */
.logo-text { display: none; }
.logo-subtext { display: none; }

/* Navigation Menu & Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    height: 100%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: #444444;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 40px 0;
}

.nav-link:hover {
    color: #D2143A;
}

.arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .arrow {
    transform: rotate(180deg);
}

/* Dropdown Mega-Cards Mechanics */
.dropdown-card {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #EFEFEF;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1010;
}

.nav-item:hover .dropdown-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

.card-arrow {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border-top: 1px solid #EFEFEF;
    border-left: 1px solid #EFEFEF;
}

.mega-card { width: 550px; }
.standard-card { width: 260px; }

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dropdown-item {
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    transition: background 0.25s ease;
    display: block;
}

.dropdown-item:hover { background-color: #F9F9F9; }
.dropdown-item strong {
    display: block;
    color: #111111;
    font-size: 0.95rem;
    margin-bottom: 4px;
    transition: color 0.25s;
}
.dropdown-item:hover strong { color: #D2143A; }
.dropdown-item p { color: #777777; font-size: 0.8rem; line-height: 1.3; }

.full-width {
    grid-column: span 2;
    border-top: 1px solid #F0F0F0;
    margin-top: 5px;
    padding-top: 15px;
}

/* Premium Button Setup */
.btn-wholesale {
    text-decoration: none;
    background-color: #00A86B; /* Lush Crop Green */
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 168, 107, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
}

.btn-wholesale:hover {
    background-color: #008754;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 107, 0.35);
}

/* ==========================================================================
   4. DYNAMIC HERO SECTION
   ========================================================================== */
.maucho-hero-container {
    width: 100%;
    height: 100vh;
    background-image: url('Product-Packages.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-safe-bounds {
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.hero-labels-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}

.random-badge {
    position: absolute;
    padding: 12px 28px;
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    cursor: default;
    user-select: none;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.random-badge.loaded {
    opacity: 1;
    transform: scale(1) rotate(-3deg);
}

.badge-crimson { background-color: #D2143A; }
.badge-brown   { background-color: #4A3B21; }
.badge-orange  { background-color: #B35C00; }
.badge-green   { background-color: #3B6E1A; }

/* ==========================================================================
   5. FOUNDER ABOUT US SECTION
   ========================================================================== */
.about-founder-section {
    width: 100%;
    padding: 100px 0;
    background-color: #FAFAFA;
    overflow: hidden;
}

.about-founder-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.section-tagline {
    display: block;
    color: #00A86B;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 30px;
}

.highlight-text { color: #D2143A; }

.founder-description {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-signature-area {
    margin-top: 35px;
    border-left: 3px solid #D2143A;
    padding-left: 20px;
}

.sig-name {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 700;
    color: #111111;
}

.sig-title {
    display: block;
    font-size: 0.85rem;
    color: #777777;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image 500x500 Round Styling */
.founder-image-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
}

.decorative-blob {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(0,168,107,0.1) 0%, rgba(210,20,58,0.05) 100%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 6s infinite alternate ease-in-out;
}

.founder-img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #FFFFFF;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.founder-img:hover { transform: scale(1.03); }

@keyframes pulseGlow {
    0% { transform: scale(0.98) translate(0, 0); }
    100% { transform: scale(1.03) translate(10px, -10px); }
}

/* JS Scroll Reveal Base Classes */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* ==========================================================================
   6. INTERACTIVE PRODUCT SHOWROOM (WITH PHOTOS)
   ========================================================================== */
.product-showroom-section {
    width: 100%;
    padding: 120px 0;
    background-color: #FFFFFF;
}

.showroom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px; /* Aligned gutters */
}

.showroom-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.showroom-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111111;
    margin-top: 10px;
    margin-bottom: 20px;
}

.showroom-subtitle {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.6;
}

.showroom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.showroom-card {
    background-color: #F8F9FA;
    border: 1px solid #EAEAEA;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Tinted glass overlay cards on hover */
.showroom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.card-dehydrated:hover::before { background: linear-gradient(135deg, rgba(255, 210, 0, 0.1), rgba(255, 125, 0, 0.05)); opacity: 1; }
.card-powders:hover::before    { background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(59, 110, 26, 0.05)); opacity: 1; }
.card-spices:hover::before     { background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(74, 59, 33, 0.05)); opacity: 1; }
.card-fresh:hover::before      { background: linear-gradient(135deg, rgba(210, 20, 58, 0.08), rgba(179, 92, 0, 0.05)); opacity: 1; }

.card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: #CCCCCC;
    letter-spacing: 1px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

/* Product Circular Thumbnails */
.card-photo-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    background-color: #FFFFFF;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.card-product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showroom-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.showroom-card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.explore-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: #111111;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: color 0.3s ease;
}

.link-arrow { transition: transform 0.3s ease; }

/* Product Card Interactive Focus Changes */
.showroom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border-color: transparent;
}

.card-dehydrated:hover h3 { color: #B35C00; }
.card-powders:hover h3    { color: #00A86B; }
.card-spices:hover h3     { color: #4A3B21; }
.card-fresh:hover h3      { color: #D2143A; }

.showroom-card:hover .card-photo-wrapper {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.showroom-card:hover .card-product-photo { transform: scale(1.15); }
.showroom-card:hover .product-count { color: #111111; }
.showroom-card:hover .explore-link { color: #D2143A; }
.showroom-card:hover .link-arrow { transform: translateX(6px); }

/* ==========================================================================
   7. THE MAUCHO STANDARD (FULL-BOX BACKGROUND TEXTURE LAYOUT)
   ========================================================================== */
.maucho-standard-section {
    width: 100%;
    /* CHANGED: Dropped bottom padding from 140px to 40px to pull content up */
    padding: 140px 0 40px 0; 
    background-color: #FAFAFA;
    border-top: 1px solid #F0F0F0;
}

.standard-section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Master Centered Header */
.standard-main-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px auto;
}

.standard-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.5px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.standard-main-subtitle {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.6;
}

/* --- THE ALTERNATING ROWS WITH FULL BACKGROUNDS --- */
.standard-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 60px; /* Generous padding inside the card box */
    border: 1px solid #EAEAEA;
    background-color: #FFFFFF; /* Crisp solid white card base */
    position: relative; /* Strictly anchors the full-width image */
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Alternates the text column layout organically */
.standard-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* ENLARGED: This image layer now wraps 100% of the entire box grid */
.row-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Stretches edge-to-edge full width */
    height: 100%; /* Stretches edge-to-edge full height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06; /* Dropped down to 6% so it stays completely subtle and professional */
    z-index: 1; /* Sits behind text, but on top of the card's base white background */
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none; /* Text cursor selection bypass safety */
}

/* Protects content readability by ensuring elements stack safely over the texture */
.row-left-bold, .row-right-text {
    position: relative;
    z-index: 2; /* Keeps text layered crisply on top of the background image */
}

/* Left Typography Column Layout */
.row-left-bold {
    flex-basis: 42%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.row-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00A86B; /* Organic corporate green accent markup */
    letter-spacing: 2px;
}

.row-left-bold h3 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
}

/* Right Typography Column Layout */
.row-right-text {
    flex-basis: 52%;
}

.row-right-text p {
    font-size: 1.1rem;
    color: #333333; /* Darkened slightly to contrast perfectly with the texture background */
    line-height: 1.7;
    font-weight: 500;
}

/* --- INTERACTIVE HOVER MOTION SYSTEMS --- */
.standard-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    border-color: #00A86B; /* Soft glowing border highlighting active row focus */
}

/* Background texture reveals itself slightly more and performs a smooth micro-zoom */
.standard-row:hover .row-bg-texture {
    opacity: 0.10; /* Boosts gently up to 10% opacity on interactive hover */
    transform: scale(1.04);
}

/* ==========================================================================
   MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 850px) {
    .standard-row, .standard-row:nth-child(even) {
        flex-direction: column;
        gap: 25px;
        padding: 50px 30px;
    }
    .row-left-bold, .row-right-text {
        flex-basis: 100%;
    }
    .standard-main-title { font-size: 2.2rem; }
    .row-left-bold h3 { font-size: 1.7rem; }
}

/* ==========================================================================
   8. RESPONSIVE BREAKPOINTS (MOBILE REFINEMENTS)
   ========================================================================== */
@media (max-width: 1200px) {
    .showroom-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .about-founder-container,
    .advantage-container { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .image-wrapper, .founder-img, .decorative-blob {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
}

@media (max-width: 650px) {
    .showroom-grid, .certifications-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2.2rem; }
}

/* ==========================================================================
   8. CORPORATE COMPANY PROFILE DOWNLOAD BANNER STYLES
   ========================================================================== */
.profile-download-section {
    width: 100%;
    padding: 0 0 80px 0; /* Tightened layout spacing parameters */
    margin-top: -20px;   /* Pulls the block cleanly upward into the section above */
    background-color: #FAFAFA;
}

.profile-download-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 60px; /* Reduced vertical padding for a sleek, slim aesthetic */
    background-color: #0A2F1D; /* Luxury deep corporate off-black */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Master content wrap grouping the image thumbnail and the descriptions text */
.download-content-wrapper {
    display: flex;
    align-items: center;
    gap: 35px; /* Spaces the mockup page nicely away from text fields */
    flex-basis: 70%;
}

/* Document Thumbnail Container Styling */
.catalog-mockup-block {
    flex-shrink: 0; /* Strict safeguard to prevent the image wrapper from shrinking */
    width: 110px;   /* Clean corporate compact blueprint dimensions */
    height: 145px;
    background-color: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.catalog-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures content fills graphic scale bounds seamlessly */
}

/* Micro-Interaction: Elevates the document page slightly on card hover focus */
.profile-download-container:hover .catalog-mockup-block {
    transform: translateY(-4px) rotate(-1deg);
}

/* Text Fields Layout Adjustments */
.download-text-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-text-block h2 {
    font-size: 2rem; /* Trimmed slightly down to fit beautifully on one line next to image */
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.download-text-block p {
    font-size: 1.05rem;
    color: #A0A0A0;
    line-height: 1.5;
}

/* Right Side Button Wrapper */
.download-action {
    flex-basis: 25%;
    display: flex;
    justify-content: flex-end;
}

/* Action Button Mechanics */
.btn-download-corporate {
    text-decoration: none;
    background-color: #00A86B; /* Signature Crop Green */
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-download-corporate:hover {
    background-color: #008754;
    transform: translateY(-1px);
}

/* ==========================================================================
   UPDATED MOBILE RESPONSIVE ADAPTATIONS
   ========================================================================== */
@media (max-width: 950px) {
    .profile-download-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 30px;
    }
    .download-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        flex-basis: 100%;
        width: 100%;
    }
    .download-action {
        flex-basis: 100%;
        width: 100%;
        justify-content: flex-start;
    }
    .btn-download-corporate {
        width: 100%;
    }
}

/* ==========================================================================
   9. WESTERN MARKET WHOLESALE RFQ & FOOTER STYLES
   ========================================================================== */
.wholesale-inquiry-section {
    width: 100%;
    padding: 120px 0;
    background-color: #FAFAFA;
}

.inquiry-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Master two-column split layout */
    gap: 80px;
    align-items: flex-start;
}

/* Left Grid Content Elements */
.inquiry-info-column h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.inquiry-intro {
    font-size: 1.15rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Compliance Badges Layout Structure */
.compliance-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 45px;
}

.badge-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: #00A86B; /* Highlighting safety green colors */
    background: rgba(0, 168, 107, 0.06);
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
}

.coord-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.coord-item {
    border-left: 3px solid #111111;
    padding-left: 16px;
}

.coord-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.coord-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111111;
}

/* Right Column: Structured Corporate Form Panel */
.inquiry-form-column {
    background: #FFFFFF;
    padding: 50px 45px;
    border-radius: 16px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.03);
}

.rfq-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-step-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #00A86B;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 8px;
    margin-bottom: 5px;
}

.form-row-dual {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highly Formal, Clean Input Mechanics */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #111111;
    background-color: #FAFAFA;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    background-color: #FFFFFF;
    border-color: #00A86B;
    box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.06);
}

/* Formal RFQ Submission Action Button */
.btn-submit-rfq {
    width: 100%;
    background-color: #111111; /* Clean black button coordinates with layout standards */
    color: #FFFFFF;
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.btn-submit-rfq:hover {
    background-color: #00A86B; /* Seamless shift into green focus on active target mouse interaction */
}

/* ==========================================================================
   10. PREMIUM CORPORATE 4-COLUMN FOOTER STYLES
   ========================================================================== */
.main-footer {
    width: 100%;
    background-color: #0E110F; /* Sleek, structural deep charcoal-black */
    padding: 90px 0 0 0; /* Keeps spacing crisp, bottoms flush with copyright bar */
    color: #FFFFFF;
    border-top: 1px solid #1A201C;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px 60px 40px; /* Space above the divider line */
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr; /* Perfect visual balance across columns */
    gap: 50px;
}

/* Column Headings Typography */
.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #00A86B; /* Signature Crop Green used for clean navigation markup */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

/* Brand Column Adjustments */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
    max-width: 160px; /* Restricts the logo width to a clean, balanced corporate size */
    height: auto;
}

.footer-logo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Optional: If your logo background isn't perfectly transparent, 
       this ensures it blends beautifully with the dark background */
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1)); 
}

.brand-desc {
    font-size: 0.95rem;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 20px;
}

.compliance-mini-tags {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Formal Navigation Lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    font-size: 0.95rem;
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #FFFFFF;
    padding-left: 4px; /* Micro interactive sliding motion */
}

/* Market Intelligence Column Elements */
.intel-desc {
    font-size: 0.95rem;
    color: #999999;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-subscribe-form {
    display: flex;
    width: 100%;
    max-width: 340px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #2A332E;
}

.footer-subscribe-form input {
    flex-grow: 1;
    border: none;
    background-color: #161A18;
    padding: 0 15px;
    font-size: 0.9rem;
    color: #FFFFFF;
}

.footer-subscribe-form input:focus {
    outline: none;
    background-color: #1A201C;
}

.btn-intel-submit {
    background-color: #00A86B;
    color: #FFFFFF;
    border: none;
    padding: 0 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-intel-submit:hover {
    background-color: #008754;
}

/* --- BOTTOM REGULATORY COMPLIANCE BAR --- */
.footer-bottom-bar {
    width: 100%;
    background-color: #080A09; /* Deep solid anchor tone */
    padding: 30px 0;
    border-top: 1px solid #141A16;
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: #666666;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #00A86B;
}

/* ==========================================================================
   FOOTER MOBILE SCALING COMPATIBILITY MATRIX
   ========================================================================== */
@media (max-width: 950px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; /* Two-by-two block stack array on tablets */
        gap: 40px;
    }
}

@media (max-width: 550px) {
    .footer-container {
        grid-template-columns: 1fr; /* Single column stack strictly for handheld displays */
        gap: 35px;
    }
    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   11. CORPORATE LEADERSHIP & TEAM PROFILE CARDS
   ========================================================================== */
.corporate-team-section {
    width: 100%;
    padding: 120px 0;
    background-color: #FFFFFF;
}

.team-section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-header-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px auto;
}

.team-header-block h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.5px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.team-intro-text {
    font-size: 1.15rem;
    color: #666666;
    line-height: 1.6;
}

/* Profiles Grid Structure */
.team-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-profile-card {
    background-color: #FAFAFA;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #EAEAEA;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0 3s ease;
}

.member-image-frame {
    width: 100%;
    height: 340px;
    background-color: #EAEAEA;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-profile-card:hover .member-img {
    transform: scale(1.04);
}

.team-profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: #DCDCDC;
}

/* Card Content Typography */
.member-meta {
    padding: 30px;
}

.member-meta h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.member-role {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00A86B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.member-meta p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-contact-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888888;
    border-top: 1px solid #EAEAEA;
    padding-top: 15px;
    font-family: monospace;
}

/* Responsive Adaptive Adjustments */
@media (max-width: 1050px) {
    .team-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 700px) {
    .team-profiles-grid {
        grid-template-columns: 1fr;
    }
    .member-image-frame {
        height: 380px;
    }
}

/* ==========================================================================
   INTERACTIVE MULTI-ITEM SLIDER SYSTEM
   ========================================================================== */
.catalog-slider-outer {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.catalog-slider-viewport {
    width: 100%;
    overflow: hidden;
}

.catalog-track {
    display: flex;
    gap: 24px; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.catalog-item-card {
    flex: 0 0 calc((100% - 48px) / 3); 
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: #FFFFFF;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-item-card:hover {
    transform: translateY(-4px);
    border-color: #00A86B;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.catalog-media-box {
    width: 100%;
    height: 240px; 
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: background 0.2s ease;
}

.catalog-item-card:hover .catalog-media-box {
    background: #FAFAFA;
}

.catalog-media-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.catalog-info-pane {
    padding: 20px;
    text-align: center;
    background: #FFFFFF;
    border-top: 1px solid #EAEAEA;
}

.catalog-info-pane h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.2px;
}

.catalog-nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DCDCDC;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.dot-indicator.active {
    background: #00A86B;
    width: 22px;
    border-radius: 4px;
}

/* ==========================================================================
   INQUIRY MODAL OVERLAY INTERFACES
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #FFFFFF;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888888;
}

.modal-box h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.modal-box p {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #00A86B;
}

.submit-inquiry-btn {
    width: 100%;
    background: #00A86B;
    color: #FFFFFF;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-inquiry-btn:hover {
    background: #00945E;
}

@media (max-width: 1024px) {
    .catalog-item-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 680px) {
    .catalog-item-card { flex: 0 0 100%; }
}  

/* ==========================================================================
   INTERACTIVE MULTI-ITEM SLIDER SYSTEM
   ========================================================================== */
.catalog-slider-outer {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.catalog-slider-viewport {
    width: 100%;
    overflow: hidden;
}

.catalog-track {
    display: flex;
    gap: 24px; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.catalog-item-card {
    flex: 0 0 calc((100% - 48px) / 3); 
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: #FFFFFF;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-item-card:hover {
    transform: translateY(-4px);
    border-color: #00A86B;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.catalog-media-box {
    width: 100%;
    height: 240px; 
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: background 0.2s ease;
}

.catalog-item-card:hover .catalog-media-box {
    background: #FAFAFA;
}

.catalog-media-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.catalog-info-pane {
    padding: 20px;
    text-align: center;
    background: #FFFFFF;
    border-top: 1px solid #EAEAEA;
}

.catalog-info-pane h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.2px;
}

.catalog-nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DCDCDC;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.dot-indicator.active {
    background: #00A86B;
    width: 22px;
    border-radius: 4px;
}

/* ==========================================================================
   INQUIRY MODAL OVERLAY INTERFACES
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #FFFFFF;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888888;
}

.modal-box h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.modal-box p {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #00A86B;
}

.submit-inquiry-btn {
    width: 100%;
    background: #00A86B;
    color: #FFFFFF;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-inquiry-btn:hover {
    background: #00945E;
}

@media (max-width: 1024px) {
    .catalog-item-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 680px) {
    .catalog-item-card { flex: 0 0 100%; }
}
/* ==========================================================================
   INTERACTIVE MULTI-ITEM SLIDER SYSTEM
   ========================================================================== */
.catalog-slider-outer {
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.catalog-slider-viewport {
    width: 100%;
    overflow: hidden;
}

.catalog-track {
    display: flex;
    gap: 24px; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.catalog-item-card {
    flex: 0 0 calc((100% - 48px) / 3); 
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: #FFFFFF;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-item-card:hover {
    transform: translateY(-4px);
    border-color: #00A86B;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.catalog-media-box {
    width: 100%;
    height: 240px; 
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: background 0.2s ease;
}

.catalog-item-card:hover .catalog-media-box {
    background: #FAFAFA;
}

.catalog-media-box img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.catalog-info-pane {
    padding: 20px;
    text-align: center;
    background: #FFFFFF;
    border-top: 1px solid #EAEAEA;
}

.catalog-info-pane h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    letter-spacing: -0.2px;
}

.catalog-nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DCDCDC;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.dot-indicator.active {
    background: #00A86B;
    width: 22px;
    border-radius: 4px;
}

/* ==========================================================================
   INQUIRY MODAL OVERLAY INTERFACES
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #FFFFFF;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888888;
}

.modal-box h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.modal-box p {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #EAEAEA;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #00A86B;
}

.submit-inquiry-btn {
    width: 100%;
    background: #00A86B;
    color: #FFFFFF;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-inquiry-btn:hover {
    background: #00945E;
}

@media (max-width: 1024px) {
    .catalog-item-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 680px) {
    .catalog-item-card { flex: 0 0 100%; }
}

/* ==========================================================================
           2. BESPOKE PROCUREMENT & CUSTOM SOURCING INTERFACE
           ========================================================================== */
        .sourcing-desk-container {
            width: 100%;
            max-width: 650px;
            margin: 0 auto;
            background: #FFFFFF;
            border-radius: 16px;
            border: 1px solid #EAEAEA;
            padding: 40px;
            margin-bottom: 20px;
            margin-top: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .sourcing-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .sourcing-header h1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: #111111;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }

        .sourcing-header p {
            color: #666666;
            font-size: 1.05rem;
            line-height: 1.5;
        }

        .sourcing-form-group {
            margin-bottom: 24px;
        }

        .sourcing-form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #333333;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .sourcing-form-group input, 
        .sourcing-form-group textarea,
        .sourcing-form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #EAEAEA;
            border-radius: 8px;
            font-size: 0.95rem;
            color: #111111;
            outline: none;
            background: #FAFAFA;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .sourcing-form-group input:focus, 
        .sourcing-form-group textarea:focus,
        .sourcing-form-group select:focus {
            border-color: #00A86B;
            background: #FFFFFF;
        }

        .sourcing-form-group textarea {
            resize: vertical;
        }

        /* Highlight Info Panel Notice */
        .specification-notice {
            background: #F0FAF5;
            border-left: 4px solid #00A86B;
            padding: 15px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 24px;
        }

        .specification-notice p {
            font-size: 0.85rem;
            color: #007348;
            line-height: 1.45;
        }

        .submit-sourcing-btn {
            width: 100%;
            background: #00A86B;
            color: #FFFFFF;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.1s ease;
            box-shadow: 0 4px 12px rgba(0, 168, 107, 0.15);
        }

        .submit-sourcing-btn:hover {
            background: #00945E;
        }

        .submit-sourcing-btn:active {
            transform: scale(0.99);
        }

        /* ==========================================================================
           3. RESPONSIVE LAYOUT CONFIGURATIONS
           ========================================================================== */
        @media (max-width: 680px) {
            body {
                padding: 40px 0;
            }
            .sourcing-desk-container {
                padding: 25px 20px;
            }
            .sourcing-header h1 {
                font-size: 1.8rem;
            }
        }
        /* ==========================================================================
           1. RESET & CORE GLOBAL STYLES
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        }

        body {
            background-color: #FAFAFA;
            color: #111111;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* ==========================================================================
           2. GLOBAL TRADE DESK & CONTACT INTERFACE MATRIX
           ========================================================================== */
        .contact-matrix-grid {
            display: flex;
            gap: 50px;
            align-items: flex-start;
            margin-top: 40px;
        }

        /* Left Column: Corporate Info Panes */
        .contact-meta-column {
            flex: 1;
        }

        .contact-meta-column h2 {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.4px;
            margin-bottom: 15px;
            color: #111111;
        }

        .contact-meta-column p.intro-text {
            font-size: 1.05rem;
            color: #666666;
            line-height: 1.6;
            margin-bottom: 35px;
        }

        .info-card-block {
            background: #FFFFFF;
            border: 1px solid #EAEAEA;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .info-card-icon-frame {
            width: 40px;
            height: 40px;
            background: #F0FAF5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .info-card-content h3 {
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #888888;
            margin-bottom: 4px;
        }

        .info-card-content p {
            font-size: 1.05rem;
            color: #111111;
            font-weight: 600;
            line-height: 1.4;
        }

        .info-card-content span {
            display: block;
            font-size: 0.9rem;
            color: #666666;
            margin-top: 4px;
        }

        /* Right Column: Interactive Trade Desk Form Box */
        .contact-form-column {
            flex: 1.2;
            background: #FFFFFF;
            border: 1px solid #EAEAEA;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
            margin-bottom: 20px;
        }

        .contact-form-column h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.2px;
        }

        .contact-form-column p.form-subtitle {
            font-size: 0.95rem;
            color: #666666;
            margin-bottom: 25px;
        }

        .trade-form-group {
            margin-bottom: 20px;
        }

        .trade-form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #333333;
        }

        .trade-form-group input,
        .trade-form-group select,
        .trade-form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #EAEAEA;
            border-radius: 8px;
            font-size: 0.95rem;
            color: #111111;
            background: #FAFAFA;
            outline: none;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .trade-form-group input:focus,
        .trade-form-group select:focus,
        .trade-form-group textarea:focus {
            border-color: #00A86B;
            background: #FFFFFF;
        }

        .trade-form-row {
            display: flex;
            gap: 16px;
        }

        .trade-form-row .trade-form-group {
            flex: 1;
        }

        .submit-desk-btn {
            width: 100%;
            background: #00A86B;
            color: #FFFFFF;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 168, 107, 0.15);
            transition: background 0.2s ease, transform 0.1s ease;
        }

        .submit-desk-btn:hover {
            background: #00945E;
        }

        .submit-desk-btn:active {
            transform: scale(0.99);
        }

        /* ==========================================================================
           3. RESPONSIVE DESIGN INTERFACE MODIFIERS
           ========================================================================== */
        @media (max-width: 960px) {
            body {
                padding: 40px 0;
            }
            .contact-matrix-grid {
                flex-direction: column;
                gap: 40px;
            }
            .contact-form-column {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .trade-form-row {
                flex-direction: column;
                gap: 0;
            }
            .contact-form-column {
                padding: 25px 20px;
            }
        }

        /* ==========================================================================
           1. RESET & CORE GLOBAL STYLES
           ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        }

        body {
            background-color: #FAFAFA;
            color: #111111;
            padding: 0px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Intro Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            margin-top: 30px;
        }

        .section-header h1 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-header p {
            color: #666666;
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.5;
        }

        /* ==========================================================================
           2. BRANCH & ROUTING INTERACTIVE GRID
           ========================================================================== */
        .branches-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 24px;
            margin-bottom: 20px;
        }

        .branch-card {
            background: #FFFFFF;
            border: 1px solid #EAEAEA;
            border-radius: 16px;
            padding: 35px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
            transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .branch-card:hover {
            transform: translateY(-4px);
            border-color: #00A86B;
            box-shadow: 0 12px 30px rgba(0, 168, 107, 0.05);
        }

        /* Node Connectivity UI Header (Base -> Destination) */
        .route-node-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .origin-badge {
            background: #F4F4F4;
            color: #666666;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .route-arrow-connector {
            color: #00A86B;
            font-weight: bold;
            font-size: 1.1rem;
            animation: pulseArrow 2s infinite ease-in-out;
        }

        .destination-tag {
            background: #F0FAF5;
            color: #00A86B;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 12px;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* Branch Info Content */
        .branch-info h2 {
            font-size: 1.7rem;
            font-weight: 800;
            color: #111111;
            margin-bottom: 8px;
            letter-spacing: -0.4px;
        }

        .branch-info p.operational-status {
            font-size: 0.85rem;
            color: #888888;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #00A86B;
            border-radius: 50%;
            display: inline-block;
        }

        /* ==========================================================================
           3. INTERACTION ANIMATIONS
           ========================================================================== */
        @keyframes pulseArrow {
            0%, 100% { transform: translateX(0); opacity: 0.7; }
            50% { transform: translateX(4px); opacity: 1; }
        }

        /* ==========================================================================
           4. RESPONSIVE MEDIA QUERIES
           ========================================================================== */
        @media (max-width: 768px) {
            body {
                padding: 40px 0;
            }
            .section-header h1 {
                font-size: 1.9rem;
            }
            .branches-grid {
                grid-template-columns: 1fr;
            }
        }