/* FRWRD - Modern & Bold Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

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

:root {
    /* Modern color palette */
    --color-primary: #0066FF;
    --color-primary-dark: #0047B3;
    --color-primary-light: #3385FF;
    --color-secondary: #7C3AED;
    --color-accent: #F43F5E;
    --color-accent-light: #FB7185;
    --color-fresh: #10B981;
    --color-fresh-light: #34D399;
    --color-cyan: #06B6D4;
    --color-orange: #F97316;

    /* Neutrals */
    --color-white: #ffffff;
    --color-off-white: #F8FAFC;
    --color-gray-50: #F8FAFC;
    --color-gray-100: #F1F5F9;
    --color-gray-200: #E2E8F0;
    --color-gray-300: #CBD5E1;
    --color-gray-400: #94A3B8;
    --color-gray-500: #64748B;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1E293B;
    --color-gray-900: #0F172A;
    --color-dark: #030712;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #7C3AED 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
    --gradient-accent: linear-gradient(135deg, #F43F5E 0%, #F97316 100%);
    --gradient-fresh: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Typography */
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Sizing */
    --container-width: 1280px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(0,102,255,0.3);
    --shadow-glow-accent: 0 0 40px rgba(244,63,94,0.3);

    --transition-fast: 0.15s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --blur-glass: blur(20px);
    --border-radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    color: var(--color-gray-700);
    background-color: #ffffff;
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1 { font-size: 3rem; font-size: clamp(2.75rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }

.section-label {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0,102,255,0.1) 0%, rgba(124,58,237,0.1) 100%);
    border-radius: 100px;
    width: -webkit-fit-content;
    width: fit-content;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: var(--blur-glass);
    backdrop-filter: var(--blur-glass);
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-gray-900);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: var(--blur-glass);
    backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-gray-600);
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: all var(--transition-smooth);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
    background: rgba(0, 102, 255, 0.08);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--color-gray-100);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0,102,255,0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124,58,237,0.25) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 40% 80%, rgba(244,63,94,0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Floating visual elements */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    z-index: 5;
    display: none;
}

@media (min-width: 1200px) {
    .hero-visual { display: block; }
}

.hero-visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-circle:nth-child(1) {
    width: 100%;
    height: 100%;
    animation: rotate 40s linear infinite;
}

.hero-visual-circle:nth-child(2) {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    animation: rotate 30s linear infinite reverse;
}

.hero-visual-circle:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-color: rgba(244, 63, 94, 0.2);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Glassmorphism icon cards */
.hero-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: var(--blur-glass);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-icon:nth-child(4) { top: 8%; left: 15%; animation-delay: 0s; }
.hero-icon:nth-child(5) { top: 25%; right: 5%; animation-delay: 1.5s; }
.hero-icon:nth-child(6) { bottom: 25%; left: 5%; animation-delay: 3s; }
.hero-icon:nth-child(7) { bottom: 15%; right: 15%; animation-delay: 4.5s; }

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

/* Page Header */
.page-header {
    position: relative;
    padding: 10rem 0 5rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 30% 50%, rgba(0,102,255,0.25) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 70% 70%, rgba(124,58,237,0.2) 0%, transparent 50%);
}

.page-header h1 {
    color: var(--color-white);
    position: relative;
    z-index: 10;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.breadcrumb {
    position: relative;
    z-index: 10;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
}

/* Section Styling */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-gray-500);
    font-size: 1.125rem;
}

/* Services Section */
.services {
    background: var(--color-gray-50);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gray-200), transparent);
}

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

.services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.services-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.why-us-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    transition: gap var(--transition-smooth);
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link::after {
    content: '→';
}

/* Produce Categories */
.produce-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.produce-category {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--border-radius);
    transition: all var(--transition-smooth);
    text-decoration: none;
    color: var(--color-gray-700);
    position: relative;
    overflow: hidden;
}

.produce-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.produce-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.produce-category:hover::before {
    opacity: 0.05;
}

.produce-category-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
}

.produce-category-name {
    font-weight: 600;
    font-size: 0.9375rem;
    position: relative;
}

/* Why Choose Us - Bold dark section */
.why-us {
    background: var(--gradient-hero);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 50% at 0% 50%, rgba(0,102,255,0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 50%, rgba(244,63,94,0.15) 0%, transparent 50%);
}

.why-us .section-label {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
}

.why-us h2 {
    color: var(--color-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.why-us-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    -webkit-backdrop-filter: var(--blur-glass);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    transition: all var(--transition-smooth);
}

.why-us-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-smooth);
}

