/* Modern Typography - Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Page Load Animation */
@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: pageLoad 0.4s ease-out;
}

/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    visibility: visible;
}

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

.loader-content {
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.loader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    animation: logoPulse 2s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(217, 119, 6, 0.3));
}

.loader-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Dark theme loader */
body.dark-theme .page-loader {
    background: var(--bg-dark);
}

body.dark-theme .loader-logo img {
    filter: drop-shadow(0 4px 20px rgba(251, 191, 36, 0.4));
}

body.dark-theme .loader-text {
    color: var(--text-secondary);
}

/* Mobile loader adjustments */
@media (max-width: 768px) {
    .loader-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .loader-text {
        font-size: 1rem;
    }
}

/* Light Theme (Default) - UBL Brand Colors - Bright & Clean */
:root {
    --bg-primary: #ffffff;           /* Pure white background */
    --bg-secondary: #f5f7fa;         /* Very light gray */
    --bg-dark: #e8ecf0;              /* Light gray for sections */
    --text-primary: #1a1a1a;         /* Near black text */
    --text-secondary: #4a5568;       /* Medium gray text */
    --text-light: #718096;           /* Light gray text */
    /* Primary Brand Colors - 60% Usage */
    --accent-primary: #d97706;       /* UBL Gold/Orange - Primary */
    --accent-secondary: #b45309;      /* Darker Gold - Dark accent */
    /* Blue Complement - 30% Usage */
    --blue-primary: #0284c7;         /* Sky Blue - Complementary to orange */
    --blue-secondary: #0369a1;       /* Darker Blue - Secondary accent */
    --blue-light: #e0f2fe;           /* Very light blue for backgrounds */
    /* Supporting Colors - 10% Usage */
    --orange-primary: #d97706;       /* Primary Brand Color */
    --orange-secondary: #fbbf24;     /* Bright Gold */
    --border-color: #cbd5e0;         /* Light gray borders */
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --glow-color: rgba(217, 119, 6, 0.3);
    --gradient-primary: linear-gradient(135deg, #d97706, #fbbf24);
    --gradient-blue: linear-gradient(135deg, #0284c7, #0369a1);
    --gradient-mixed: linear-gradient(135deg, #0284c7, #d97706);
}

/* Light Theme - Explicit (when body.light-theme is set) */
body.light-theme {
    --bg-primary: #ffffff;           /* Pure white background */
    --bg-secondary: #f5f7fa;         /* Very light gray */
    --bg-dark: #e8ecf0;              /* Light gray for sections */
    --text-primary: #1a1a1a;         /* Near black text */
    --text-secondary: #4a5568;       /* Medium gray text */
    --text-light: #718096;           /* Light gray text */
    --accent-primary: #d97706;       /* UBL Gold/Orange - Primary */
    --accent-secondary: #b45309;      /* Darker Gold - Dark accent */
    --blue-primary: #0284c7;         /* Sky Blue - Complementary to orange */
    --blue-secondary: #0369a1;       /* Darker Blue - Secondary accent */
    --blue-light: #e0f2fe;           /* Very light blue for backgrounds */
    --orange-primary: #d97706;       /* Primary Brand Color */
    --orange-secondary: #fbbf24;     /* Bright Gold */
    --border-color: #cbd5e0;         /* Light gray borders */
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
    --glow-color: rgba(217, 119, 6, 0.3);
    --gradient-primary: linear-gradient(135deg, #d97706, #fbbf24);
    --gradient-blue: linear-gradient(135deg, #0284c7, #0369a1);
    --gradient-mixed: linear-gradient(135deg, #0284c7, #d97706);
}

/* Dark Theme - UBL Brand Colors - Rich & Dramatic */
body.dark-theme {
    --bg-primary: #0d0d0d;           /* Near black background */
    --bg-secondary: #1a1a1a;        /* Dark gray secondary */
    --bg-dark: #000000;              /* Pure black for deepest sections */
    --text-primary: #ffffff;         /* Pure white text */
    --text-secondary: #e2e8f0;       /* Light gray text */
    --text-light: #cbd5e0;           /* Medium light gray */
    --accent-primary: #fbbf24;       /* Bright Gold for dark theme */
    --accent-secondary: #fcd34d;     /* Lighter gold for highlights */
    --blue-primary: #0ea5e9;         /* Bright cyan-blue */
    --blue-secondary: #38bdf8;      /* Lighter blue for accents */
    --blue-light: #1e3a5f;          /* Dark blue for backgrounds */
    --orange-primary: #f59e0b;       /* Brighter orange */
    --orange-secondary: #fbbf24;     /* Bright gold */
    --border-color: #2d3748;         /* Dark gray borders */
    --shadow-light: rgba(14, 165, 233, 0.4);
    --shadow-medium: rgba(251, 191, 36, 0.5);
    --shadow-heavy: rgba(14, 165, 233, 0.7);
    --glow-color: rgba(251, 191, 36, 0.8);  /* Stronger glow */
    --gradient-primary: linear-gradient(135deg, #fbbf24, #f59e0b);
    --gradient-blue: linear-gradient(135deg, #0ea5e9, #38bdf8);
    --gradient-mixed: linear-gradient(135deg, #0ea5e9, #fbbf24);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.01em;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

/* Smooth theme transitions for key elements */
header, section, div, nav, footer, 
h1, h2, h3, h4, h5, h6, p, a, span,
.fixed-header, .feature-card, .product-card-premium,
.value-card, .dark-section, .light-bg {
    transition: background-color var(--transition-slow), color var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
}

body.menu-open {
    overflow: hidden;
}

/* Theme Toggle Button - Enhanced */
.theme-toggle {
    position: fixed;
    top: 90px;
    right: clamp(1.25rem, 5vw, 2rem);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0; /* Hide any text/emoji, only show SVG icons */
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    user-select: none;
    background: transparent; /* Will be set by theme-specific rules */
}

/* Adjust position when header is scrolled */
body:has(.fixed-header.scrolled) .theme-toggle {
    top: 85px;
}

/* General SVG Icon Fixes - Improve icon rendering */
svg {
    display: inline-block;
    vertical-align: middle;
    shape-rendering: geometricPrecision;
    overflow: visible;
}

button svg,
a svg,
.btn-primary svg,
.btn-outline svg,
.btn-dark svg,
.btn-light svg {
    pointer-events: none;
    flex-shrink: 0;
}

/* Floating Order Button - Removed */
.floating-order-btn {
    display: none !important;
}

/* Light theme toggle - clean white with subtle shadow */
:root .theme-toggle {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

:root .theme-toggle:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.3), 0 0 0 2px rgba(217, 119, 6, 0.2);
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

/* Dark theme toggle - glowing gold/cyan */
body.dark-theme .theme-toggle {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(14, 165, 233, 0.15));
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5), 
                0 0 60px rgba(14, 165, 233, 0.3),
                0 4px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(251, 191, 36, 0.4);
}

body.dark-theme .theme-toggle:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.8), 
                0 0 100px rgba(14, 165, 233, 0.5),
                0 0 150px rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.4), rgba(14, 165, 233, 0.3));
    border-color: rgba(251, 191, 36, 0.7);
}

.theme-toggle:active {
    transform: scale(0.9) rotate(-15deg);
    transition: all 0.1s ease;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-primary), var(--blue-primary), var(--accent-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.theme-toggle:hover::before {
    opacity: 0.8;
}

.theme-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(15deg) scale(1.1);
}

/* Language Toggle Button */
.language-toggle {
    position: fixed;
    top: 155px;
    right: clamp(1.25rem, 5vw, 2rem);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Adjust position when header is scrolled */
body:has(.fixed-header.scrolled) .language-toggle {
    top: 150px;
}

/* Light theme language toggle */
.language-toggle {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

.language-toggle:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.3), 0 0 0 2px rgba(217, 119, 6, 0.2);
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

/* Dark theme language toggle */
body.dark-theme .language-toggle {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(14, 165, 233, 0.15));
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5), 
                0 0 60px rgba(14, 165, 233, 0.3),
                0 4px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(251, 191, 36, 0.4);
    color: var(--text-primary);
}

body.dark-theme .language-toggle:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.8), 
                0 0 100px rgba(14, 165, 233, 0.5),
                0 0 150px rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.4), rgba(14, 165, 233, 0.3));
    border-color: rgba(251, 191, 36, 0.7);
}

.language-toggle:active {
    transform: scale(0.9) rotate(-5deg);
    transition: all 0.1s ease;
}

.language-toggle-text {
    font-weight: 700;
    font-size: 14px;
}

/* Icon styling - ensure SVG icons are properly styled */
svg {
    vertical-align: middle;
    flex-shrink: 0;
}

/* Slider navigation icons */
.slider-nav svg {
    width: 24px;
    height: 24px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.slider-nav:hover svg {
    transform: scale(1.2);
    transition: transform 0.2s ease;
}

/* Feature icon styling */
.feature-icon svg,
.feature-icon-large svg {
    color: var(--blue-primary);
    transition: transform 0.3s ease, color 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(2, 132, 199, 0.4));
}

