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

:root {
    /* Color Palette - Teal + Orange (Based on trilokexport.com) */
    --primary-teal: #1e4d5f;
    --primary-teal-light: #2B5A6F;
    --primary-teal-dark: #153a48;
    --accent-orange: #F5A623;
    --accent-orange-dark: #E89B2E;
    --accent-orange-light: #FDB64E;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* ================================
   Typography
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
    color: var(--gray-600);
}

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

a:hover {
    color: var(--primary-blue-light);
}

/* ================================
   Container & Layout
   ================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-light));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(30, 77, 95, 0.3);
    position: relative;
    overflow: hidden;
}

.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.section-label:hover::before {
    left: 100%;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ================================
   Navigation Bar - Enhanced
   ================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo h2 {
    font-size: 1.875rem;
    margin: 0;
    font-weight: 900;
}

.tagline-mini {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-orange);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}

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

.nav-menu a {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-teal);
    background: rgba(30, 77, 95, 0.08);
}

.nav-menu a:hover::before {
    width: 60%;
}

.nav-menu a.active {
    color: var(--white);
    background: var(--primary-teal);
    box-shadow: 0 4px 15px rgba(30, 77, 95, 0.3);
}

.nav-menu a.active::before {
    display: none;
}

/* Mobile Navigation Toggle - ADD THIS */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 35px;
    height: 35px;
    justify-content: center;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Close X Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   Hero Section - Enhanced
   ================================ */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 77, 95, 0.92) 0%, rgba(43, 90, 111, 0.88) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 77, 95, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto 30px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.375rem;
    max-width: 750px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.98);
    line-height: 1.9;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================================
   Buttons - Enhanced
   ================================ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-teal);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.1875rem;
    border-radius: 14px;
}

/* ================================
   Intro Section - Enhanced
   ================================ */
.intro-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.intro-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-orange));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.intro-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-teal);
}

.intro-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
}

.intro-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-teal-light), var(--accent-orange));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.intro-card:hover .intro-icon {
    transform: rotateY(360deg);
    box-shadow: 0 15px 40px rgba(30, 77, 95, 0.4);
}

.intro-card:hover .intro-icon::after {
    opacity: 0.3;
}

.intro-card h3 {
    color: var(--gray-900);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.intro-card p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    margin: 0;
    line-height: 1.7;
}

/* ================================
   Categories Section - Enhanced
   ================================ */
.categories-section {
    background: var(--white);
    position: relative;
}

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

.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 77, 95, 0.9), rgba(43, 90, 111, 0.9));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.category-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.15);
}

.category-content {
    padding: 35px 28px;
    position: relative;
    z-index: 2;
    transition: all 0.5s ease;
}

.category-card:hover .category-content {
    color: var(--white);
    transform: translateY(-10px);
}

.category-content h3 {
    color: var(--gray-900);
    margin-bottom: 14px;
    font-size: 1.5rem;
    transition: color 0.5s ease;
}

.category-card:hover .category-content h3 {
    color: var(--white);
}

.category-content p {
    color: var(--gray-600);
    font-size: 1rem;
    margin: 0;
    line-height: 1.7;
    transition: color 0.5s ease;
}

.category-card:hover .category-content p {
    color: rgba(255, 255, 255, 0.95);
}

/* ================================
   Export Highlight - FIXED
   ================================ */
.export-highlight {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
    color: var(--white);
}

.export-highlight .section-header h2,
.export-highlight .section-header p,
.export-highlight .section-label {
    color: var(--white);
}

.export-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
}

.countries-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.country-badge {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.country-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ================================
   Why Choose Us - Enhanced
   ================================ */
.why-choose {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.why-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 5px solid var(--primary-teal);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(30, 77, 95, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.why-card:hover::before {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
}

.why-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-orange);
}

.why-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    line-height: 1;
    transition: all 0.4s ease;
}

