/* ==========================================================================
   JNB HORIZON LLP - Main Stylesheet (Vibrant & Colorful Version)
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-color: hsl(147, 59%, 14%);       /* Deep Forest Green */
    --primary-light: hsl(147, 50%, 25%);       /* Medium Forest Green */
    --primary-dark: hsl(147, 70%, 8%);         /* Darkest Green */
    
    /* Vibrant Accents */
    --accent-color: hsl(38, 92%, 52%);         /* Vibrant Amber Gold */
    --accent-hover: hsl(28, 95%, 48%);         /* Rich Orange Gold */
    --accent-light: hsl(38, 100%, 95%);        /* Bright Gold Tint */
    
    /* Pulse specific colors for graphical attraction */
    --color-lentil: hsl(12, 85%, 60%);         /* Masoor Dal Coral Red */
    --color-lentil-bg: hsla(12, 85%, 60%, 0.1);
    --color-chickpea: hsl(40, 92%, 55%);       /* Chickpeas Golden Sand */
    --color-chickpea-bg: hsla(40, 92%, 55%, 0.1);
    --color-mung: hsl(145, 65%, 42%);          /* Green Gram Leaf Green */
    --color-mung-bg: hsla(145, 65%, 42%, 0.1);
    --color-urad: hsl(220, 20%, 30%);          /* Black Gram Slate */
    --color-urad-bg: hsla(220, 20%, 30%, 0.1);
    
    /* Neutrals - Light Theme */
    --bg-main: hsl(30, 20%, 97%);              /* Off-white / Cream background */
    --bg-card: hsl(0, 0%, 100%);               /* Pure White */
    --bg-glass: rgba(255, 255, 255, 0.82);
    --border-color: hsl(210, 14%, 87%);        /* Light Gray */
    --text-main: hsl(210, 20%, 12%);           /* Deep Charcoal */
    --text-muted: hsl(210, 10%, 42%);          /* Slate Muted */
    --text-inverse: hsl(0, 0%, 100%);          /* White */
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px -4px rgba(15, 58, 32, 0.1);
    --shadow-lg: 0 20px 40px -8px rgba(15, 58, 32, 0.18);
    --shadow-glow: 0 0 25px rgba(229, 169, 60, 0.35);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 14px;
    --border-radius-lg: 24px;
    --border-radius-sm: 8px;
    
    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
}

/* Dark Theme Variables */
body.dark-theme {
    --bg-main: hsl(147, 45%, 6%);              /* Midnight Forest Deep Green-Black */
    --bg-card: hsl(147, 30%, 10%);             /* Premium Forest Card */
    --bg-glass: rgba(6, 29, 16, 0.82);
    --border-color: hsl(147, 20%, 18%);        /* Dark Forest Border */
    --text-main: hsl(147, 25%, 93%);           /* Clean Off-white */
    --text-muted: hsl(147, 12%, 72%);          /* Muted Silver Green */
    --accent-light: hsl(38, 60%, 12%);          /* Deep Gold Tint */
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 24px -4px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.65);
    --shadow-glow: 0 0 25px rgba(229, 169, 60, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-medium), color var(--transition-medium);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
}

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

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

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-light), var(--accent-color));
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* ==========================================================================
   Utility & Graphic Classes
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 6.5rem 0;
}

.section-title-wrap {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4.5rem auto;
}