.feature-card:hover .feature-icon svg,
.feature-card:hover .feature-icon-large svg {
    transform: scale(1.15) rotate(5deg);
    color: var(--blue-secondary);
    filter: drop-shadow(0 0 16px rgba(14, 165, 233, 0.7));
}

/* Checkmark icons in lists */
.feature-list svg,
.footer-benefits svg,
.exit-benefits svg {
    color: var(--blue-primary);
    filter: drop-shadow(0 0 4px rgba(2, 132, 199, 0.4));
}

/* Star/badge icons */
.hero-badge svg {
    color: var(--blue-secondary);
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
}

.section-badge svg {
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

/* Accessibility - Focus styles */
*:focus {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline-offset: 3px;
}

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

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

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

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

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Utility classes for animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-down {
    animation: slideInDown 0.6s ease-out;
}

/* Enhanced smooth transitions for all interactive elements */
a, button, .nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Link hover effects with underline animation */
.desktop-nav a,
.footer-nav a {
    position: relative;
    overflow: hidden;
}

.desktop-nav a::after,
.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav a:hover::after,
.footer-nav a:hover::after {
    width: 100%;
}

/* Enhanced interactive effects */
a:hover, button:hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button press animation */
button:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Enhanced Interactive card hover effects */
.feature-card, .product-card-premium, .value-card, .product-card-large {
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
    transition: all var(--transition-slower);
    position: relative;
    overflow: hidden;
}

/* Enhanced hover states with 3D tilt effect */
.feature-card:hover,
.product-card-premium:hover,
.value-card:hover,
.product-card-large:hover {
    will-change: transform, box-shadow;
    transform: translateY(-12px) scale(1.02);
}

/* Smooth active states */
.feature-card:active,
.product-card-premium:active,
.value-card:active,
.product-card-large:active {
    transform: translateY(-6px) scale(1.01);
    transition: all var(--transition-fast);
}

/* Card glow on hover */
.feature-card:hover {
    box-shadow: 0 25px 60px rgba(2, 132, 199, 0.25),
                0 0 40px rgba(14, 165, 233, 0.2);
}

body.dark-theme .feature-card:hover {
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.4),
                0 0 60px rgba(59, 130, 246, 0.3);
}

/* Enhanced Ripple effect styling */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 9999;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary .ripple-effect,
.btn-dark .ripple-effect,
.btn-light .ripple-effect {
    background: rgba(255, 255, 255, 0.5);
}

.feature-card .ripple-effect,
.product-card-premium .ripple-effect {
    background: rgba(217, 119, 6, 0.3);
}

/* Custom cursor (optional) */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: opacity 0.3s ease, transform 0.1s ease;
    display: none; /* Hidden by default, can be enabled via JS */
}

@media (hover: hover) and (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

/* Enhanced Interactive image zoom */
.product-image,
.timeline-image img,
.section-image img {
    cursor: zoom-in;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.8s ease;
    will-change: transform;
}

.product-card-premium:hover .product-image,
.section-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.05);
    cursor: zoom-out;
}

/* Image loading state */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
    animation: fadeIn 0.5s ease-out;
}

/* Enhanced Scroll animation classes */
.dark-section,
.section-content {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Split sections don't animate - images should appear immediately */
.split-section {
    opacity: 1;
    transform: none;
}

.feature-card:not(.animate-in) {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Stagger animation support for card groups */
.feature-cards,
.products-grid {
    position: relative;
}

.feature-cards .feature-card,
.products-grid .product-card-premium {
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form input focus states */
.input-focused {
    position: relative;
}

.input-focused label,
.input-focused input::placeholder,
.input-focused textarea::placeholder {
    color: var(--accent-primary);
    transition: color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
    transition: all 0.3s ease;
}

/* Link hover effects */
a:not(.btn-primary):not(.btn-dark):not(.btn-light):not(.product-order-btn):not(.social-icon) {
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

a:not(.btn-primary):not(.btn-dark):not(.btn-light):not(.product-order-btn):not(.social-icon):hover {
    color: var(--accent-primary);
    transform: translateX(3px);
}

/* Feature list items interactive */
.feature-list li {
    transition: all 0.3s ease;
    padding-left: 0;
}

.feature-list li:hover {
    padding-left: 8px;
    color: var(--accent-primary);
}

.feature-list li svg {
    transition: transform 0.3s ease;
}

.feature-list li:hover svg {
    transform: scale(1.2) translateX(2px);
}

/* Enhanced loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: rotate 0.6s linear infinite;
}

/* Modern Typography System with Better Hierarchy */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
    letter-spacing: -0.02em;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    transition: color 0.4s ease;
    letter-spacing: -0.015em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    transition: color 0.4s ease;
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 1rem 0;
    transition: color 0.4s ease;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
    font-weight: 400;
}

/* Modern Spacing System */
:root {
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius System - Consistent Values */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 50px;
    --radius-round: 999px;
    
    /* Transition System - Consistent Timing */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Section Padding - Consistent Values */
    --section-padding-sm: clamp(3rem, 6vw, 4rem);
    --section-padding-md: clamp(4rem, 8vw, 6rem);
    --section-padding-lg: clamp(5rem, 10vw, 8rem);
}

/* Container with Modern Max-Widths */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
    width: 100%;
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--bg-primary);
    box-shadow: 0 2px 10px var(--shadow-light);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-color);
    animation: slideInDown 0.6s ease-out;
}

/* Light theme header */
:root .fixed-header {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08),
                0 1px 0 rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Dark theme header */
body.dark-theme .fixed-header {
    background: linear-gradient(180deg, #0d0d0d 0%, #0a1629 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 
                0 0 40px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    background-color: var(--bg-primary);
    opacity: 0.98;
    height: 70px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light theme scrolled header */
:root .fixed-header.scrolled {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1),
                0 0 20px rgba(0, 0, 0, 0.05);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
}

/* Dark theme scrolled header */
body.dark-theme .fixed-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 
                0 0 50px rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(10, 22, 41, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.fixed-header.scrolled .logo {
    padding: 0.375rem;
}

.fixed-header.scrolled .logo img {
    height: clamp(40px, 4vw, 48px);
    width: clamp(40px, 4vw, 48px);
    aspect-ratio: 1 / 1;
    border-width: 2.5px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2rem);
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001; /* Ensure container is above other content */
    pointer-events: auto; /* Ensure container is interactive */
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem;
    border-radius: 12px;
    background: transparent;
}

.logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.logo img {
    height: clamp(45px, 5vw, 56px);
    width: clamp(45px, 5vw, 56px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    border-radius: 50%;
    border: 3px solid var(--accent-primary);
    padding: 0;
    background: var(--bg-primary);
    box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 2px rgba(255, 255, 255, 0.1);
    display: block;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

/* Light theme logo */
:root .logo img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px rgba(217, 119, 6, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1),
                0 0 12px rgba(217, 119, 6, 0.1),
                inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Dark theme logo */
body.dark-theme .logo img {
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 0 8px rgba(0, 0, 0, 0.2));
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.3),
                0 2px 12px rgba(0, 0, 0, 0.4),
                0 0 16px rgba(251, 191, 36, 0.2),
                inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.logo:hover {
    transform: translateY(-2px) scale(1.05);
}

.logo:hover img {
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
    transform: scale(1.02);
    border-color: var(--orange-secondary);
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.3),
                0 4px 16px rgba(217, 119, 6, 0.3),
                0 0 20px rgba(217, 119, 6, 0.2),
                inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

body.dark-theme .logo:hover img {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5)) 
            drop-shadow(0 0 12px rgba(0, 0, 0, 0.3));
    border-color: var(--orange-secondary);
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.4),
                0 4px 20px rgba(251, 191, 36, 0.4),
                0 0 24px rgba(251, 191, 36, 0.3),
                inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.logo:active {
    transform: translateY(0) scale(1.02);
    transition: all 0.15s ease;
}