.why-us-item:hover .why-us-icon {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.why-us-item h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.why-us-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* Global Reach Section */
.global-reach {
    background: var(--color-white);
    position: relative;
}

.global-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.global-map {
    background: var(--gradient-hero);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.global-map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background-image: url('../images/world-map.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.map-points {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.map-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(244,63,94,0.5);
}

.map-point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    border-radius: 50%;
    animation: ping 2s infinite;
}

@keyframes ping {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Pin positions calculated from SVG viewBox (0 0 1010 666) */
/* Formula: left = 5 + (svg_x/1010)*90, top = 10 + (svg_y/666)*80 */
/* USA - continental center (~180, 330) */
.map-point:nth-child(1) { top: 50%; left: 21%; animation-delay: 0s; }
/* Brazil - center (~340, 505) */
.map-point:nth-child(2) { top: 71%; left: 35%; animation-delay: 0.3s; }
/* Western Europe - UK/France area (~470, 275) */
.map-point:nth-child(3) { top: 43%; left: 47%; animation-delay: 0.6s; }
/* Russia - Moscow region (~575, 275) */
.map-point:nth-child(4) { top: 43%; left: 56%; animation-delay: 0.9s; }
/* Dubai/UAE HQ (~625, 393) */
.map-point:nth-child(5) { top: 57%; left: 61%; animation-delay: 1.2s; }
/* Egypt (~560, 385) */
.map-point:nth-child(6) { top: 56%; left: 55%; animation-delay: 1.5s; }
/* South Africa (~545, 540) */
.map-point:nth-child(7) { top: 75%; left: 54%; animation-delay: 1.8s; }
/* Australia (~855, 540) */
.map-point:nth-child(8) { top: 75%; left: 81%; animation-delay: 2.1s; }

/* Dubai HQ marker - larger and different color */
.map-point-hq {
    width: 20px !important;
    height: 20px !important;
    background: var(--color-primary) !important;
    box-shadow: 0 4px 12px rgba(0,102,255,0.6) !important;
}

.map-point-hq::after {
    background: var(--color-primary) !important;
}

.global-text h2 {
    margin-bottom: 1.5rem;
}

.global-text p {
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

.global-list {
    list-style: none;
    margin-bottom: 2rem;
}

.global-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-gray-600);
    border-bottom: 1px solid var(--color-gray-100);
}

.global-list li:last-child {
    border-bottom: none;
}

.global-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-fresh);
    font-weight: 700;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.25) 0%, transparent 60%);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.cta h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* About Page */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    background: var(--gradient-hero);
    border-radius: var(--border-radius);
    height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 50% at 30% 30%, rgba(0,102,255,0.3) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 70% 70%, rgba(244,63,94,0.25) 0%, transparent 50%);
}

.about-image::after {
    content: 'FRWRD';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.5rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    border-radius: var(--border-radius);
    transition: all var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--color-gray-500);
    font-size: 0.9375rem;
}

/* Products Page */
.products-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-category-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-smooth);
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-category-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.product-category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: brightness(1.1);
}

.product-icon {
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.product-category-card:hover .product-icon {
    transform: scale(1.05);
}

.product-category-image.fruits,
.product-category-card:nth-child(1) .product-category-image {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.product-category-image.vegetables,
.product-category-card:nth-child(2) .product-category-image {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.product-category-image.grains,
.product-category-card:nth-child(3) .product-category-image {
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

.product-category-image.commodities,
.product-category-card:nth-child(4) .product-category-image {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.product-category-content {
    padding: 2rem;
}

.product-category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-category-content p {
    color: var(--color-gray-500);
    margin-bottom: 1.5rem;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-list span {
    padding: 0.5rem 1rem;
    background: var(--color-gray-50);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-fast);
}

.product-list span:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-gray-500);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-gray-50);
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

.contact-method:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,102,255,0.25);
}

.contact-method-text strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-gray-800);
}

.contact-method-text p {
    color: var(--color-gray-500);
    margin: 0;
    font-size: 0.9375rem;
}

.office-hours {
    background: var(--color-gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-gray-100);
}

.office-hours h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--color-gray-800);
}

.office-hours p {
    color: var(--color-gray-500);
    font-size: 0.9375rem;
    margin: 0.5rem 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--color-gray-500);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

.form-group label {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem 1.25rem;
    border: 2px solid var(--color-gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-size: 16px; /* Prevents iOS zoom on focus */
    transition: all var(--transition-smooth);
    background: var(--color-white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 50% 30% at 10% 90%, rgba(0,102,255,0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 90% 80%, rgba(124,58,237,0.1) 0%, transparent 50%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.footer-brand p {
    color: var(--color-gray-400);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

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

/* Contact name links */
a.contact-name {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

a.contact-name:hover {
    opacity: 0.75;
}

.footer-links a.contact-name {
    color: var(--color-gray-400);
}

.footer-links a.contact-name:hover {
    color: var(--color-white);
    opacity: 1;
}

.contact-method-text a.contact-name {
    color: var(--color-gray-700) !important;
    font-weight: 500;
}

.contact-method-text a.contact-name:hover {
    color: var(--color-primary) !important;
    opacity: 1;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .produce-categories {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .global-content,
    .about-intro,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .global-map {
        height: 300px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: var(--color-white);
        gap: 0.5rem;
        z-index: 999;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.25rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

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

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

    .hero {
        min-height: auto;
        padding: 8rem 0 5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid,
    .services-grid.cols-2,
    .services-grid.cols-3,
    .services-grid.cols-4,
    .products-hero {
        grid-template-columns: 1fr;
    }

    .produce-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid,
    .why-us-grid.cols-2,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Smooth scroll anchor offset for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .product-category-card:hover,
    .service-card:hover,
    .why-us-item:hover {
        transform: none;
    }

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

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