.section-subtitle {
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 2.5px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-subtitle::before, .section-subtitle::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: inline-block;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Vibrant Title Gradients */
.section-title span {
    background: linear-gradient(135deg, hsl(147, 60%, 35%), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-theme .section-title span {
    background: linear-gradient(135deg, hsl(147, 50%, 65%), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(229, 169, 60, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(229, 169, 60, 0.45);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background: rgba(229, 169, 60, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-white {
    background-color: var(--text-inverse);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    box-shadow: var(--shadow-lg), 0 8px 20px rgba(255,255,255,0.25);
}

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

/* AEO Summary Box (Vibrant, glassmorphic look) */
.aeo-summary {
    background: linear-gradient(135deg, hsla(38, 100%, 95%, 0.9), hsla(38, 90%, 90%, 0.7));
    border: 2px solid var(--accent-color);
    border-left: 8px solid var(--accent-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

body.dark-theme .aeo-summary {
    background: linear-gradient(135deg, hsla(38, 60%, 10%, 0.9), hsla(147, 45%, 8%, 0.7));
    border-color: var(--accent-color);
}

.aeo-summary::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 169, 60, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.aeo-summary-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

body.dark-theme .aeo-summary-title {
    color: var(--accent-color);
}

.aeo-summary-title svg {
    fill: var(--accent-color);
}

.aeo-summary-text {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* Scroll reveal class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: background-color var(--transition-medium), height var(--transition-medium), box-shadow var(--transition-medium);
}

.header.scrolled {
    height: 75px;
    background: var(--bg-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
}

body.dark-theme .logo {
    color: var(--text-main);
}

.logo span {
    color: var(--accent-color);
}

.logo-icon {
    width: 36px;
    height: 36px;
    fill: var(--accent-color);
    filter: drop-shadow(0 2px 4px rgba(229, 169, 60, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-light), var(--accent-color));
    transition: width var(--transition-fast);
    border-radius: 5px;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    border: 2px solid var(--border-color);
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.theme-toggle:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.theme-toggle svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.theme-toggle .sun-icon { display: none; }
body.dark-theme .theme-toggle .moon-icon { display: none; }
body.dark-theme .theme-toggle .sun-icon { display: block; }

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-main);
}

.mobile-nav-toggle svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* ==========================================================================
   Hero Section (Vibrant & Attarctive Overlay)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background-color: var(--primary-dark);
    color: var(--text-inverse);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.65) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay blending deep forest green with a glowing gold sunset tone */
    background: linear-gradient(135deg, rgba(6, 29, 16, 0.95) 0%, rgba(15, 58, 32, 0.8) 50%, rgba(229, 169, 60, 0.25) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

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

/* Sri Lanka Highlight badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(229, 169, 60, 0.25), rgba(15, 58, 32, 0.4));
    border: 2px solid var(--accent-color);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.75rem;
    color: var(--accent-color);
    box-shadow: 0 0 15px rgba(229, 169, 60, 0.2);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(229, 169, 60, 0.2);
}

.hero-punch {
    font-size: 1.35rem;
    margin-bottom: 2.75rem;
    color: rgba(255, 255, 255, 0.95);
    border-left: 5px solid var(--accent-color);
    padding-left: 1.75rem;
    line-height: 1.7;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.hero-bullet svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-color);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
}

/* ==========================================================================
   Home - Core Expertise & Products Cards (Color coded)
   ========================================================================== */
.expertise-section {
    background-color: var(--bg-card);
}

.expertise-intro {
    background: linear-gradient(135deg, var(--bg-main), var(--bg-card));
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    margin-bottom: 4.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 8px solid var(--primary-light);
}

.expertise-intro-content h3 {
    font-size: 1.9rem;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

body.dark-theme .expertise-intro-content h3 {
    color: var(--accent-color);
}

.expertise-intro-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Color-coded and visually attractive mini-cards */
.product-mini-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.25rem 2rem;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Color accents based on pulses */
.product-mini-card.masoor-card { --accent-card: var(--color-lentil); --bg-accent-card: var(--color-lentil-bg); }
.product-mini-card.chickpea-card { --accent-card: var(--color-chickpea); --bg-accent-card: var(--color-chickpea-bg); }
.product-mini-card.mung-card { --accent-card: var(--color-mung); --bg-accent-card: var(--color-mung-bg); }
.product-mini-card.urad-card { --accent-card: var(--color-urad); --bg-accent-card: var(--color-urad-bg); }

.product-mini-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-card) 50%);
    opacity: 0.15;
}

.product-mini-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-card);
    box-shadow: 0 15px 30px -5px var(--bg-accent-card);
}

.pm-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-accent-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-card);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-fast);
}

.pm-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.product-mini-card:hover .pm-icon {
    transform: scale(1.1) rotate(5deg);
}

.pm-title {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.pm-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.pm-link {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--accent-card);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pm-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.product-mini-card:hover .pm-link svg {
    transform: translateX(5px);
}

/* ==========================================================================
   Home - Why Choose Us
   ========================================================================== */
.why-section {
    background-color: var(--bg-main);
}

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

.why-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.75rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

/* Special highlight for the Sri Lankan card */
.why-card.sl-highlight {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, var(--bg-card), var(--accent-light));
    box-shadow: 0 8px 20px -5px rgba(229,169,60,0.15);
}

body.dark-theme .why-card.sl-highlight {
    background: linear-gradient(135deg, var(--bg-card), rgba(229,169,60,0.08));
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--accent-color);
    transition: height var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    height: 100%;
}

.why-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--border-color);
    line-height: 1;
    opacity: 0.6;
}

