/**
 * FIFA C Imported Fertilizers - Mobile-First Responsive Stylesheet
 * Version: 3.0 - Mobile First Approach
 * Breakpoints: 320px (mobile), 768px (tablet), 1024px (desktop), 1400px (large)
 */

/* ========================================
   CSS VARIABLES - RESPONSIVE DESIGN TOKENS
   ======================================== */
:root {
    /* Primary Brand Colors */
    --primary: #0B5D3B;
    --primary-dark: #094d31;
    --primary-light: #147a4f;
    --primary-gradient: linear-gradient(135deg, #0B5D3B 0%, #147a4f 100%);
    
    /* Secondary Colors */
    --secondary: #A7E8BD;
    --secondary-light: #c5f0d4;
    --secondary-dark: #7dd89a;
    
    /* Accent Colors */
    --accent: #4ade80;
    --accent-light: #86efac;
    --accent-gradient: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    
    /* Neutral Palette */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Typography Scale - Fluid */
    --font-heading: 'Montserrat', 'Poppins', sans-serif;
    --font-body: 'Inter', 'Roboto', sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    
    /* Mobile-first font sizes (will scale up) */
    --text-xs: clamp(0.625rem, 0.8vw, 0.75rem);
    --text-sm: clamp(0.75rem, 0.9vw, 0.875rem);
    --text-base: clamp(0.875rem, 1vw, 1rem);
    --text-lg: clamp(1rem, 1.2vw, 1.125rem);
    --text-xl: clamp(1.125rem, 1.5vw, 1.25rem);
    --text-2xl: clamp(1.25rem, 2vw, 1.5rem);
    --text-3xl: clamp(1.5rem, 2.5vw, 1.875rem);
    --text-4xl: clamp(1.875rem, 3vw, 2.25rem);
    --text-5xl: clamp(2rem, 4vw, 3rem);
    --text-6xl: clamp(2.5rem, 5vw, 3.75rem);
    
    /* Fluid Spacing */
    --space-1: clamp(0.125rem, 0.25vw, 0.25rem);
    --space-2: clamp(0.25rem, 0.5vw, 0.5rem);
    --space-3: clamp(0.375rem, 0.75vw, 0.75rem);
    --space-4: clamp(0.5rem, 1vw, 1rem);
    --space-5: clamp(0.75rem, 1.25vw, 1.25rem);
    --space-6: clamp(0.875rem, 1.5vw, 1.5rem);
    --space-8: clamp(1rem, 2vw, 2rem);
    --space-10: clamp(1.25rem, 2.5vw, 2.5rem);
    --space-12: clamp(1.5rem, 3vw, 3rem);
    --space-16: clamp(2rem, 4vw, 4rem);
    --space-20: clamp(2.5rem, 5vw, 5rem);
    --space-24: clamp(3rem, 6vw, 6rem);
    
    /* Layout */
    --container-max: min(100% - 2rem, 1400px);
    --container-padding: clamp(1rem, 5vw, 3rem);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(74, 222, 128, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Z-index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-popover: 400;
    --z-tooltip: 500;
    --z-loader: 600;
}

/* ========================================
   RESET & BASE STYLES - MOBILE FIRST
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Prevent horizontal scroll on all devices */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* Grid Utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }
.font-accent { font-family: var(--font-accent); }

/* Spacing Utilities */
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.py-20 { padding-top: var(--space-20); padding-bottom: var(--space-20); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }

/* ========================================
   NAVIGATION - MOBILE FIRST
   ======================================== */
.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition-base);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    max-width: 1400px;
    margin: 0 auto;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-size: var(--text-xl);
    transition: all var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: var(--gray-100);
    color: var(--primary);
}

.menu-toggle:active {
    transform: scale(0.95);
}

/* Logo */
.navbar-left {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
    color: var(--primary);
}

.navbar-logo i {
    font-size: var(--text-xl);
    color: var(--accent);
}