/* Desktop Navigation */
.desktop-nav {
    margin-right: 80px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.desktop-nav li a {
    font-size: 16px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.01em;
    transform-origin: center;
}

.desktop-nav li a.active {
    color: #d97706;
    font-weight: 600;
}

body.dark-theme .desktop-nav li a.active {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.desktop-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #d97706;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.desktop-nav li a:hover::after,
.desktop-nav li a:focus::after {
    width: calc(100% - 44px);
}

.desktop-nav li a:hover {
    color: #d97706;
    background-color: rgba(217, 119, 6, 0.12);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.desktop-nav li a:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.desktop-nav li a:focus {
    outline: none;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px; /* Increased padding for better touch target */
    width: 44px; /* Minimum 44px for touch accessibility */
    height: 44px; /* Minimum 44px for touch accessibility */
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(217, 119, 6, 0.2); /* Subtle tap highlight for feedback */
    touch-action: manipulation; /* Optimize touch response - removes 300ms delay */
    position: relative;
    z-index: 1003; /* Ensure button is above header and other elements */
    -webkit-user-select: none; /* Prevent text selection on iOS */
    user-select: none;
    -webkit-touch-callout: none; /* Disable iOS callout menu */
    pointer-events: auto; /* Always allow touch events */
    isolation: isolate; /* Create new stacking context */
}

.hamburger-menu span {
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
    display: block;
}

.hamburger-menu:hover span,
.hamburger-menu:active span {
    background-color: #d97706;
}

.hamburger-menu:active {
    transform: scale(0.95); /* Visual feedback on touch */
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    height: calc(100dvh - 80px); /* Use dynamic viewport height for mobile browsers */
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10002; /* Above header (1000) and theme toggle (1001), below modals (10003) */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    animation: slideInDown 0.3s ease-out;
    overflow-y: auto; /* Allow scrolling if menu is too tall */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    pointer-events: none; /* Disable interaction when hidden */
    -webkit-touch-callout: none; /* Disable iOS callout menu */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.mobile-nav.active {
    display: flex;
    pointer-events: auto; /* Enable interaction when active */
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    height: 100dvh; /* Use dynamic viewport height for mobile browsers */
    /* Prevent iOS Safari bounce effect */
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 30px;
    width: 100%;
    height: 100%;
}

.mobile-nav li a {
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 16px 24px; /* Increased padding for better touch targets (min 44px height) */
    display: block;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px; /* Minimum touch target size */
    -webkit-tap-highlight-color: rgba(217, 119, 6, 0.3); /* Subtle tap highlight */
    touch-action: manipulation; /* Optimize touch response - removes 300ms delay */
    width: 100%;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none; /* Prevent text selection on iOS */
    user-select: none;
    pointer-events: auto; /* Ensure links are clickable */
    -webkit-touch-callout: none; /* Disable iOS callout menu */
    /* Ensure links are always tappable on iOS */
    -webkit-appearance: none;
    appearance: none;
}

.mobile-nav li a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 8px;
    height: 8px;
    background: #d97706;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.mobile-nav li a:hover::before,
.mobile-nav li a:focus::before {
    transform: translateY(-50%) scaleX(1);
}

.mobile-nav li a:hover,
.mobile-nav li a:focus,
.mobile-nav li a:active {
    color: #d97706;
    transform: translateX(20px) scale(1.08);
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 10px rgba(217, 119, 6, 0.5);
    background-color: rgba(217, 119, 6, 0.1); /* Visual feedback on touch */
}

/* Touch feedback for mobile */
@media (hover: none) and (pointer: coarse) {
    .mobile-nav li a:active {
        background-color: rgba(217, 119, 6, 0.2);
        transform: translateX(15px) scale(1.05);
    }
}

/* Hero Section with Parallax */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.3) 0%, rgba(217, 119, 6, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content h2 {
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content .btn-primary {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content h1 {
    color: #ffffff;
}

.hero-content h2 {
    color: #ffffff;
}

/* Dark Hero Section */
.hero-dark {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
}

/* Hero Slideshow */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 600px;
    margin-top: 80px;
    overflow: hidden;
    background: #000;
    border-radius: 0 0 40px 40px;
}

.hero-slider .slides {
    position: absolute;
    inset: 0;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1000ms cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
}

.hero-slider .slide.active {
    transform: scale(1);
}

.hero-slider .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center 30%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%),
                linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(251, 191, 36, 0.15) 50%, rgba(217, 119, 6, 0.1) 100%);
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Slide Content */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active .slide-content {
    opacity: 1;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-shadow: 0 6px 24px rgba(0,0,0,0.7);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.slide-content .text-white {
    color: #ffffff;
}

.slide-content .text-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.slide-content .hero-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}


/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.btn-order-now {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.btn-order-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

/* Hero Statistics Cards */
.hero-stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    max-width: 800px;
    width: calc(100% - 40px);
    z-index: 4;
    padding: 0 20px;
    justify-content: center;
}

.stat-card {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Dark theme stats */
body.dark-theme .stat-value {
    color: #ffffff;
}

body.dark-theme .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

/* Mobile responsive for hero stats */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
        bottom: 80px;
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .slide-content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .slide-content .hero-description {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 1rem;
        bottom: 100px;
    }
    
    .stat-value {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.35);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.slider-nav:hover { 
    background: rgba(0,0,0,0.65);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255,255,255,0.6);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

@media (max-width: 768px) {
    .slider-dots {
        bottom: 160px;
    }
}

@media (max-width: 480px) {
    .slider-dots {
        bottom: 180px;
    }
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dots .dot.active {
    background: #ffffff;
    transform: scale(1.3);
    border-color: rgba(217, 119, 6, 0.8);
}

.slider-dots .dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

body.dark-theme .hero-dark {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 0 50px var(--glow-color);
}

body.light-theme .hero-dark {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-badge svg {
    color: var(--blue-secondary);
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
}

.slider-overlay h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.hero-features {
    list-style: none;
    margin: 30px auto;
    text-align: left;
    max-width: 600px;
}

.hero-features li {
    padding: 10px 0;
    color: #ffffff;
    font-size: 16px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-secondary) 50%, var(--accent-primary) 100%);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 0.813rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4),
                0 0 20px rgba(14, 165, 233, 0.2);
    transition: all var(--transition-base);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(2, 132, 199, 0.5),
                0 0 30px rgba(14, 165, 233, 0.3);
}

.section-badge svg {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

/* Dark Sections - Modern Redesign */
.dark-section {
    width: 100%;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: var(--section-padding-md) 0;
    transition: background-color var(--transition-slow), box-shadow var(--transition-slow);
    position: relative;
}

/* Light theme - light gray background with blue tint */
:root .dark-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 50%, #dbeafe 100%);
    box-shadow: inset 0 0 60px rgba(2, 132, 199, 0.08);
}

/* Dark theme - dark with blue glow effect */
body.dark-theme .dark-section {
    background: linear-gradient(135deg, #0a1629 0%, #1e293b 50%, #1a1a1a 100%);
    box-shadow: 0 0 100px rgba(14, 165, 233, 0.4), 
                0 0 60px rgba(2, 132, 199, 0.3),
                inset 0 0 80px rgba(0, 0, 0, 0.6);
}

.dark-section h2 {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.dark-section h3 {
    color: var(--text-primary);
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.dark-section p {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.light-bg {
    background-color: var(--bg-primary);
    transition: background-color 0.4s ease;
}

/* Light theme - white with subtle blue tint */
:root .light-bg {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

/* Dark theme - slightly lighter than primary */
body.dark-theme .light-bg {
    background-color: #0f0f0f;
    color: var(--text-primary);
}

body.dark-theme .light-bg h1,
body.dark-theme .light-bg h2,
body.dark-theme .light-bg h3,
body.dark-theme .light-bg h4,
body.dark-theme .light-bg h5,
body.dark-theme .light-bg h6 {
    color: var(--text-primary);
}

body.dark-theme .light-bg p,
body.dark-theme .light-bg li,
body.dark-theme .light-bg span:not([class*="highlight"]):not([class*="accent"]):not([class*="badge"]) {
    color: var(--text-secondary);
}

.highlight {
    color: #d97706;
}

.highlight-blue {
    color: #0284c7;
    text-shadow: 0 0 20px rgba(2, 132, 199, 0.3);
}

.highlight-green {
    color: #28a745;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 4rem);
    padding: 0 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    max-width: 700px;
    margin: 1.25rem auto 0;
    line-height: 1.75;
    font-weight: 400;
}

/* Split Section Layout - Enhanced */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: 2rem 0;
}

@media (max-width: 968px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-section .section-image {
        order: -1;
    }
}

.section-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: box-shadow var(--transition-slower);
}

.section-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(251, 191, 36, 0.15) 50%, rgba(217, 119, 6, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.section-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.section-image:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(-8px);
}

.section-image:hover::before,
.section-image:hover::after {
    opacity: 1;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    z-index: 0;
}


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

.section-content {
    max-width: 550px;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin: clamp(2rem, 5vw, 4rem) 0;
}

.feature-card {
    background: var(--bg-primary);
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Light theme card with blue tint */
:root .feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.9) 100%);
    box-shadow: 0 8px 32px rgba(2, 132, 199, 0.12),
                0 0 0 1px rgba(2, 132, 199, 0.05);
}

/* Dark theme card with blue glassmorphism */
body.dark-theme .feature-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 58, 138, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2),
                0 0 0 1px rgba(59, 130, 246, 0.1);
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(224, 242, 254, 0.95) 100%);
    box-shadow: 0 20px 50px rgba(2, 132, 199, 0.2),
                0 0 30px rgba(14, 165, 233, 0.15);
    border-color: var(--blue-primary);
}

body.dark-theme .feature-card:hover {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 58, 138, 0.6) 100%);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4),
                0 0 50px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    animation: pulse 2s ease-in-out infinite;
}