.why-card.sl-highlight .why-num {
    color: var(--accent-color);
    opacity: 0.3;
}

.why-title {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.why-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ==========================================================================
   Home - Export Markets Map
   ========================================================================== */
.markets-section {
    background-color: var(--bg-card);
}

.markets-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.markets-content .section-title-wrap {
    text-align: left;
    margin-bottom: 2.5rem;
}

.markets-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.market-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    padding: 1.15rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: all var(--transition-fast);
}

/* Visual highlights on Sri Lanka/India items */
.market-item.primary-focus {
    border-color: var(--accent-color);
    background: var(--accent-light);
    color: var(--primary-color);
}

body.dark-theme .market-item.primary-focus {
    color: var(--accent-color);
    background: rgba(229,169,60,0.1);
}

.market-flag {
    font-size: 1.75rem;
}

.market-map-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    background: var(--bg-main);
    aspect-ratio: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Map Graphic representation */
.world-dot-map {
    position: relative;
    width: 92%;
    height: 82%;
    background-image: radial-gradient(var(--border-color) 2px, transparent 2px);
    background-size: 18px 18px;
    border-radius: var(--border-radius);
    opacity: 0.8;
}

.map-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(229, 169, 60, 0.8);
}

/* Custom color for Sri Lanka/India map markers */
.map-marker.focus-marker {
    background-color: var(--color-mung);
    box-shadow: 0 0 12px var(--color-mung);
    width: 18px;
    height: 18px;
}

.map-marker::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    border: 2.5px solid var(--accent-color);
    border-radius: 50%;
    animation: pulse 2.2s infinite;
    opacity: 0;
}

.map-marker.focus-marker::after {
    border-color: var(--color-mung);
}

.map-marker.active::after {
    opacity: 1;
}

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

.map-marker-india { top: 52%; left: 60%; }
.map-marker-srilanka { top: 62%; left: 61%; }
.map-marker-me { top: 46%; left: 48%; }
.map-marker-sea { top: 58%; left: 72%; }
.map-marker-africa { top: 65%; left: 35%; }
.map-marker-europe { top: 32%; left: 32%; }

.map-tooltip {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-inverse);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
    z-index: 10;
    border: 2px solid var(--accent-color);
}

.map-tooltip.visible {
    opacity: 1;
}

/* ==========================================================================
   About Page - Team & Founders Cards
   ========================================================================== */
.story-section {
    background-color: var(--bg-card);
}

.about-intro-grid {
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.about-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.25;
}

.about-values-section {
    background-color: var(--bg-main);
}