.logo-tag {
    display: none;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Search Bar - Hidden on mobile */
.navbar-search {
    display: none;
    flex: 1;
    max-width: 500px;
    margin: 0 var(--space-6);
    position: relative;
}

.navbar-search input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    padding-left: 2.5rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    background: var(--gray-50);
}

.navbar-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(11, 93, 59, 0.1);
}

.navbar-search > i {
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.search-btn {
    display: none;
}

/* Navigation Links - Mobile Drawer */
.navbar-right {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    padding: var(--space-6);
    padding-top: 5rem;
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
}

.navbar-right.active {
    transform: translateX(0);
}

/* Close button for mobile menu */
.navbar-right::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    color: var(--gray-600);
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.navbar-right::before:hover {
    background: var(--gray-100);
    color: var(--error);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-3);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
    min-height: 48px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--gray-50);
    padding-left: var(--space-5);
}

.nav-link i {
    font-size: var(--text-lg);
    width: 24px;
    text-align: center;
}

/* Country Selector */
.country-selector {
    display: none;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.country-selector img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.country-selector span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-700);
}

/* Overlay for mobile menu */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

/* ========================================
   HERO SECTION - MOBILE FIRST
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: var(--space-8);
    background: linear-gradient(135deg, #0B5D3B 0%, #147a4f 50%, #0B5D3B 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--space-4);
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

/* ========================================
   BUTTONS - MOBILE OPTIMIZED
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    min-height: 48px;
    min-width: 120px;
    -webkit-tap-highlight-color: transparent;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 222, 128, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-lg {
    padding: var(--space-5) var(--space-8);
    font-size: var(--text-lg);
    min-height: 56px;
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    min-height: 40px;
}

/* ========================================
   SECTIONS - RESPONSIVE SPACING
   ======================================== */
.section {
    padding: var(--space-16) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
    padding: 0 var(--space-4);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   PRODUCT/FEATURE CARDS - MOBILE GRID
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: 0 var(--space-4);
}

.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

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

.card-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: var(--accent-gradient);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.card-content {
    padding: var(--space-5);
}

.card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
    line-height: 1.4;
}

.card-text {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-100);
}

.card-price {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
}

.card-price span {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-500);
}

/* ========================================
   SERVICES - ICON CARDS
   ======================================== */
.service-card {
    text-align: center;
    padding: var(--space-8) var(--space-5);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-5);
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    color: var(--white);
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-3);
}

.service-text {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   STATS/FEATURES - FLEX LAYOUT
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-4);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 500;
}

/* ========================================
   ABOUT/CONTENT SECTIONS
   ======================================== */
.content-split {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    padding: 0 var(--space-4);
}

.content-text {
    order: 2;
}

.content-media {
    order: 1;
}

.content-media img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: var(--secondary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: var(--text-lg);
}

.feature-content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
}