.feature-icon-large {
    font-size: 72px;
    font-weight: bold;
    background: linear-gradient(135deg, #0284c7, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* CTA Section - Premium Redesign */
.cta-section {
    width: 100%;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: var(--section-padding-md) clamp(1.25rem, 5vw, 3rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grain' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='50' cy='50' r='0.5' fill='rgba(255,255,255,0.03)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grain)'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-dark {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-dark:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(217, 119, 6, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #0369a1;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-slow);
    border: 2px solid #0284c7;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--gradient-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.4),
                0 0 20px rgba(251, 191, 36, 0.3);
}

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

/* Focus visibility for all buttons */
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-dark:focus-visible,
.btn-light:focus-visible,
.btn-small:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Product Cards Large */
.product-card-large {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-slow);
    border: 1px solid var(--border-color);
}

.product-card-large:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 20px 50px var(--shadow-light);
}

.product-card-large {
    transition: all var(--transition-slower);
}

body.dark-theme .product-card-large:hover {
    box-shadow: 0 15px 40px var(--glow-color);
}

.product-card-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-large:hover img {
    transform: scale(1.08);
    transition: transform var(--transition-slower);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Buttons Base */
.btn-primary,
.btn-outline,
.btn-small,
.btn-dark,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    height: 56px;
    min-width: 240px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--space-lg);
    padding: 0 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4), 
                0 0 0 0 rgba(217, 119, 6, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.02);
    filter: brightness(1.15);
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.5),
                0 0 40px rgba(251, 191, 36, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
    transition: all 0.1s ease;
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.35), 0 8px 25px rgba(217, 119, 6, 0.45);
}

.btn-outline {
    height: 56px;
    min-width: 200px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    backdrop-filter: blur(10px);
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    margin-top: var(--space-lg);
    padding: 0 2rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-secondary) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.btn-outline span,
.btn-outline svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    transform: translateY(-6px) scale(1.03);
    color: #ffffff;
    border-color: var(--blue-secondary);
    box-shadow: 0 16px 40px rgba(2, 132, 199, 0.4),
                0 0 30px rgba(14, 165, 233, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover::after {
    opacity: 1;
}

.btn-outline:hover svg {
    transform: translateX(4px);
}

.btn-outline:active {
    transform: translateY(-3px) scale(1.01);
    transition: all 0.15s ease;
}

.btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.3),
                0 8px 24px rgba(2, 132, 199, 0.2);
}

.btn-small {
    height: 35px;
    width: 120px;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    font-size: 14px;
    margin: 0 auto;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-small:focus {
    outline: none;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4), 0 0 0 3px rgba(217, 119, 6, 0.2);
}

/* About Section */
.about-section {
    width: 100%;
    background-color: var(--bg-secondary);
    padding: clamp(3rem, 6vw, 4rem) 0;
    transition: background-color 0.4s ease;
}

/* Light theme - light gray background */
:root .about-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 50%, #dbeafe 100%);
}