.value-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.75rem 2.25rem;
    text-align: center;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.value-icon {
    width: 68px;
    height: 68px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin: 0 auto 1.75rem auto;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.value-title {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
}

.value-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.partners-section {
    background-color: var(--bg-card);
}

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

.partner-card {
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.partner-avatar {
    width: 124px;
    height: 124px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 50%;
    margin: 3.5rem auto 1.75rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-inverse);
    border: 4px solid var(--bg-card);
    box-shadow: var(--shadow-md);
}

.partner-info {
    padding: 0 2rem 3.5rem 2rem;
}

.partner-name {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.partner-role {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
}

.partner-bio {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

/* ==========================================================================
   Products Page - Detailed Cards & Sri Lanka Compliance Accents
   ========================================================================== */
.product-showcase-section {
    background-color: var(--bg-card);
}

.product-showcase-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5.5rem auto;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 4.5rem;
    padding: 3.5rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.product-detail-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

/* Pulse color themes on details hover */
.product-detail-card#masoor-dal:hover { border-color: var(--color-lentil); box-shadow: 0 15px 35px -5px var(--color-lentil-bg); }
.product-detail-card#chickpeas:hover { border-color: var(--color-chickpea); box-shadow: 0 15px 35px -5px var(--color-chickpea-bg); }
.product-detail-card#green-gram:hover { border-color: var(--color-mung); box-shadow: 0 15px 35px -5px var(--color-mung-bg); }
.product-detail-card#black-gram:hover { border-color: var(--color-urad); box-shadow: 0 15px 35px -5px var(--color-urad-bg); }

.product-detail-card:nth-child(even) {
    direction: rtl;
}

.product-detail-card:nth-child(even) .product-info-side {
    direction: ltr;
}

.product-detail-card:nth-child(even) .product-image-side {
    direction: ltr;
}

.product-image-side {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1.25;
    border: 1px solid var(--border-color);
}

.product-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.product-detail-card:hover .product-image-side img {
    transform: scale(1.04);
}

.product-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--accent-light);
    color: var(--accent-color);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    border: 1px solid var(--accent-color);
}

/* Custom color badges for each pulse */
#masoor-dal .product-badge { background: var(--color-lentil-bg); color: var(--color-lentil); border-color: var(--color-lentil); }
#chickpeas .product-badge { background: var(--color-chickpea-bg); color: var(--color-chickpea); border-color: var(--color-chickpea); }
#green-gram .product-badge { background: var(--color-mung-bg); color: var(--color-mung); border-color: var(--color-mung); }
#black-gram .product-badge { background: var(--color-urad-bg); color: var(--color-urad); border-color: var(--color-urad); }

.product-title {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.product-desc {
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.product-specs-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-spec-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    font-weight: 700;
    font-size: 1.02rem;
}

.product-spec-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-light);
}

body.dark-theme .product-spec-item svg {
    fill: var(--accent-color);
}

/* Special Sri Lanka specification highlight */
.product-spec-item.sl-spec {
    color: var(--color-mung);
}

.product-spec-item.sl-spec svg {
    fill: var(--color-mung);
}

.quality-section {
    background-color: var(--bg-main);
}

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

.quality-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 2.75rem 2rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 1.5rem;
}

.quality-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

.quality-card-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.quality-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.quality-card-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ==========================================================================
   Resources Page - Grid Layouts & Tabs
   ========================================================================== */
.blogs-section {
    background-color: var(--bg-card);
}

.resource-tabs {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 4.5rem;
}

.resource-tab-btn {
    padding: 0.85rem 2.25rem;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.resource-tab-btn:hover,
.resource-tab-btn.active {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--primary-dark);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(229, 169, 60, 0.35);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.blog-card {
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.blog-card-image {
    aspect-ratio: 1.65;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: transform var(--transition-medium);
}

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

.blog-card-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

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

.blog-card-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    line-height: 1.65;
}

.blog-card-link {
    font-weight: 800;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

body.dark-theme .blog-card-link {
    color: var(--accent-color);
}

.blog-card-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.blog-card:hover .blog-card-link svg {
    transform: translateX(5px);
}

/* Videos Layout */
.videos-section {
    background-color: var(--bg-main);
}

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

.video-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-color);
}

.video-thumbnail-container {
    position: relative;
    aspect-ratio: 1.777;
    background-color: var(--primary-dark);
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform var(--transition-medium);
}

.video-card:hover .video-thumbnail-container img {
    transform: scale(1.04);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: 0 0 35px rgba(229, 169, 60, 0.65);
    transition: transform var(--transition-fast), background-color var(--transition-fast);
    z-index: 5;
    border: none;
    cursor: pointer;
}

.video-play-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    margin-left: 4px;
}

.video-thumbnail-container:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--accent-hover);
}

.video-info {
    padding: 2.25rem;
}

.video-duration {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.video-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

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

/* Modal Dialog Video Player */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 29, 16, 0.93);
    backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 100%;
    max-width: 960px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-fast);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color var(--transition-fast);
}

.modal-close-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.modal-body {
    aspect-ratio: 1.777;
    background: #000;
    position: relative;
}