.why-card:hover .why-number {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.why-card h3 {
    color: var(--gray-900);
    margin-bottom: 14px;
    font-size: 1.375rem;
}

.why-card p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* ================================
   CTA Section - Enhanced
   ================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 50%, var(--accent-orange) 100%);
    color: var(--white);
    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 at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.375rem;
    margin-bottom: 45px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 12px;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    padding: 10px 20px;
    background: var(--gray-800);
    color: var(--gray-300);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.875rem;
}

/* ================================
   Page Header (For Inner Pages) - Enhanced
   ================================ */
.page-header {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: slowZoom 15s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 77, 95, 0.88), rgba(43, 90, 111, 0.88));
    z-index: 2;
}

.page-header-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(245, 166, 35, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(30, 77, 95, 0.4) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -1px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.375rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

/* ================================
   Content Grid (About, Products)
   ================================ */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    padding: 20px 0;
}

.content-text h2 {
    margin-bottom: 24px;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

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

/* ================================
   Mission Vision
   ================================ */
.mission-vision {
    background: var(--gray-50);
}

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

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition-smooth);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    margin: 0 auto 30px;
    color: var(--primary-teal);
}

.mv-card h3 {
    color: var(--gray-900);
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* ================================
   Quality Section
   ================================ */
.quality-section {
    background: var(--white);
}

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

.quality-card {
    background: var(--gray-50);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.quality-card:hover {
    border-color: var(--primary-teal);
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 77, 95, 0.1);
}

.quality-icon {
    margin: 0 auto 24px;
    color: var(--primary-teal);
}

.quality-card h3 {
    margin-bottom: 16px;
}

.quality-card p {
    margin: 0;
    font-size: 0.9375rem;
}

/* ================================
   Export Expertise
   ================================ */
.export-expertise {
    background: var(--gray-50);
}

.expertise-points {
    margin-top: 30px;
}

.point-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.point-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.point-text h4 {
    color: var(--gray-900);
    margin-bottom: 8px;
}

.point-text p {
    color: var(--gray-600);
    margin: 0;
}

/* ================================
   Global Reach
   ================================ */
.global-reach {
    background: var(--white);
}

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

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

.reach-stat h3 {
    color: var(--primary-blue-dark);
    margin-bottom: 24px;
    font-size: 1.75rem;
}

.market-list {
    list-style: none;
}

.market-list li {
    padding: 12px 20px;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: var(--transition-fast);
}

.market-list li:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateX(8px);
}

.market-list.potential li {
    background: var(--accent-orange);
    color: var(--white);
}

.market-list.potential li:hover {
    background: var(--accent-orange-dark);
}

/* ================================
   Products Page
   ================================ */
.product-section {
    padding: 50px 20px;
}

.product-section.alt {
    background: var(--gray-50);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.product-detail:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 12px 40px rgba(30, 77, 95, 0.15);
}

.product-detail.reverse {
    direction: rtl;
}

.product-detail.reverse > * {
    direction: ltr;
}

.product-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--gray-200);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.product-info h2 {
    color: var(--gray-900);
    margin-bottom: 20px;
}

.product-intro {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-features,
.product-applications {
    margin-bottom: 24px;
}

.product-features h4,
.product-applications h4 {
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--gray-700);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.125rem;
}

.product-applications p {
    color: var(--gray-600);
    font-style: italic;
}

/* ================================
   Specialized Categories
   ================================ */
.categories-grid-section {
    background: var(--gray-50);
}

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

.spec-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.spec-icon {
    margin: 0 auto 24px;
    color: var(--primary-teal);
}

.spec-card h3 {
    color: var(--gray-900);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.spec-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9375rem;
}

/* ================================
   Export Markets Page
   ================================ */
.export-overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.overview-stat {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.overview-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    margin: 0 auto 20px;
    color: var(--primary-teal);
}

.overview-stat h3 {
    color: var(--gray-900);
    margin-bottom: 8px;
}

.overview-stat p {
    color: var(--gray-600);
    margin: 0;
}

/* ================================
   World Map
   ================================ */
.map-section {
    background: var(--gray-50);
}

.world-map-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.map-visual {
    width: 100%;
}

.world-map-svg {
    width: 100%;
    height: auto;
}