/* Dark theme - dark with blue tint */
body.dark-theme .about-section {
    background: linear-gradient(135deg, #0a1629 0%, #1e293b 50%, #1a1a1a 100%);
    box-shadow: 0 0 100px rgba(14, 165, 233, 0.2),
                inset 0 0 80px rgba(0, 0, 0, 0.6);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.4s ease;
}

:root .about-image {
    box-shadow: 0 20px 60px rgba(2, 132, 199, 0.15);
}

body.dark-theme .about-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(14, 165, 233, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content h3 {
    color: var(--text-primary);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.75;
    transition: color 0.4s ease;
}

.about-content h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--blue-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.4s ease;
}

/* Light theme headings */
:root .about-content h4 {
    color: var(--blue-primary);
}

/* Dark theme headings */
body.dark-theme .about-content h3 {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
}

body.dark-theme .about-content h4 {
    color: var(--blue-secondary);
    text-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

body.dark-theme .about-content p {
    color: var(--text-secondary);
}

/* Video Ad Section */
.video-ad-section {
    width: 100%;
    padding: var(--section-padding-sm) 0;
    background-color: var(--bg-primary);
    transition: background-color var(--transition-base);
}

body.dark-theme .video-ad-section {
    background-color: var(--bg-secondary);
}

.video-ad-wrapper {
    max-width: 650px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
}

.video-ad-header {
    text-align: center;
    margin-bottom: 30px;
}

.video-ad-header h2 {
    font-size: 42px;
    font-weight: bold;
    color: var(--accent-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

body.dark-theme .video-ad-header h2 {
    color: var(--accent-primary);
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.video-ad-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

body.dark-theme .video-ad-wrapper {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--glow-color);
}

.video-ad-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

body.dark-theme .video-ad-wrapper:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), 0 0 50px var(--glow-color);
}

.video-ad {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Our Journey Section */
.journey-section {
    width: 100%;
    padding: var(--section-padding-lg) 0;
    background-color: var(--bg-primary);
    transition: background-color var(--transition-base);
}

body.dark-theme .journey-section {
    background-color: var(--bg-secondary);
}

.journey-section .timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-left .timeline-content {
    order: 1;
}

.timeline-left .timeline-image {
    order: 2;
}

.timeline-right .timeline-content {
    order: 2;
}

.timeline-right .timeline-image {
    order: 1;
}

.timeline-content {
    padding: 20px;
}

.timeline-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.timeline-badge.blue {
    background: linear-gradient(135deg, #0284c7, #0369a1);
}

.timeline-badge.green {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.timeline-badge.purple {
    background: linear-gradient(135deg, #9333ea, #7e22ce);
}

.timeline-badge.orange {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.timeline-badge.yellow {
    background: linear-gradient(135deg, #fbbf24, #facc15);
}

.timeline-date {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.timeline-subtitle {
    font-size: 18px;
    color: var(--blue-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

body.dark-theme .timeline-subtitle {
    color: var(--blue-primary);
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 15px;
}

.timeline-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.timeline-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

body.dark-theme .timeline-image:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--glow-color);
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.image-year {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: bold;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

body.dark-theme .image-year {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

/* Our Values Section */
.values-section {
    width: 100%;
    padding: var(--section-padding-lg) 0;
    background-color: var(--bg-primary);
    transition: background-color var(--transition-base);
}

body.dark-theme .values-section {
    background-color: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-theme .value-card {
    background-color: var(--bg-dark);
    border-color: var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

body.dark-theme .value-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--glow-color);
}

.value-card.value-blue {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

body.dark-theme .value-card.value-blue {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.15) 0%, rgba(14, 165, 233, 0.25) 100%);
}

.value-card.value-pink {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

body.dark-theme .value-card.value-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.25) 100%);
}

.value-card.value-yellow {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

body.dark-theme .value-card.value-yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(217, 119, 6, 0.25) 100%);
}

.value-card.value-green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

body.dark-theme .value-card.value-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.25) 100%);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #0284c7, #0369a1);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

body.dark-theme .value-icon {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.5);
}

.value-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Our Vision & Mission Section */
.vision-mission-section {
    width: 100%;
    padding: 80px 0;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

body.dark-theme .vision-mission-section {
    background-color: var(--bg-secondary);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.vision-card,
.mission-card {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-theme .vision-card,
body.dark-theme .mission-card {
    background-color: var(--bg-dark);
    border-color: var(--border-color);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

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

body.dark-theme .vision-card:hover,
body.dark-theme .mission-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 30px var(--glow-color);
}

.vision-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.vision-icon.blue {
    background: linear-gradient(135deg, #0284c7, #0369a1);
}

.mission-icon.green {
    background: linear-gradient(135deg, #28a745, #20c997);
}

body.dark-theme .vision-icon,
body.dark-theme .mission-icon {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.vision-card h3,
.mission-card h3 {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.vision-card p,
.mission-card p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Mission Statement CTA Section */
.mission-statement-section {
    width: 100%;
    padding: var(--section-padding-lg) 20px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #0ea5e9 100%);
    text-align: center;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-top: 60px;
}

body.dark-theme .mission-statement-section {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0ea5e9 100%);
    box-shadow: 0 0 60px var(--glow-color);
}

.mission-statement-section h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mission-quote {
    font-size: 20px;
    color: #ffffff;
    font-style: italic;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mission-cta-buttons {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    width: 100%;
}

.mission-cta-buttons .btn-primary,
.mission-cta-buttons .btn-outline {
    height: 56px;
    min-width: 200px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    box-sizing: border-box;
}

.mission-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #facc15, #fbbf24);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

.mission-cta-buttons .btn-outline {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mission-cta-buttons .btn-outline::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.mission-cta-buttons .btn-outline:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Products Section */
.products-section {
    width: 100%;
    background-color: #2a1810;
    padding: 80px 0;
    background: linear-gradient(180deg, #2a1810 0%, #1a1008 100%);
}

/* Dark theme tweaks for Products page */
body.dark-theme .products-section {
    background: linear-gradient(180deg, #1a1008 0%, #0f0804 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Premium Product Cards */
.product-card-premium {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(180deg, #3d2515 0%, #2a1810 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(217, 119, 6, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.product-card-premium:nth-child(1) { animation-delay: 0.1s; }
.product-card-premium:nth-child(2) { animation-delay: 0.2s; }
.product-card-premium:nth-child(3) { animation-delay: 0.3s; }

.product-card-premium {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7), 0 0 0 2px rgba(217, 119, 6, 0.4);
}

/* Product Rating */
.product-rating {
    position: absolute;
    top: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.star-icon {
    color: #fbbf24;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.5));
}

.rating-value {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #b45309 100%);
}

.product-image-container:has(.product-image-front) {
    min-height: 280px;
}

.product-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(217, 119, 6, 0.5) 50%, rgba(180, 83, 9, 0.3) 100%);
    z-index: 1;
}

.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 2;
    padding: 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.product-image-front,
.product-image-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-front {
    opacity: 1;
    z-index: 2;
}

.product-image-back {
    opacity: 0;
    z-index: 3;
}

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

/* View Buttons */
.product-view-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.view-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:first-child {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-btn:first-child.active {
    background-color: #000000;
    border-color: rgba(255, 255, 255, 0.3);
}

.view-btn.back-btn {
    background-color: #d97706;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.view-btn.back-btn:hover {
    background-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.view-btn.back-btn.active {
    background-color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.5);
}

.view-btn.front-btn.active {
    background-color: #000000;
    border-color: rgba(255, 255, 255, 0.3);
}

.view-btn svg {
    width: 14px;
    height: 14px;
}

/* Product Info */
.product-info {
    color: #ffffff;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-style: italic;
}

.product-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #d97706;
    border-radius: 12px;
    background-color: transparent;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.product-tag:hover {
    background-color: rgba(217, 119, 6, 0.2);
    border-color: #fbbf24;
}

/* Product Specs */
.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.spec-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-box.highlight {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(101, 50, 14, 0.4) 100%);
    border-color: rgba(217, 119, 6, 0.3);
}

.spec-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Order Button */
.product-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    border: none;
    cursor: pointer;
}

.product-order-btn:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.7);
    filter: brightness(1.1);
}

.product-order-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.product-order-btn svg {
    width: 20px;
    height: 20px;
}

/* Legacy Product Card (keeping for backwards compatibility) */
.product-card {
    max-width: 300px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-theme .product-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card h4 {
    font-size: 18px;
    margin: 10px 0;
}

.product-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.product-card .btn-small {
    margin-bottom: 20px;
}

/* Page Header */
.page-header {
    width: 100%;
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #ffffff;
    padding: 100px 20px 60px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(217, 119, 6, 0.95) 100%);
    z-index: 0;
}

/* Ensure sustainability header overlay is above background image */
.sustainability-header::before {
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-icon {
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.page-header-icon svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    animation: pulse 2s ease-in-out infinite;
}

/* Contact Page Header with Kenyan Origin Image */
.contact-page-header {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.7) 0%, rgba(251, 191, 36, 0.7) 100%),
                url('assets/kenyan_origin_slideshow-1d710a9f.jpg') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 85vh;
    height: calc(100vh - 80px);
    border-radius: 0 0 40px 40px;
    position: relative;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center 30%, rgba(217, 119, 6, 0.4) 0%, rgba(251, 191, 36, 0.6) 50%, rgba(217, 119, 6, 0.8) 100%);
    z-index: 0;
    animation: gradientShiftContact 15s ease-in-out infinite;
}

.contact-page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(217, 119, 6, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%);
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes gradientShiftContact {
    0%, 100% {
        background: radial-gradient(ellipse at center 30%, rgba(217, 119, 6, 0.4) 0%, rgba(251, 191, 36, 0.6) 50%, rgba(217, 119, 6, 0.8) 100%);
    }
    50% {
        background: radial-gradient(ellipse at center 70%, rgba(251, 191, 36, 0.4) 0%, rgba(217, 119, 6, 0.6) 50%, rgba(180, 83, 9, 0.8) 100%);
    }
}

.contact-page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.contact-page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(2, 132, 199, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-family: 'Playfair Display', serif;
}

.contact-page-header .page-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.7s both;
    font-weight: 400;
    padding: 0 20px;
}

/* Dark theme adjustments for contact header */
body.dark-theme .contact-page-header {
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.75) 0%, rgba(180, 83, 9, 0.75) 100%),
                url('assets/kenyan_origin_slideshow-1d710a9f.jpg') center/cover no-repeat;
    background-attachment: fixed;
    box-shadow: 0 0 80px rgba(2, 132, 199, 0.5);
}

body.dark-theme .contact-page-header::before {
    background: radial-gradient(ellipse at center 30%, rgba(3, 105, 161, 0.6) 0%, rgba(180, 83, 9, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
}

body.dark-theme .contact-page-header::after {
    background: 
        radial-gradient(circle at 20% 50%, rgba(2, 132, 199, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 119, 6, 0.2) 0%, transparent 50%);
}

/* Mobile responsive for contact header */
@media (max-width: 768px) {
    .contact-page-header {
        background-attachment: scroll !important;
        min-height: 70vh;
        height: auto;
        border-radius: 0;
        padding: 80px 20px 60px;
    }

    .contact-page-header h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .contact-page-header .page-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
}

/* About Page Header with Beer Image */
.about-page-header {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.75) 0%, rgba(180, 83, 9, 0.75) 100%),
                url('assets/im-6aeea5ad.jpg') center/cover no-repeat;
    background-attachment: fixed;
    min-height: 85vh;
    height: calc(100vh - 80px);
    border-radius: 0 0 40px 40px;
    position: relative;
}

.about-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center 30%, rgba(217, 119, 6, 0.5) 0%, rgba(180, 83, 9, 0.7) 50%, rgba(120, 53, 15, 0.85) 100%);
    z-index: 0;
    animation: gradientShiftAbout 15s ease-in-out infinite;
}

.about-page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 119, 6, 0.2) 0%, transparent 50%);
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes gradientShiftAbout {
    0%, 100% {
        background: radial-gradient(ellipse at center 30%, rgba(217, 119, 6, 0.5) 0%, rgba(180, 83, 9, 0.7) 50%, rgba(120, 53, 15, 0.85) 100%);
    }
    50% {
        background: radial-gradient(ellipse at center 70%, rgba(180, 83, 9, 0.5) 0%, rgba(217, 119, 6, 0.7) 50%, rgba(154, 52, 18, 0.85) 100%);
    }
}

.about-page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.about-page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(217, 119, 6, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-family: 'Playfair Display', serif;
}

.about-page-header .page-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.7s both;
    font-weight: 400;
    padding: 0 20px;
}

/* Dark theme adjustments for about header */
body.dark-theme .about-page-header {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.75) 0%, rgba(154, 52, 18, 0.75) 100%),
                url('assets/im-6aeea5ad.jpg') center/cover no-repeat;
    background-attachment: fixed;
    box-shadow: 0 0 80px rgba(217, 119, 6, 0.5);
}

body.dark-theme .about-page-header::before {
    background: radial-gradient(ellipse at center 30%, rgba(120, 53, 15, 0.6) 0%, rgba(154, 52, 18, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
}

body.dark-theme .about-page-header::after {
    background: 
        radial-gradient(circle at 20% 50%, rgba(217, 119, 6, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
}

/* Mobile responsive for about header */
@media (max-width: 768px) {
    .about-page-header {
        background-attachment: scroll !important;
        min-height: 70vh;
        height: auto;
        border-radius: 0;
        padding: 80px 20px 60px;
    }

    .about-page-header h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .about-page-header .page-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #ffffff;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Premium Collection Hero Section */
.premium-collection-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    margin-top: 80px;
    overflow: hidden;
    z-index: 0; /* Ensure it's below the header */
    pointer-events: none; /* Don't block touch events to header */
}

.premium-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none; /* Don't block touch events */
}

.premium-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none; /* Don't block touch events */
}


.premium-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.75) 100%),
                linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    pointer-events: none; /* Don't block touch events */
}

.premium-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    pointer-events: auto; /* Allow interaction with content */
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.95), rgba(180, 83, 9, 0.95));
    border: 2px solid rgba(251, 191, 36, 0.6);
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.premium-badge-icon,
.premium-badge-sparkle {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.premium-badge-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.premium-hero-title {
    font-size: clamp(42px, 8vw, 96px);
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.premium-title-line {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.premium-title-our,
.premium-title-collection {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    font-family: 'Georgia', 'Times New Roman', serif;
}

.premium-title-premium {
    color: #fbbf24;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.8)) 
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6))
            drop-shadow(0 6px 12px rgba(217, 119, 6, 0.4));
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
    display: inline-block;
    font-weight: 900;
    letter-spacing: 2px;
}

.premium-title-premium::before {
    content: 'Premium';
    position: absolute;
    top: 3px;
    left: 3px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(1px);
}

.premium-title-premium::after {
    content: 'Premium';
    position: absolute;
    top: -1px;
    left: -1px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.6), rgba(217, 119, 6, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(0.5px);
}

.premium-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.6s both;
}