.feature-content p {
    font-size: var(--text-base);
    color: var(--gray-600);
    line-height: 1.5;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-slider {
    position: relative;
    padding: 0 var(--space-4);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid var(--secondary-light);
}

.testimonial-text {
    font-size: var(--text-lg);
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-4);
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-role {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* ========================================
   CONTACT FORM - MOBILE OPTIMIZED
   ======================================== */
.contact-section {
    background: var(--gray-50);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    padding: 0 var(--space-4);
}

.contact-info {
    order: 2;
}

.contact-form-wrapper {
    order: 1;
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
}

.form-control {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
    background: var(--white);
    min-height: 48px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 93, 59, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

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

/* ========================================
   FOOTER - MOBILE LAYOUT
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    padding: 0 var(--space-4);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
}

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

.footer-text {
    font-size: var(--text-base);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    font-size: var(--text-base);
    color: var(--gray-400);
    transition: color var(--transition-fast);
    padding: var(--space-2) 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-base);
}

.contact-item i {
    color: var(--accent);
    font-size: var(--text-lg);
    margin-top: 2px;
}

.footer-newsletter {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.footer-newsletter input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    background: var(--gray-800);
    color: var(--white);
    font-size: var(--text-base);
    min-height: 48px;
}

.footer-newsletter input::placeholder {
    color: var(--gray-500);
}

.footer-newsletter button {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    margin-top: var(--space-8);
    border-top: 1px solid var(--gray-800);
    font-size: var(--text-sm);
    color: var(--gray-500);
}

/* ========================================
   TABLET BREAKPOINT (768px+)
   ======================================== */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }
    
    /* Navigation */
    .navbar-container {
        padding: var(--space-4) var(--space-6);
    }
    
    .navbar-search {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .navbar-right {
        position: static;
        flex-direction: row;
        padding: 0;
        transform: none;
        background: transparent;
        gap: var(--space-1);
        overflow: visible;
    }
    
    .navbar-right::before {
        display: none;
    }
    
    .nav-link {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-sm);
        border: none;
        border-radius: var(--radius-md);
        min-height: 40px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--gray-100);
        padding-left: var(--space-3);
    }
    
    .country-selector {
        display: flex;
    }
    
    /* Hero */
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    /* Grids */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Content */
    .content-split {
        flex-direction: row;
        align-items: center;
        gap: var(--space-12);
    }
    
    .content-text {
        flex: 1;
        order: 1;
    }
    
    .content-media {
        flex: 1;
        order: 2;
    }
    
    /* Contact */
    .contact-wrapper {
        flex-direction: row;
        gap: var(--space-12);
    }
    
    .contact-info {
        flex: 1;
        order: 1;
    }
    
    .contact-form-wrapper {
        flex: 1;
        order: 2;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-10) var(--space-8);
    }
    
    .footer-brand {
        text-align: left;
        grid-column: 1 / -1;
    }
}

/* ========================================
   DESKTOP BREAKPOINT (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    :root {
        --container-padding: 3rem;
    }
    
    /* Typography */
    .section-title {
        font-size: var(--text-4xl);
    }
    
    /* Navigation */
    .navbar-container {
        padding: var(--space-4) var(--space-8);
    }
    
    .nav-link {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-base);
    }
    
    /* Hero */
    .hero-title {
        font-size: var(--text-6xl);
    }
    
    /* Grids */
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: var(--space-12);
    }
    
    .footer-brand {
        grid-column: auto;
    }
}

/* ========================================
   LARGE DESKTOP (1400px+)
   ======================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .cards-grid {
        gap: var(--space-10);
    }
}

/* ========================================
   SMALL MOBILE OPTIMIZATIONS (< 375px)
   ======================================== */
@media (max-width: 375px) {
    :root {
        --container-padding: 0.75rem;
    }
    
    .navbar-logo .logo-text {
        font-size: var(--text-base);
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .btn {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }
    
    .card-content {
        padding: var(--space-4);
    }
}

/* ========================================
   LANDSCAPE MOBILE
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 var(--space-8);
    }
    
    .navbar-right {
        padding-top: 4rem;
    }
}

/* ========================================
   UTILITY ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

.animate-slideIn {
    animation: slideIn 0.3s ease forwards;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
}

/* Print styles */
@media print {
    .navbar-modern,
    .footer,
    .btn {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* ========================================
   PAGE LOADER - RESPONSIVE
   ======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: var(--z-loader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ========================================
   NOTIFICATIONS - RESPONSIVE
   ======================================== */
.notification {
    position: fixed;
    top: var(--space-4);
    right: var(--space-4);
    left: var(--space-4);
    max-width: 400px;
    margin-left: auto;
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: calc(var(--z-loader) + 1);
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .notification {
        left: auto;
        width: auto;
    }
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: var(--success);
}

.notification-error {
    background: var(--error);
}

.notification-info {
    background: var(--info);
}

.notification i {
    font-size: var(--text-xl);
    flex-shrink: 0;
}