.world-map-svg circle {
    cursor: pointer;
    transition: var(--transition-fast);
}

.world-map-svg circle:hover {
    filter: brightness(1.2);
    transform: scale(1.2);
    transform-origin: center;
}

/* ================================
   Markets Grid
   ================================ */
.markets-section {
    background: var(--white);
    padding: 60px 20px;
}

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

.market-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid var(--gray-200);
}

.market-card:hover {
    border-color: var(--primary-teal);
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(30, 77, 95, 0.12);
}

.market-flag {
    font-size: 4rem;
    margin-bottom: 20px;
}

.market-card h3 {
    color: var(--gray-900);
    margin-bottom: 8px;
    font-size: 1.375rem;
}

.market-region {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.market-desc {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9375rem;
}

/* ================================
   Expansion Markets
   ================================ */
.expansion-section {
    background: var(--gray-50);
    padding: 60px 20px;
}

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

.expansion-card {
    background: var(--primary-teal);
    color: var(--white);
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid var(--primary-teal-light);
}

.expansion-card:hover {
    background: var(--primary-teal-dark);
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(30, 77, 95, 0.3);
}

.expansion-flag {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.expansion-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.expansion-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9375rem;
}

/* ================================
   Logistics Section
   ================================ */
.logistics-section {
    background: var(--white);
}

.logistics-features {
    margin-top: 30px;
}

.logistics-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.logistics-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.logistics-item h4 {
    color: var(--gray-900);
    margin-bottom: 6px;
}

.logistics-item p {
    color: var(--gray-600);
    margin: 0;
}

/* ================================
   Compliance Section
   ================================ */
.compliance-section {
    background: var(--gray-50);
    padding: 60px 20px;
}

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

.compliance-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition-smooth);
}

.compliance-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 77, 95, 0.1);
}

.compliance-card h4 {
    color: var(--primary-teal);
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.compliance-card p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.875rem;
}

/* ================================
   Contact Page - FIXED
   ================================ */
.contact-section {
    background: var(--gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-light));
    color: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    position: sticky;
    top: 100px;
}

.contact-info-header h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-details h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.95);
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--white);
    text-decoration: underline;
}

.business-hours {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.business-hours h4 {
    color: var(--white);
    margin-bottom: 12px;
}

.business-hours p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.8;
}

/* ================================
   Contact Form
   ================================ */
.contact-form-panel {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-panel h3 {
    color: var(--gray-900);
    margin-bottom: 12px;
}

.form-subtitle {
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.required {
    color: var(--accent-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(30, 77, 95, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 6px;
    display: none;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #d1fae5;
    border: 2px solid var(--primary-teal);
    border-radius: 8px;
    color: #065f46;
    margin-top: 20px;
}

.form-success svg {
    color: var(--primary-teal);
    flex-shrink: 0;
}

.form-success p {
    margin: 0;
    color: #065f46;
    font-weight: 500;
}

.btn-text,
.btn-loading {
    display: inline-block;
}

/* ================================
   Map Embed
   ================================ */
.map-embed-section {
    background: var(--white);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder-content {
    text-align: center;
    color: var(--gray-700);
}

.map-placeholder-content svg {
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.map-placeholder-content h3 {
    color: var(--gray-900);
    margin-bottom: 12px;
}

.map-placeholder-content p {
    color: var(--gray-600);
    margin: 0;
}

/* ================================
   Animations
   ================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Stagger animation for multiple items */
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        position: relative;
        top: 0;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 20px;
        border-radius: 8px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .intro-grid,
    .categories-grid,
    .why-grid,
    .quality-grid,
    .markets-grid,
    .specialized-grid {
        grid-template-columns: 1fr;
    }
    
    .export-stats {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        height: 300px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .reach-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .countries-preview {
        justify-content: flex-start;
    }
    
    .country-badge {
        font-size: 0.875rem;
        padding: 10px 18px;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 24px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* ================================
   Print Styles
   ================================ */
@media print {
    .navbar,
    .footer,
    .cta-section,
    .mobile-toggle {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
}