body.dark-theme .premium-collection-hero {
    background-color: var(--bg-dark);
}

body.dark-theme .premium-hero-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments for premium hero */
@media (max-width: 768px) {
    .premium-collection-hero {
        min-height: 80vh;
        padding: 80px 20px 60px;
    }

    .premium-hero-video {
        object-fit: cover;
        object-position: center;
    }

    .premium-hero-title {
        font-size: clamp(32px, 10vw, 56px);
    }

    .premium-badge {
        padding: 10px 20px;
        font-size: 12px;
    }

    .premium-badge-text {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .premium-hero-description {
        font-size: 16px;
        text-align: center;
    }

    .premium-title-line {
        flex-direction: column;
        gap: 5px;
    }

    .premium-hero-title {
        gap: 10px;
    }
}

/* Quick Overview Section */
.quick-overview {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #F5F5F5;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.overview-card:nth-child(1) { animation-delay: 0.1s; }
.overview-card:nth-child(2) { animation-delay: 0.2s; }
.overview-card:nth-child(3) { animation-delay: 0.3s; }

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.overview-card:focus-within {
    outline: 3px solid rgba(217, 119, 6, 0.3);
}

.overview-card h3 {
    color: #d97706;
    margin-bottom: 15px;
}

.overview-card p {
    color: #4a5568;
    font-size: 14px;
}

/* Info Section */
.info-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    padding: 20px;
}

.info-item h3 {
    color: #d97706;
    margin-bottom: 15px;
}

.info-item p {
    color: #4a5568;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    width: 100%;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: var(--section-padding-md) 0;
    position: relative;
}

body.dark-theme .contact-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
}

/* Contact Wrapper - Two Column Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.contact-form-section:hover {
    box-shadow: 0 15px 50px rgba(217, 119, 6, 0.15);
    transform: translateY(-2px);
}

body.dark-theme .contact-form-section {
    background: var(--bg-dark);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--blue-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3);
}

.contact-form-header h3 {
    font-size: clamp(1.75rem, 3vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
    position: sticky;
    top: 100px;
    align-self: start;
}

.contact-info-section .contact-information {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Quick Order Section */
.quick-order-section {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
    padding: clamp(3rem, 6vw, 4rem) 0;
    position: relative;
    overflow: hidden;
}

.quick-order-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-order-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

body.dark-theme .quick-order-section {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%);
}

.quick-order-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quick-order-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--blue-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.quick-order-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
}

.quick-order-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
}

.quick-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(25, 175, 125, 0.3);
    transition: all 0.3s ease;
}

.quick-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(25, 175, 125, 0.4);
}

.quick-order-btn svg {
    transition: transform 0.3s ease;
}

.quick-order-btn:hover svg {
    transform: scale(1.1);
}

/* Dark theme tweaks for Contact page */
body.dark-theme .contact-section {
    background-color: var(--bg-secondary);
}

body.dark-theme .contact-form input,
body.dark-theme .contact-form textarea,
body.dark-theme .contact-form select {
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

body.dark-theme .contact-form input::placeholder,
body.dark-theme .contact-form textarea::placeholder,
body.dark-theme .contact-form select::placeholder {
    color: var(--text-light);
}

body.dark-theme .contact-form input:focus,
body.dark-theme .contact-form textarea:focus,
body.dark-theme .contact-form select:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.contact-content {
    max-width: 100%;
}

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

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

.contact-form .form-group .submission-method-toggle {
    margin: 0;
}

.contact-form .form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.938rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.contact-form .form-group .required {
    color: #dc2626;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 16px; /* Prevent iOS zoom on focus - must be at least 16px */
    transition: all var(--transition-base);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2), 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
    border-color: var(--accent-primary);
}

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

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

body.dark-theme .contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.contact-form button {
    margin-top: 0.5rem;
}

/* Contact Information Section */
.contact-information {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--blue-primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.2);
    border-color: var(--accent-primary);
}

.contact-info-card:hover::before {
    opacity: 1;
}

body.dark-theme .contact-info-card {
    background: var(--bg-dark);
    border-color: var(--border-color);
}

body.dark-theme .contact-info-card:hover {
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--orange-secondary) 100%);
    color: white;
    transform: scale(1.1);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-info-value a {
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: var(--accent-primary) !important;
    text-decoration: underline !important;
}

.contact-info-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

/* Response Time Section */
.response-time-section {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

body.dark-theme .response-time-section {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
}

.response-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.response-time-item {
    text-align: center;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.response-time-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.15);
    border-color: var(--accent-primary);
}

body.dark-theme .response-time-item {
    background: var(--bg-dark);
}

.response-time-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.response-time-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-primary);
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        position: static;
        top: auto;
    }
    
    .contact-info-section .contact-information {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .response-time-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-information {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .page-header {
        padding: 60px 20px 40px;
    }
    
    .quick-order-section {
        padding: 2rem 0;
    }
}

/* Footer - Premium Redesign */
.footer {
    width: 100%;
    background: linear-gradient(135deg, #0284c7 0%, #b45309 30%, #d97706 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer::after {
    content: 'URBAN BREWERIES';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 0;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transform: rotate(-5deg);
    user-select: none;
}

/* Upper Footer Section */
.footer-upper {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 2rem);
    position: relative;
    z-index: 2;
}

.footer-upper-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-column {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.footer-column:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0ea5e9, #fbbf24);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-brand:hover .footer-logo {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.footer-brand h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #fff;
}

.footer-tagline-small {
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fff;
    opacity: 0.95;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.25);
}

.social-icon:active {
    transform: translateY(-3px) scale(1.08);
    transition: all 0.1s ease;
}

/* Footer Navigation */
.footer-nav {
    list-style: none;
    padding: 0;
}

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

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    opacity: 0.9;
}

.footer-nav a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    color: #fff;
}

.footer-contact-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.9;
    margin: 3px 0;
}

.footer-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