/* Canvas Animation Stream */
.simulated-video-player {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    position: relative;
    background: linear-gradient(135deg, #0b1f13, #041009);
    overflow: hidden;
}

.sim-video-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sim-video-ui {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2.25rem;
    background: rgba(0,0,0,0.45);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.sim-video-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.sim-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    padding: 0.85rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
    font-size: 0.9rem;
}

.sim-control-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.sim-play-pause-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.sim-play-pause-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.sim-timeline-bg {
    flex-grow: 1;
    height: 5px;
    background: #444;
    margin: 0 2rem;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.sim-timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    background: var(--accent-color);
    border-radius: 3px;
}

/* ==========================================================================
   Contact Page - Inquiry Forms
   ========================================================================== */
.contact-section {
    background-color: var(--bg-card);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4.5rem;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.contact-info-block {
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    padding: 2.25rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 1.5rem;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.contact-info-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-info-text a:hover {
    color: var(--accent-color);
}

/* Sri Lanka Highlight on Contact side */
.contact-partners-block {
    background: linear-gradient(135deg, var(--accent-light), hsla(145, 65%, 42%, 0.08));
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: 2.25rem;
}

.contact-partners-title {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1.15rem;
}

body.dark-theme .contact-partners-title {
    color: var(--accent-color);
}

.contact-partners-list {
    list-style: none;
}

.contact-partners-list li {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.02rem;
}

.contact-partners-list li::before {
    content: '✓';
    color: var(--color-mung);
    font-weight: 900;
    font-size: 1.15rem;
}

.contact-form-side {
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3.75rem;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.form-desc {
    color: var(--text-muted);
    margin-bottom: 2.75rem;
    font-size: 1.05rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: var(--text-main);
}

.form-input {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 0.9rem 1.15rem;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(229, 169, 60, 0.18);
}

textarea.form-input {
    min-height: 160px;
    resize: vertical;
}

/* Success notification toast */
.toast-notification {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background: var(--primary-color);
    color: var(--text-inverse);
    border-left: 6px solid var(--accent-color);
    padding: 1.5rem 2.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 28px;
    height: 28px;
    fill: var(--accent-color);
}

.toast-content h4 {
    font-size: 1.1rem;
    color: var(--text-inverse);
}

.toast-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

/* ==========================================================================
   FAQ Accordion Components
   ========================================================================== */
.faq-section {
    background-color: var(--bg-main);
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.faq-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--accent-color);
}

.faq-header {
    width: 100%;
    padding: 1.75rem 2.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.faq-toggle-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}

/* Accordion Grid Animation */
.faq-body-container {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-medium);
}

.faq-item.active .faq-body-container {
    grid-template-rows: 1fr;
}

.faq-body {
    overflow: hidden;
}

.faq-content {
    padding: 0 2.25rem 1.75rem 2.25rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background-color: var(--primary-color);
    color: var(--text-inverse);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 169, 60, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-inverse);
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 1.35rem;
    margin-bottom: 2.75rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.72);
    padding: 5.5rem 0 2.25rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 3.5rem;
    margin-bottom: 4.5rem;
}

.footer-col-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-inverse);
    margin-bottom: 1.75rem;
}

.footer-about .logo {
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-size: 0.98rem;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.98rem;
    margin-bottom: 1.15rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-link:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   Responsive Design Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4, .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section {
        padding: 4.5rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .grid-2, .grid-3, .grid-4, .why-grid, .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-card:last-child {
        max-width: 100%;
    }
    
    /* Mobile Navigation menu panel */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-card);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left var(--transition-medium);
        box-shadow: var(--shadow-lg);
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.35rem;
    }
    
    /* Hero Section Responsive */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-punch {
        font-size: 1.15rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    /* Markets map responsive layout */
    .markets-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .markets-list {
        grid-template-columns: 1fr;
    }
    
    /* Product details responsive layout */
    .product-detail-card {
        grid-template-columns: 1fr;
        padding: 2.25rem;
        gap: 2.25rem;
    }
    
    .product-detail-card:nth-child(even) {
        direction: ltr;
    }
    
    /* Video grid responsive layout */
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact form responsive */
    .contact-form-side {
        padding: 2.25rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    /* Footer responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }
}
