/* Modern CSS Variables - Optimized for Readability */
:root {
    /* Primary Color Palette - Chili Theme */
    --primary-color: #e53e3e; /* Softer red, better readability */
    --primary-dark: #c53030; /* Darker red for contrast */
    --primary-light: #fed7d7; /* Light pink-red background */
    --secondary-color: #ed8936; /* Warm orange, food-friendly */
    --secondary-dark: #dd6b20; /* Darker orange for buttons */
    --accent-color: #38a169; /* Success green */

    /* Alternative Color Schemes */
    --alt-bg-light: #fff5f5; /* Very light warm background */
    --alt-bg-card: #ffffff; /* Pure white cards */
    --alt-text-primary: #2d3748; /* Dark gray for better readability */
    --alt-text-secondary: #4a5568; /* Medium gray */

    /* Neutral Colors */
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background: #ffffff;
    --background-light: #f9fafb;
    --background-dark: #f3f4f6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hero: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(185, 28, 28, 0.9) 100%);

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Layout */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

/* Section Styles - Improved Readability */
section {
    padding: var(--space-3xl) 0;
    position: relative;
}

section:nth-of-type(even) {
    background: var(--alt-bg-light);
}

section:nth-of-type(odd) {
    background: var(--alt-bg-card);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
    }
    to {
        box-shadow: 0 12px 35px rgba(229, 62, 62, 0.5);
    }
}