/* Quick Actions */
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-action-btn {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-action-btn svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.footer-action-btn.green {
    background: rgba(40, 167, 69, 0.3);
}

.footer-action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Lower Footer Section */
.footer-lower {
    padding: clamp(3rem, 6vw, 4rem) clamp(1.25rem, 5vw, 2rem);
    background: rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.footer-lower-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.footer-lower-left,
.footer-lower-right {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.footer-lower-left:hover,
.footer-lower-right:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.footer-newsletter {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-newsletter input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 16px; /* Prevent iOS zoom on focus - must be at least 16px */
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-subscribe-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-note {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
    margin-top: 15px;
}

.footer-benefits {
    list-style: none;
    padding: 0;
}

.footer-benefits li {
    color: #fff;
    font-size: 15px;
    padding: 12px 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-benefits li:last-child {
    border-bottom: none;
}

.footer-bottom {
    background-color: rgba(180, 83, 9, 0.95);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 20px;
    align-items: center;
}

.footer-bottom-left p {
    font-size: 13px;
    color: #ffffff;
    margin-bottom: 5px;
}

.footer-tagline {
    opacity: 0.9;
}

.footer-creators {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-style: italic;
    transition: opacity 0.3s ease;
}

.footer-creators:hover {
    opacity: 1;
}

.footer-bottom-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-middle a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s ease;
}

.footer-bottom-middle a:hover {
    opacity: 0.8;
}

.footer-bottom-middle span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom-right p {
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 5px;
}

/* Sustainability Page Styles */
.sustainability-header {
    position: relative;
    width: 100%;
    min-height: 85vh;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.7) 0%, rgba(32, 201, 151, 0.7) 100%),
                url('brewery-hero-e12adfca.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: 80px;
    border-radius: 0 0 40px 40px;
}

.sustainability-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center 30%, rgba(40, 167, 69, 0.4) 0%, rgba(32, 201, 151, 0.6) 50%, rgba(13, 40, 24, 0.8) 100%);
    z-index: 0;
    animation: gradientShift 15s ease-in-out infinite;
}

.sustainability-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(40, 167, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 201, 151, 0.15) 0%, transparent 50%);
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: radial-gradient(ellipse at center 30%, rgba(40, 167, 69, 0.4) 0%, rgba(32, 201, 151, 0.6) 50%, rgba(13, 40, 24, 0.8) 100%);
    }
    50% {
        background: radial-gradient(ellipse at center 70%, rgba(32, 201, 151, 0.4) 0%, rgba(40, 167, 69, 0.6) 50%, rgba(26, 74, 58, 0.8) 100%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

body.dark-theme .sustainability-header {
    background: linear-gradient(135deg, rgba(13, 40, 24, 0.75) 0%, rgba(26, 74, 58, 0.75) 100%),
                url('brewery-hero-e12adfca.jpg') center/cover no-repeat;
    background-attachment: fixed;
    box-shadow: 0 0 80px rgba(40, 167, 69, 0.5);
}

body.dark-theme .sustainability-header::before {
    background: radial-gradient(ellipse at center 30%, rgba(13, 40, 24, 0.6) 0%, rgba(26, 74, 58, 0.7) 50%, rgba(0, 0, 0, 0.9) 100%);
}

body.dark-theme .sustainability-header::after {
    background: 
        radial-gradient(circle at 20% 50%, rgba(40, 167, 69, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 201, 151, 0.2) 0%, transparent 50%);
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    transition: all 0.3s ease;
}

.page-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.sustainability-header .page-badge {
    animation: fadeInDown 0.8s ease-out 0.2s both, pulse 3s ease-in-out infinite 1s;
}

.sustainability-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Flip Cards Grid */
.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .flip-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Flip Card Container */
.flip-card-container {
    perspective: 1000px;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.flip-card.flipped {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-card-back {
    transform: rotateY(180deg);
    background: var(--bg-primary);
}

/* Light theme flip cards */
:root .flip-card-front,
:root .flip-card-back {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.9) 100%);
    box-shadow: 0 8px 32px rgba(2, 132, 199, 0.12),
                0 0 0 1px rgba(2, 132, 199, 0.05);
}

/* Dark theme flip cards */
body.dark-theme .flip-card-front,
body.dark-theme .flip-card-back {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 58, 138, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.2),
                0 0 0 1px rgba(59, 130, 246, 0.1);
}

.flip-card:hover .flip-card-front,
.flip-card:hover .flip-card-back {
    box-shadow: 0 20px 50px rgba(2, 132, 199, 0.2),
                0 0 30px rgba(14, 165, 233, 0.15);
}

.flip-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.flip-card-icon svg {
    width: 48px;
    height: 48px;
    color: white;
}

.flip-card h3 {
    color: var(--text-primary);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.flip-card-front p,
.flip-card-back p {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 2vw, 1rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.flip-card-back li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.flip-card-back li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

.flip-card-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

body.dark-theme .flip-card-badge {
    background: rgba(16, 185, 129, 0.2);
}

.flip-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.flip-hint svg {
    width: 14px;
    height: 14px;
}

.highlight-orange {
    color: #f97316;
    font-weight: 700;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.sustainability-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(40, 167, 69, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.5s both;
    font-family: 'Playfair Display', serif;
}

.sustainability-header .page-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.7s both;
    font-weight: 400;
    padding: 0 20px;
}

/* Decorative elements for sustainability header */
.sustainability-header .container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: expand 2s ease-out infinite;
}

.sustainability-header .container::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: expand 2s ease-out infinite 0.5s;
}

@keyframes expand {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translateX(-50%) scale(1.3);
        opacity: 0;
    }
}

/* ============================================
   SUSTAINABILITY PAGE STYLES
   ============================================ */

.sustainability-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

/* Commitment Cards - Modern Redesign */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.commitment-card-inner {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.commitment-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.commitment-card:hover .commitment-card-inner {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.25);
    border-color: #28a745;
}

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

body.dark-theme .commitment-card-inner {
    background: var(--bg-secondary);
    border-color: rgba(40, 167, 69, 0.2);
}

body.dark-theme .commitment-card:hover .commitment-card-inner {
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.4);
    border-color: #28a745;
}

.commitment-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.commitment-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(32, 201, 151, 0.1));
    border-radius: 50%;
    transform: scale(0.8);
    transition: transform 0.5s ease;
}

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

.commitment-card:hover .commitment-icon-bg {
    transform: scale(1.2);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2), rgba(32, 201, 151, 0.2));
}

.commitment-card-inner h3 {
    color: var(--text-primary);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.commitment-card-inner p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: center;
}

.commitment-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.stat-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.25rem;
    color: #28a745;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

body.dark-theme .stat-item strong {
    color: #20c997;
    text-shadow: 0 0 10px rgba(32, 201, 151, 0.5);
}

/* Initiatives Section - Modern Timeline Design */
.initiatives-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

/* Note: This uses .dark-section class for consistent styling */

.initiatives-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.initiatives-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #28a745, #20c997);
    opacity: 0.3;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .initiatives-timeline::before {
        left: 3rem;
    }
}

.initiative-item {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.initiative-item:nth-child(1) { animation-delay: 0.1s; }
.initiative-item:nth-child(2) { animation-delay: 0.2s; }
.initiative-item:nth-child(3) { animation-delay: 0.3s; }
.initiative-item:nth-child(4) { animation-delay: 0.4s; }

.initiative-number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
    position: relative;
    z-index: 2;
}

body.dark-theme .initiative-number {
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.6);
}

.initiative-content {
    flex: 1;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.initiative-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #28a745, #20c997);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.initiative-item:hover .initiative-content {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.2);
    border-color: #28a745;
}

.initiative-item:hover .initiative-content::before {
    transform: scaleY(1);
}

body.dark-theme .initiative-content {
    background: var(--bg-primary);
    border-color: rgba(40, 167, 69, 0.2);
}

body.dark-theme .initiative-item:hover .initiative-content {
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.4);
}

.initiative-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.initiative-content h3 {
    color: var(--text-primary);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.initiative-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.initiative-progress {
    margin-top: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 10px;
    transition: width 1s ease-out;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.progress-text {
    font-size: 0.875rem;
    color: #28a745;
    font-weight: 600;
}

body.dark-theme .progress-text {
    color: #20c997;
}

/* Impact Section - Modern Redesign with Animated Counters */
.impact-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.impact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(40, 167, 69, 0.3);
    border-color: #28a745;
}

body.dark-theme .impact-card {
    background: var(--bg-secondary);
    border-color: rgba(40, 167, 69, 0.2);
}

body.dark-theme .impact-card:hover {
    box-shadow: 0 25px 60px rgba(40, 167, 69, 0.5);
}

.impact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.impact-card:hover .impact-icon {
    transform: scale(1.2) rotate(5deg);
}

.impact-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
    transition: all 0.5s ease;
}

body.dark-theme .impact-number {
    background: linear-gradient(135deg, #20c997, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(32, 201, 151, 0.5);
}

.impact-card:hover .impact-number {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(40, 167, 69, 0.6));
}

.impact-label {
    color: var(--text-primary);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.impact-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.sustainability-cta {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

body.dark-theme .sustainability-cta {
    background: linear-gradient(135deg, #0d2818 0%, #1a4a3a 100%);
    box-shadow: 0 0 80px rgba(40, 167, 69, 0.6);
}

/* Responsive Design - Mobile (max-width 768px) */
@media (max-width: 768px) {
    /* Logo adjustments for mobile */
    .logo {
        padding: 0.375rem;
    }
    
    .logo img {
        height: clamp(40px, 8vw, 48px);
        width: clamp(40px, 8vw, 48px);
        aspect-ratio: 1 / 1;
        padding: 0;
    }
    
    .fixed-header.scrolled .logo img {
        height: clamp(38px, 7vw, 44px);
        width: clamp(38px, 7vw, 44px);
        aspect-ratio: 1 / 1;
    }

    /* Typography adjustments */
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    /* Disable parallax on mobile for better performance */
    .hero {
        background-attachment: scroll;
    }

    /* Disable fixed background on mobile for sustainability header */
    .sustainability-header {
        background-attachment: scroll !important;
        min-height: 70vh;
        height: auto;
        border-radius: 0;
        padding: 80px 20px 60px;
    }

    .sustainability-header h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .sustainability-header .page-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    /* Mobile adjustments for sustainability sections */
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .initiatives-timeline::before {
        left: 1.5rem;
    }
    
    .initiative-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .initiative-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .commitment-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .page-badge {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 20px;
    }

    /* Hide desktop nav */
    .desktop-nav {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
        margin-left: auto; /* Ensure it's on the right side */
    }

    /* Ensure header container has proper spacing */
    .header-container {
        padding: 0 1rem; /* Adequate padding for mobile */
    }

    /* Mobile menu improvements */
    .mobile-nav {
        top: 80px; /* Match header height */
    }

    .mobile-nav li a {
        font-size: 20px; /* Slightly smaller for very small screens */
        padding: 14px 20px; /* Maintain good touch target */
    }

    /* Page header adjustments */
    .page-header {
        padding: 60px 20px 40px;
    }
}

/* Very small screens (480px and below) */
@media (max-width: 480px) {
    .mobile-nav li a {
        font-size: 18px; /* Smaller font for very small screens */
        padding: 12px 16px; /* Maintain good touch target */
    }

    .hamburger-menu {
        width: 40px; /* Slightly smaller but still accessible */
        height: 40px;
        padding: 8px;
    }

    .header-container {
        padding: 0 0.75rem; /* Tighter padding on very small screens */
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    /* Single column layout */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Video Ad Section Mobile */
    .video-ad-section {
        padding: 40px 0;
    }

    .video-ad-header h2 {
        font-size: 32px;
    }

    .video-ad-header p {
        font-size: 16px;
        padding: 0 20px;
    }

    .video-ad-wrapper {
        margin: 0 20px;
        border-radius: 12px;
    }

    /* Our Journey Section Mobile */
    .journey-section {
        padding: 40px 0;
    }

    .journey-section .timeline {
        gap: 40px;
        margin-top: 40px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-left .timeline-content,
    .timeline-left .timeline-image,
    .timeline-right .timeline-content,
    .timeline-right .timeline-image {
        order: unset;
    }

    .timeline-content h3 {
        font-size: 24px;
    }

    .timeline-subtitle {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 15px;
    }

    /* Our Values Section Mobile */
    .values-section {
        padding: 40px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .value-card h3 {
        font-size: 20px;
    }

    .value-card p {
        font-size: 15px;
    }

    /* Our Vision & Mission Section Mobile */
    .vision-mission-section {
        padding: 40px 0;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .vision-card,
    .mission-card {
        padding: 35px 25px;
    }

    .vision-icon,
    .mission-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .vision-card h3,
    .mission-card h3 {
        font-size: 24px;
    }

    .vision-card p,
    .mission-card p {
        font-size: 16px;
    }

    .mission-statement-section {
        padding: 50px 20px;
        border-radius: 16px 16px 0 0;
    }

    .mission-statement-section h2 {
        font-size: 28px;
    }

    .mission-quote {
        font-size: 18px;
    }

    .mission-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mission-cta-buttons .btn-primary,
    .mission-cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .product-card-premium {
        max-width: 100%;
        padding: 15px;
    }

    .product-rating {
        top: 20px;
        left: 20px;
    }

    .product-image-container {
        height: 240px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .spec-box {
        padding: 10px 6px;
    }

    .spec-value {
        font-size: 16px;
    }

    .product-tags {
        gap: 6px;
    }

    .product-tag {
        font-size: 10px;
        padding: 3px 10px;
    }

    .product-card {
        max-width: 100%;
    }

    .contact-form button {
        width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    /* Overview grid */
    .overview-grid {
        grid-template-columns: 1fr;
    }

    /* Info grid */
    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Dark sections mobile */
    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dark-section h2 {
        font-size: 32px;
    }

    .dark-section h3 {
        font-size: 24px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card-large img {
        height: 250px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-dark,
    .btn-light {
        width: 100%;
    }

    .hero-dark {
        padding: 60px 20px 40px;
    }

    /* Newsletter section mobile */
    .newsletter-panels {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

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

    /* Watermark adjustments for mobile */
    .footer::after {
        font-size: clamp(2rem, 12vw, 4rem);
        bottom: 10px;
        right: 10px;
        transform: rotate(-3deg);
    }

    .footer-bottom-right {
        text-align: center;
    }

    /* New Footer Responsive Styles */
    .footer-upper-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-lower-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-actions {
        flex-direction: column;
    }

    .footer-action-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-newsletter {
        flex-direction: column;
    }

    .footer-newsletter input,
    .footer-subscribe-btn {
        width: 100%;
    }
}

/* Order Modal */
/* Age Verification Modal */
#age-verification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#age-verification-modal.show {
    opacity: 1;
}

.age-verification-content {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#age-verification-modal.show .age-verification-content {
    transform: scale(1);
}

.age-verification-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.age-verification-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.age-verification-message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-verification-form {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.age-verification-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: left;
}

.age-verification-input {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.age-verification-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.age-verification-input.error-shake {
    animation: shake 0.5s;
    border-color: #ef4444;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.age-verification-error {
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 1.5rem;
    text-align: center;
}

.age-verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-verify-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    text-transform: none;
    width: 100%;
}

.age-verify-confirm {
    background: var(--accent-primary);
    color: white;
}

.age-verify-confirm:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
}

.age-verify-deny {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.age-verify-deny:hover {
    background: var(--bg-dark);
    transform: translateY(-2px);
}

.age-verification-sorry {
    display: none;
}

.age-verification-sorry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Dark theme adjustments */
body.dark-theme #age-verification-modal {
    background: rgba(0, 0, 0, 0.98);
}

body.dark-theme .age-verification-content {
    background: var(--bg-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

body.dark-theme .age-verify-deny {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .age-verification-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .age-verification-title {
        font-size: 1.5rem;
    }

    .age-verification-message {
        font-size: 1rem;
    }

    .age-verification-form {
        max-width: 100%;
    }

    .age-verify-btn {
        width: 100%;
        min-width: auto;
    }

    .age-verification-input {
        font-size: 1rem;
    }
}

.order-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 10003; /* Above mobile menu (10002) and header (1000) */
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.order-modal-overlay.active,
.order-modal-overlay[style*="flex"] {
    display: flex;
}

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

.order-modal-content {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    max-height: calc(100dvh - 40px); /* Use dynamic viewport height for mobile */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
    border: 1px solid var(--border-color);
    margin: auto;
}

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

.order-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 44px; /* Minimum touch target size */
    height: 44px; /* Minimum touch target size */
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    touch-action: manipulation;
    z-index: 1;
}

.order-modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.order-modal-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.order-modal-product {
    font-size: 1.125rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

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

.order-form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.938rem;
}

.order-form-group input,
.order-form-group textarea,
.order-form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 16px; /* Prevent iOS zoom on focus - must be at least 16px */
    font-family: inherit;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.order-form-group input:focus,
.order-form-group textarea:focus,
.order-form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
    transform: translateY(-1px);
}

/* Enhanced Select Dropdown Styling */
.order-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23d97706' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    background-size: 18px 18px;
}

.order-form-group select:hover {
    border-color: var(--accent-primary);
    background-color: var(--bg-primary);
}

.order-form-group select option {
    padding: 0.75rem 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
}

.order-form-group select option:checked,
.order-form-group select option:focus {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #fbbf24 100%);
    color: white;
}

/* County Select Specific Styling */
.order-form-group select[name="location"] {
    font-weight: 500;
}

.order-form-group select[name="location"]:not(:valid) {
    color: var(--text-secondary);
}

.order-form-group select[name="location"]:valid {
    color: var(--text-primary);
}

/* Dark theme select adjustments */
body.dark-theme .order-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

body.dark-theme .order-form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

body.dark-theme .order-form-group select option:checked,
body.dark-theme .order-form-group select option:focus {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #fbbf24 100%);
    color: #1a1a1a;
}

.order-form-group input[readonly] {
    background: var(--bg-dark);
    cursor: not-allowed;
    opacity: 0.7;
}

/* County Select Wrapper */
.county-select-wrapper {
    position: relative;
}

.county-select-wrapper label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.county-select-wrapper label svg {
    color: var(--accent-primary);
    transition: transform 0.3s ease;
}

.county-select-wrapper select:focus ~ label svg,
.county-select-wrapper:has(select:valid) label svg {
    transform: scale(1.1);
    color: var(--accent-secondary);
}

/* Submission Method Toggle */
.submission-method-toggle {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 1rem 0;
}

.newsletter-toggle {
    margin-bottom: 1rem;
}

.method-btn {
    flex: 1;
    max-width: 200px;
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.method-btn:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.method-btn.active {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #fbbf24 100%);
    border-color: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
}

.method-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
}

.method-btn svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.method-btn.active svg {
    transform: scale(1.1);
}

/* Dark theme for method buttons */
body.dark-theme .method-btn {
    background: var(--bg-dark);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

body.dark-theme .method-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--blue-secondary);
}

body.dark-theme .method-btn.active {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #fbbf24 100%);
    border-color: var(--accent-primary);
    color: white;
}

/* Product Order Button - Update to work as button */
.product-order-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #fbbf24 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.product-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.5);
    background: linear-gradient(135deg, #fbbf24 0%, var(--accent-primary) 100%);
}

.product-order-btn:active {
    transform: translateY(0);
}

.product-order-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
    display: block;
    flex-shrink: 0;
}

/* Responsive adjustments for order modal */
@media (max-width: 768px) {
    .order-modal-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .order-modal-content {
        padding: 1.5rem;
        max-height: calc(100dvh - 20px);
        margin: 0;
        border-radius: 16px;
    }
    
    .order-modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .order-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 44px;
        height: 44px;
        font-size: 1.75rem;
    }
    
    .submission-method-toggle {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .method-btn {
        max-width: 100%;
        min-height: 44px; /* Touch target size */
    }
    
    .order-form-group input,
    .order-form-group textarea,
    .order-form-group select {
        font-size: 16px; /* Ensure no zoom on iOS */
        padding: 1rem;
    }
    
    /* Prevent body scroll when modal is open on mobile */
    body:has(.order-modal-overlay.active) {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

/* Desktop Grid (min-width 1024px) */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

/* Medium screens (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