.section-badge.light {
    background: var(--gradient-secondary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Modern Hero Section - Improved Readability */
.hero-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(185, 28, 28, 0.9) 100%), url('hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000000" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-section h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.feature-item i {
    color: #fbbf24;
    font-size: 1.25rem;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.product-showcase {
    position: relative;
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-card.card-1 {
    top: 20%;
    left: -20%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 20%;
    right: -25%;
    animation-delay: 1.5s;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-10px);
    }
    70% {
        transform: translateX(-50%) translateY(-5px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Sections */
section {
    padding: 40px 0;
    margin-bottom: 20px;
    background-color: var(--light-background-color);
}

section:nth-of-type(even) {
    background-color: var(--background-color);
}

/* Modern About Section */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    background: var(--background);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.story-text h3 {
    color: #e53e3e;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.story-text h3 i {
    font-size: 1.5rem;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.story-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.story-image:hover .story-img {
    transform: scale(1.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.benefit-card {
    background: var(--background);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #e53e3e;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    color: #e53e3e;
    margin-bottom: var(--space-md);
}

.benefit-card p {
    margin-bottom: 0;
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border-radius: var(--radius-lg);
    min-width: 150px;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.price-card {
    background: var(--background);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.price-card.popular {
    border-color: var(--secondary-color);
}

.price-card.bestseller {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--background) 0%, var(--primary-light) 100%);
}

.price-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.price-badge.bestseller {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
}

.price-badge.wholesale {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
}

.price-header {
    margin-bottom: var(--space-xl);
}

.product-size {
    font-size: 2rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: var(--space-sm);
}

.product-volume {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.price-value .currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price-value .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #e53e3e;
    font-family: var(--font-display);
}

.price-features {
    margin-bottom: var(--space-xl);
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.feature i {
    color: #38a169;
    font-size: 1rem;
}

.price-button {
    width: 100%;
    padding: var(--space-lg);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.price-button.primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.price-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #c53030 0%, #9c2e2e 100%);
}

.price-button.outline {
    background: transparent;
    border: 2px solid #e53e3e;
    color: #e53e3e;
}

.price-button.outline:hover {
    background: #e53e3e;
    color: white;
}

.pricing-footer {
    text-align: center;
    padding: var(--space-xl);
    background: var(--background-light);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.pricing-footer i {
    color: #38a169;
    margin-right: var(--space-sm);
}

/* Order Form Section */
.order-form-section .order-form {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #e53e3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 5px rgba(229, 62, 62, 0.3);
}

.submit-button {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.submit-button:hover {
    background: linear-gradient(135deg, #c53030 0%, #9c2e2e 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-message.error {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    color: #c53030;
    border-left: 4px solid #e53e3e;
}

.form-message.success {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    color: #2f855a;
    border-left: 4px solid #38a169;
}

/* Form field validation states */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #38a169;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}

/* Modern Order-Contact Section - Enhanced Visual Impact */
.order-contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.order-contact-section::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 200 200"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="%23e53e3e" opacity="0.05"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.order-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.order-contact-content .contact-sidebar {
    height: fit-content;
}

/* Remove old map container styles from contact sidebar */

/* Full width map below the two columns */
.order-contact-section .map-container-small {
    width: 100%;
    height: 400px;
    margin-top: var(--space-2xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    grid-column: 1 / -1;
}

.order-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(229, 62, 62, 0.1), 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(229, 62, 62, 0.1);
    position: relative;
    transition: var(--transition-normal);
}

.order-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e53e3e 0%, #ed8936 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.order-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(229, 62, 62, 0.15), 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(229, 62, 62, 0.2);
}

.order-form-container h3 {
    color: #e53e3e;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.5rem;
}

.order-form-container h3 i {
    font-size: 1.75rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(237, 137, 54, 0.1), 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(237, 137, 54, 0.1);
    position: relative;
    transition: var(--transition-normal);
}

.contact-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ed8936 0%, #fbbf24 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.contact-sidebar:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(237, 137, 54, 0.15), 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(237, 137, 54, 0.2);
}

.contact-sidebar h3 {
    color: #e53e3e;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 1.25rem;
}

.contact-sidebar h3 i {
    font-size: 1.5rem;
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #e53e3e;
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.contact-details p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.map-container-small {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 200px;
    margin-bottom: var(--space-xl);
}

.quick-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.quick-button {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 100px;
    justify-content: center;
}

.quick-button.primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.quick-button.primary:hover {
    background: linear-gradient(135deg, #c53030 0%, #9c2e2e 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.quick-button.outline {
    background: transparent;
    border: 2px solid #e53e3e;
    color: #e53e3e;
}

.quick-button.outline:hover {
    background: #e53e3e;
    color: white;
}

.order-form-section .note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

/* Modern Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-card {
    background: var(--background);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #e53e3e;
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #e53e3e;
    margin-bottom: var(--space-sm);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.contact-link {
    color: #e53e3e;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: #c53030;
}

.map-section {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px;
}

.map-container {
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-cta {
    text-align: center;
}

.cta-card {
    background: var(--background);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xl);
    border: 2px solid #e53e3e;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.cta-content h3 {
    color: #e53e3e;
    margin-bottom: var(--space-sm);
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

.mini-button {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.mini-button.primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
}

.mini-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #c53030 0%, #9c2e2e 100%);
}

.mini-button.outline {
    background: transparent;
    border: 2px solid #e53e3e;
    color: #e53e3e;
}

.mini-button.outline:hover {
    background: #e53e3e;
    color: white;
}

/* Modern Testimonials Section - Enhanced Visual Impact */
.testimonials-section {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(237, 137, 54, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section::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="20" cy="20" r="2" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-header.light {
    color: white;
}

.section-header.light h2 {
    color: white;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(229, 62, 62, 0.08);
    transition: var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e53e3e 0%, #ed8936 50%, #fbbf24 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(229, 62, 62, 0.15);
    border-color: rgba(229, 62, 62, 0.3);
}

.testimonial-card:hover::before {
    background: linear-gradient(90deg, #c53030 0%, #dd6b20 50%, #d69e2e 100%);
    height: 6px;
}

.testimonial-header {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    align-items: center;
}

.customer-avatar {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid transparent;
    background: linear-gradient(135deg, #e53e3e 0%, #ed8936 100%);
    padding: 2px;
    position: relative;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
    transition: var(--transition-normal);
}

.customer-avatar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.testimonial-card:hover .customer-avatar::after {
    opacity: 1;
    transform: scale(1.1);
}

.testimonial-card:hover .customer-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info h4 {
    color: #1a202c;
    margin-bottom: var(--space-sm);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(26, 32, 44, 0.1);
    font-size: 1.2rem;
}

.customer-info p {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    display: inline-block;
}

.rating {
    display: flex;
    gap: 3px;
    margin-top: var(--space-sm);
}

.rating i {
    color: #fbbf24;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
    transition: var(--transition-fast);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.testimonial-card:hover .rating i {
    color: #f59e0b;
    transform: scale(1.1);
    text-shadow: 0 3px 6px rgba(245, 158, 11, 0.4);
}

.testimonial-content {
    margin-bottom: var(--space-lg);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2d3748;
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: 0;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 4rem;
    color: #e53e3e;
    opacity: 0.4;
    font-family: var(--font-display);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--background-light);
}

.testimonial-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 250, 252, 0.1) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    min-width: 220px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ed8936 0%, #fbbf24 100%);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 250, 252, 0.15) 100%);
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(237, 137, 54, 0.2);
}

.stat-card:hover::before {
    background: linear-gradient(90deg, #dd6b20 0%, #d69e2e 100%);
    height: 5px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Footer - Improved Readability */
.footer-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-section::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="20" cy="20" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.03"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 2;
}

.footer-brand h3 {
    color: #ed8936;
    margin-bottom: var(--space-lg);
    font-size: 1.5rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    transform: translateY(-2px);
}

.footer-column h4 {
    color: #ed8936;
    margin-bottom: var(--space-lg);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: #ed8936;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.legal-links {
    display: flex;
    gap: var(--space-lg);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: #ed8936;
}

.footer-badge {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

/* Modern Floating CTA - Improved Readability */
.floating-cta {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border: 2px solid transparent;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(237, 137, 54, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
}

.floating-cta i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Modern Responsive Design */

/* Mobile First - Base styles are for mobile */
@media (max-width: 767px) {
    .container {
        padding: var(--space-lg);
    }

    section {
        padding: var(--space-2xl) 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .hero-features {
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .story-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Disable complex hover effects on mobile for better performance */
    .testimonial-card:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .testimonial-card:hover .customer-avatar {
        transform: scale(1.05);
    }

    .testimonial-card:hover .customer-avatar::after {
        opacity: 0.5;
    }

    .stat-card:hover {
        transform: translateY(-3px) scale(1.02);
    }

    .order-contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .order-form-container {
        padding: var(--space-lg);
    }

    .contact-sidebar {
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    /* Disable hover effects on mobile for better performance */
    .order-form-container:hover,
    .contact-sidebar:hover {
        transform: none;
    }

    .contact-info-compact {
        gap: var(--space-md);
    }

    .contact-item {
        padding: var(--space-md);
        gap: var(--space-md);
    }

    .contact-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .quick-cta {
        flex-direction: column;
        align-items: center;
    }

    .quick-button {
        width: 100%;
        max-width: 200px;
    }

    /* Full width map on mobile */
    .order-contact-section .map-container-small {
        height: 300px;
        margin-top: var(--space-xl);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-cta {
        bottom: var(--space-lg);
        right: var(--space-lg);
        padding: var(--space-md) var(--space-lg);
        font-size: 0.875rem;
    }

    .floating-elements {
        display: none;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .hero-section {
        padding: var(--space-2xl) 0;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .story-section {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .order-contact-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    /* Map still full width on tablet */
    .order-contact-section .map-container-small {
        height: 350px;
        margin-top: var(--space-2xl);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        text-align: left;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .container {
        padding: var(--space-xl) var(--space-2xl);
    }

    .hero-content {
        grid-template-columns: 1.2fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .order-contact-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }

    /* Larger map on desktop */
    .order-contact-section .map-container-small {
        height: 450px;
        margin-top: var(--space-3xl);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-xl);
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    /* Even larger map on large desktop */
    .order-contact-section .map-container-small {
        height: 500px;
        margin-top: var(--space-3xl);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ed8936;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .floating-cta,
    .scroll-indicator,
    .floating-elements {
        display: none !important;
    }

    .hero-section {
        background: none !important;
        color: black !important;
    }

    * {
        box-shadow: none !important;
    }
}