/*
Theme Name: CB Automobile
Description: A custom WordPress theme for CB Automobile dealership featuring a dynamic hero section with video background and animated logo spotlight effect.
Author: CB Automobile
Version: 1.1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cb-automobile
*/

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* Color Palette Variables */
:root {
    --primary-bg: #0a0a0a;
    --primary-green: #00E676;
    --primary-green-dark: #00C853;
    --primary-green-light: #00FF88;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
}

/* Light Mode Color Overrides */
body.light-mode {
    --primary-bg: #ffffff;
    --primary-green: #000000;
    --primary-green-dark: #1a1a1a;
    --primary-green-light: #333333;
    --text-white: #000000;
    --text-light: #333333;
    --text-muted: #666666;
    --card-bg: #f5f5f5;
    --border-color: #e0e0e0;
}

/* Light Mode Base Background Overrides (prevent black flashes) */
body.light-mode {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Tone down global background overlay in light mode */
body.light-mode::before {
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.015) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    opacity: 1;
}

/* Ensure all major sections are solid white in light mode */
body.light-mode .hero-section,
body.light-mode .custom-import-section,
body.light-mode .import-service-section,
body.light-mode .import-header-section,
body.light-mode .usps-section,
body.light-mode .inventory-section,
body.light-mode .inspection-section,
body.light-mode .financing-section,
body.light-mode .transportation-section,
body.light-mode .eshop-gallery-section,
body.light-mode .contact-section {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Theme transitions are scoped to explicit theme toggles only */
body.theme-transition,
body.theme-transition .hero-section,
body.theme-transition .eshop-gallery-section,
body.theme-transition .usps-section,
body.theme-transition .import-service-section,
body.theme-transition .import-header-section,
body.theme-transition .inventory-section,
body.theme-transition .inspection-section,
body.theme-transition .financing-section,
body.theme-transition .transportation-section,
body.theme-transition .contact-section,
body.theme-transition .site-footer,
body.theme-transition .menu-overlay,
body.theme-transition .language-toggle,
body.theme-transition .menu-toggle,
body.theme-transition .theme-toggle,
body.theme-transition .menu-link,
body.theme-transition .product-card,
body.theme-transition .vehicle-card,
body.theme-transition .vehicle-details-btn,
body.theme-transition .buy-btn,
body.theme-transition .filter-btn,
body.theme-transition .gallery-item,
body.theme-transition .eshop-cta-btn,
body.theme-transition .lightbox-overlay,
body.theme-transition .lightbox-image,
body.theme-transition .lightbox-close,
body.theme-transition .usp-card,
body.theme-transition .feature-card,
body.theme-transition .transport-card,
body.theme-transition .contact-card {
    transition: background-color 0.22s ease-out,
                color 0.22s ease-out,
                border-color 0.22s ease-out;
}

/* Pseudo-elements used for overlays/gradients */
body.theme-transition .hero-section::before,
body.theme-transition .hero-section::after,
body.theme-transition .eshop-gallery-section::before,
body.theme-transition .gallery-wrapper::before,
body.theme-transition .gallery-wrapper::after,
body.theme-transition .site-footer::before {
    transition: background 0.22s ease-out, opacity 0.22s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    body.theme-transition,
    body.theme-transition *,
    body.theme-transition *::before,
    body.theme-transition *::after {
        transition: none !important;
    }
}



/* Light Mode Specific Adjustments */
body.light-mode .particle {
    background: #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

body.light-mode .back-to-top {
    background: #000000;
    border: 2px solid #000000;
}

body.light-mode .back-to-top svg {
    color: #ffffff;
}

body.light-mode .back-to-top:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

body.light-mode .hero-section::after {
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
}

body.light-mode .menu-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
}

body.light-mode .menu-overlay::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
}

body.light-mode .language-toggle,
body.light-mode .menu-toggle,
body.light-mode .theme-toggle {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Home Hero polish for top-left/right controls in light mode */
body.home-page.light-mode .language-toggle,
body.home-page.light-mode .menu-toggle,
body.home-page.light-mode .theme-toggle {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 246, 246, 0.96) 100%);
    border: 1.5px solid rgba(0, 0, 0, 0.16);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 1px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px) saturate(135%);
}

body.light-mode .language-toggle:hover,
body.light-mode .menu-toggle:hover,
body.light-mode .theme-toggle:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

body.home-page.light-mode .language-toggle:hover,
body.home-page.light-mode .menu-toggle:hover,
body.home-page.light-mode .theme-toggle:hover {
    border-color: rgba(0, 0, 0, 0.32);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 1px rgba(0, 0, 0, 0.08);
}

body.light-mode .menu-toggle-bar {
    background: #000000;
}

body.light-mode .language-flag {
    color: #000000;
}

body.home-page.light-mode .menu-toggle-bar {
    background: #111111;
}

body.home-page.light-mode .theme-icon,
body.home-page.light-mode .language-flag {
    color: #111111;
}

/* Home Hero polish for top-left/right controls in dark mode */
body.home-page.dark-mode .language-toggle,
body.home-page.dark-mode .menu-toggle,
body.home-page.dark-mode .theme-toggle {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.9) 0%, rgba(10, 10, 10, 0.82) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px) saturate(135%);
}

body.home-page.dark-mode .language-toggle:hover,
body.home-page.dark-mode .menu-toggle:hover,
body.home-page.dark-mode .theme-toggle:hover {
    border-color: rgba(255, 255, 255, 0.46);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

body.home-page.dark-mode .menu-toggle-bar {
    background: #ffffff;
}

body.home-page.dark-mode .theme-icon,
body.home-page.dark-mode .language-flag {
    color: #ffffff;
}

body.light-mode .menu-link {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--border-color);
    color: #000000;
}

body.light-mode .menu-link:hover {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

body.light-mode .menu-link.active {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body.light-mode .menu-contact-link {
    background: rgba(0, 0, 0, 0.08);
    border: 2px solid #000000;
    color: #000000;
}

body.light-mode .menu-contact-link:hover {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.light-mode .site-footer {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

/* Light Mode - Shop Page Styles */
body.light-mode .shop-page {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e8e8e8 100%);
}

body.light-mode .shop-header {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .shop-title,
body.light-mode .shop-subtitle {
    color: #000000;
}

body.light-mode .filter-title {
    color: #000000;
}

body.light-mode .filter-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid #e0e0e0;
    color: #000000;
}

body.light-mode .filter-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body.light-mode .filter-btn.active {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

body.light-mode .product-card {
    background: #ffffff;
    border-color: #e0e0e0;
}

body.light-mode .product-card:hover {
    border-color: #000000;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

body.light-mode .product-name,
body.light-mode .product-manufacturer,
body.light-mode .product-price {
    color: #000000;
}

body.light-mode .product-manufacturer {
    color: #666666;
}

body.light-mode .buy-btn {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

body.light-mode .buy-btn:hover {
    background: #1a1a1a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

body.light-mode .lightbox-overlay {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .lightbox-image {
    border: 3px solid #000000;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

body.light-mode .lightbox-close {
    background: #000000;
    color: #ffffff;
}

body.light-mode .lightbox-close:hover {
    background: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 230, 118, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 230, 118, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 200, 83, 0.02) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   DYNAMIC BACKGROUND EFFECTS
   ============================================ */

/* Particles Container */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Individual Particles */
.particle {
    position: absolute;
    background: var(--primary-green);
    border-radius: 50%;
    animation: particleFloat 20s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, -100px) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50px, -200px) scale(0.8);
        opacity: 0.2;
    }
    75% {
        transform: translate(-100px, -100px) scale(1.1);
        opacity: 0.4;
    }
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.05) 0%, transparent 70%);
    animation: shapeFloat 25s infinite ease-in-out;
    filter: blur(40px);
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -100px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, 50px) rotate(240deg);
    }
}

/* Section Gradient Overlay */
.section-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 230, 118, 0.02) 0%,
        transparent 50%,
        rgba(0, 200, 83, 0.02) 100%
    );
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(20px);
    }
}

/* Section Animation */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Shimmer Effect */
.button-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 0.6s ease;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Menu Ripple Effect */
.menu-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.3);
    width: 0;
    height: 0;
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        margin-left: -150px;
        margin-top: -150px;
        opacity: 0;
    }
}

/* Badge Pulse Animation */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(0, 230, 118, 0.2);
    }
}

/* Enhanced Card Hover Effects */
.usp-card,
.feature-card,
.transport-card,
.vehicle-card,
.contact-card {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 2;
}

/* Scrolled Header Effect */
.main-navigation.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 230, 118, 0.1);
}

/* Navigation Menu */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Language Toggle Button */
.language-toggle {
    position: fixed;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
}

.language-flag {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.language-toggle:hover .language-flag {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Menu Toggle Button */
.menu-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
}

.menu-toggle-bar {
    width: 30px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 30px;
    left: 110px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
}

.theme-icon {
    width: 24px;
    height: 24px;
    color: var(--text-white);
    stroke-width: 2;
    transition: color 0.3s ease, transform 0.3s ease;
}

.theme-icon-moon {
    display: none;
}

body.light-mode .theme-icon {
    color: #000000;
}

body.light-mode .theme-icon-sun {
    display: none;
}

body.light-mode .theme-icon-moon {
    display: block;
}

body.dark-mode .theme-icon-sun {
    display: block;
}

body.dark-mode .theme-icon-moon {
    display: none;
}

/* Right-Side Slide-Out Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    z-index: 9998;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    transform: translateX(100%);
    visibility: visible;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.menu-overlay.active {
    transform: translateX(0);
}

/* Animated Background Pattern */
.menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 230, 118, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 230, 118, 0.05) 0%, transparent 50%);
    animation: menu-bg-pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes menu-bg-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Menu Content */
.menu-content {
    position: relative;
    width: 100%;
    padding: 120px 30px 40px 30px;
    margin: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Menu List */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    counter-reset: menu-counter;
}

/* Menu Items */
.menu-item {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    counter-increment: menu-counter;
}

.menu-overlay.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

.menu-overlay.active .menu-item:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay.active .menu-item:nth-child(2) { transition-delay: 0.1s; }
.menu-overlay.active .menu-item:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay.active .menu-item:nth-child(4) { transition-delay: 0.2s; }
.menu-overlay.active .menu-item:nth-child(5) { transition-delay: 0.25s; }
.menu-overlay.active .menu-item:nth-child(6) { transition-delay: 0.3s; }
.menu-overlay.active .menu-item:nth-child(7) { transition-delay: 0.35s; }
.menu-overlay.active .menu-item:nth-child(8) { transition-delay: 0.4s; }

/* Menu Links */
.menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                background-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                border-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                box-shadow 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

/* Add numbered counter before each menu item */
.menu-link::before {
    content: counter(menu-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 230, 118, 0.15);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.menu-link:hover::before {
    background: var(--primary-green);
    color: #000;
    transform: scale(1.1);
}

.menu-link:hover {
    border-color: var(--primary-green);
    background: rgba(0, 230, 118, 0.08);
    transform: translateX(-5px);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
}

.menu-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.menu-link:hover .menu-text {
    color: var(--text-white);
    letter-spacing: 1px;
}

/* Active Menu Link */
.menu-link.active {
    border-color: var(--primary-green);
    background: rgba(0, 230, 118, 0.1);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.2);
}

.menu-link.active::before {
    background: var(--primary-green);
    color: #000;
}

.menu-link.active .menu-text {
    color: var(--text-white);
}

/* Menu Footer */
.menu-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.45s,
                transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.45s;
}

.menu-overlay.active .menu-footer {
    opacity: 1;
    transform: translateX(0);
}

.menu-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.3s ease,
                background-color 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease;
}

.menu-contact-link:hover {
    background: rgba(0, 230, 118, 0.1);
    border-color: var(--primary-green);
    color: var(--text-white);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.menu-contact-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-contact-icon svg {
    width: 24px;
    height: 24px;
    color: currentColor;
    stroke-width: 2;
}

/* Keep full menu visible on shorter laptop viewports without internal scrolling */
@media (min-width: 769px) and (max-height: 900px) {
    .menu-overlay {
        overflow-y: hidden;
    }

    .menu-content {
        min-height: 100vh;
        padding: 96px 24px 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-list {
        gap: 8px;
    }

    .menu-link {
        padding: 12px 14px;
        gap: 10px;
    }

    .menu-link::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .menu-text {
        font-size: 0.95rem;
        line-height: 1.2;
        letter-spacing: 0.2px;
    }

    .menu-footer {
        margin-top: 18px;
        padding-top: 16px;
    }

    .menu-contact {
        gap: 8px;
    }

    .menu-contact-link {
        padding: 8px 12px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .menu-contact-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Back to Top Button - Changed from green to white */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 9997;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                visibility 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
                background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    animation: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--primary-bg); /* Dark icon on white background */
    stroke-width: 2.5;
}

.back-to-top:focus {
    outline: 3px solid var(--text-white);
    outline-offset: 3px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 255, 255, 0.7);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 60px 20px 20px 20px;
    background-color: var(--primary-bg);
}

/* Hero Section Glow Effect - DISABLED */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.15) 0%, transparent 70%);
    pointer-events: none;
    /* Animation disabled to prevent overlap with content */
    /* animation: heroGlow 4s ease-in-out infinite; */
    display: none;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

/* CRITICAL: Ensure video container is always visible */
.hero-section .hero-video-container {
    display: block !important;
    visibility: visible !important;
}

/* Desktop video should be visible by default */
.hero-section .hero-video-desktop {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

/* Desktop/Tablet Video - Show on screens larger than 480px */
.hero-video-desktop {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile Video - Hide by default */
.hero-video-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Video Overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.25) 0%,
        rgba(10, 10, 10, 0.35) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    flex-shrink: 0;
    margin-top: 40px;
}

/* Logo Container with Spotlight Effect */
.logo-container {
    position: relative;
    display: inline-block;
}

.cb-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 1; /* Ensure logo is always visible, even if JavaScript animation fails */
}

/* Spotlight Animation - DISABLED */
.spotlight-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(0, 230, 118, 0.15) 0%,
        rgba(0, 230, 118, 0.08) 30%,
        transparent 70%
    );
    border-radius: 50%;
    /* Animation disabled to prevent overlap with content */
    /* animation: spotlight-pulse 3s ease-in-out infinite; */
    pointer-events: none;
    display: none;
}

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

/* Down Arrow Navigation */
.down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}

.down-arrow:hover {
    transform: translateX(-50%) translateY(-5px);
    color: #e0e0e0;
    text-decoration: none;
}

.down-arrow-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    animation: bounce 2s infinite;
}

.down-arrow-icon svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
    stroke-width: 2;
}

.down-arrow-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Loading State */
.hero-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero-loading.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 230, 118, 0.3);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* eShop Coming Soon Gallery Section */
.eshop-gallery-section {
    padding: 100px 20px;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.eshop-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.eshop-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eshop-gallery-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.eshop-gallery-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

/* Gallery Wrapper */
.gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.gallery-wrapper:active {
    cursor: grabbing;
}

.gallery-wrapper::before,
.gallery-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary-bg) 0%, transparent 100%);
}

.gallery-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--primary-bg) 100%);
}

/* Gallery Track */
.gallery-track {
    display: flex;
    gap: 30px;
    animation: scroll-gallery 40s linear infinite;
    will-change: transform;
    touch-action: pan-y;  /* Allow vertical scroll, enable horizontal swipe */
}

/* Hover pause is now handled by JavaScript for better control */

@keyframes scroll-gallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gallery Item */
.gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: var(--card-bg);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    left: 100%;
}

.gallery-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 12px 35px rgba(0, 230, 118, 0.3);
    transform: translateY(-10px) scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    -webkit-user-drag: none;  /* Prevent image drag on iOS Safari */
    user-select: none;
    pointer-events: auto;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* eShop CTA Button */
.eshop-cta-container {
    text-align: center;
}

.eshop-cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--primary-green);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.eshop-cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    box-shadow: 0 12px 35px rgba(0, 230, 118, 0.5);
    transform: translateY(-3px) scale(1.05);
}

/* Light Mode - eShop Gallery */
body.light-mode .eshop-gallery-section::before {
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
}

body.light-mode .eshop-gallery-title {
    color: #000000;
}

body.light-mode .eshop-gallery-title::after {
    background: linear-gradient(90deg, transparent, #000000, transparent);
}

body.light-mode .gallery-wrapper::before {
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

body.light-mode .gallery-wrapper::after {
    background: linear-gradient(90deg, transparent 0%, #ffffff 100%);
}

body.light-mode .gallery-item {
    background: #ffffff;
    border-color: #e0e0e0;
}

body.light-mode .gallery-item::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

body.light-mode .gallery-item:hover {
    border-color: #000000;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

body.light-mode .eshop-cta-btn {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

body.light-mode .eshop-cta-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

/* Key USPs Section */
.usps-section {
    padding: 80px 20px;
    background: var(--primary-bg);
    position: relative;
}

.usps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.usp-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.usp-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 230, 118, 0.3);
    border-color: var(--primary-green);
}

.usp-card:hover .usp-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.6);
}

.usp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    transition: transform 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 230, 118, 0.6);
    }
}

.checkmark {
    color: var(--primary-bg);
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.usp-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-bg);
    stroke-width: 2.5;
}

.usp-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

/* Custom Import Service Section */
.import-service-section {
    padding: 100px 20px;
    background: var(--primary-bg);
    position: relative;
}

/* Import Header Section - Standalone header between hero and USPs */
.import-header-section {
    padding: 80px 20px 60px;
    background: var(--primary-bg);
    position: relative;
}

/* Import Header */
.import-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.import-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white); /* Changed from green to white */
    margin-bottom: 20px;
    line-height: 1.2;
}

.import-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.6;
}

/* Import Introduction */
.import-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.import-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Section Heading */
.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white); /* Changed from green to white */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--text-white), transparent); /* Changed from green to white */
    animation: headingGlow 2s ease-in-out infinite;
}

@keyframes headingGlow {
    0%, 100% {
        opacity: 0.5;
        width: 100px;
    }
    50% {
        opacity: 1;
        width: 150px;
    }
}

/* Process Timeline */
.import-process {
    max-width: 900px;
    margin: 0 auto 100px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
    display: flex;
    gap: 25px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.05), transparent);
    transition: left 0.6s ease;
}

.process-step:hover::before {
    left: 100%;
}

.process-step:hover {
    border-color: var(--primary-green);
    box-shadow: 0 12px 35px rgba(0, 230, 118, 0.25);
    transform: translateX(10px) scale(1.02);
}

.step-highlighted {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.05) 0%, var(--card-bg) 100%);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.2);
}

.step-highlighted:hover {
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.3);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-bg);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.step-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.step-subheading {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-details li {
    font-size: 1rem;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 30px; /* Increased from 25px to 30px for more space */
    position: relative;
    line-height: 1.6;
}

.step-details li::before {
    content: "→";
    position: absolute;
    left: 5px; /* Changed from 0 to 5px to add spacing from edge */
    top: 8px; /* Added top positioning to align with text */
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1rem; /* Explicit size to prevent scaling issues */
}

.step-note {
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 15px;
    font-style: italic;
}

/* Why Choose Section */
.import-why-choose {
    max-width: 1200px;
    margin: 0 auto 100px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    /* Faster, targeted transitions to remove hover delay */
    transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out, transform 0.12s ease-out;
}

.feature-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.2);
    transform: translateY(-5px);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.feature-content {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.feature-list li {
    font-size: 1rem;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Cost Calculator Placeholder */
.import-calculator-placeholder {
    max-width: 800px;
    margin: 0 auto 100px;
}

.calculator-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
}

.calculator-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.calculator-coming-soon {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 600;
    font-style: italic;
}

/* CTA Section */
.import-cta-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.cta-button-primary:hover {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 30px rgba(0, 230, 118, 0.6);
    transform: translateY(-3px);
}

.cta-link-secondary {
    display: block;
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    margin-top: 20px;
}

.cta-link-secondary:hover {
    color: var(--primary-green-light);
    text-decoration: underline;
}

/* Vehicle Inventory Section */
.inventory-section {
    padding: 100px 20px;
    background: var(--primary-bg);
    position: relative;
}

/* Inventory Header */
.inventory-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.inventory-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white); /* Changed from green to white */
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative; /* For animated line */
    padding-bottom: 20px; /* Space for animated line */
}

/* Add animated line under inventory title */
.inventory-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--text-white), transparent);
    animation: headingGlow 2s ease-in-out infinite;
}

.inventory-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
}

/* Vehicle Grid */
.vehicle-grid {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Vehicle Card */
.vehicle-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.2);
    transform: translateY(-8px);
}

/* Vehicle Image */
.vehicle-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #0a0a0a;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.vehicle-year-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 230, 118, 0.4);
}

/* Vehicle Info */
.vehicle-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.vehicle-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Vehicle Specs */
.vehicle-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.spec-icon {
    font-size: 1.3rem;
    opacity: 0.8;
}

.spec-value {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

/* Vehicle Details Button */
.vehicle-details-btn {
    display: block;
    width: 100%;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    margin-top: auto;
}

.vehicle-details-btn:hover {
    background: var(--primary-green);
    color: var(--primary-bg);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

/* No Vehicles Message */
.no-vehicles-message {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.no-vehicles-message p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Inventory CTA */
.inventory-cta {
    text-align: center;
    padding: 40px 20px 0;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button-inventory {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4), 0 0 30px rgba(0, 230, 118, 0.5), 0 0 50px rgba(0, 230, 118, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* Removed glitch animation - replaced with smooth pulse/glow effect */
.cta-button-inventory:hover {
    animation: inventory-pulse 2s ease-in-out infinite;
    box-shadow: 0 6px 30px rgba(0, 230, 118, 0.6), 0 0 40px rgba(0, 230, 118, 0.7), 0 0 70px rgba(0, 230, 118, 0.5);
    transform: scale(1.05);
}

/* Smooth pulse animation for inventory button */
@keyframes inventory-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4), 0 0 30px rgba(0, 230, 118, 0.5), 0 0 50px rgba(0, 230, 118, 0.3);
        transform: scale(1.05);
    }
    50% {
        box-shadow: 0 6px 30px rgba(0, 230, 118, 0.6), 0 0 40px rgba(0, 230, 118, 0.7), 0 0 70px rgba(0, 230, 118, 0.5);
        transform: scale(1.08);
    }
}

.inventory-cta-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

/* Inspection Services Section */
.inspection-section {
    padding: 100px 20px;
    background: var(--primary-bg);
    position: relative;
}

/* Inspection Header */
.inspection-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.inspection-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white); /* Changed from green to white */
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative; /* For animated line */
    padding-bottom: 20px; /* Space for animated line */
}

/* Add animated line under inspection title */
.inspection-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--text-white), transparent);
    animation: headingGlow 2s ease-in-out infinite;
}

.inspection-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
}

/* Inspection Introduction */
.inspection-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.inspection-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Inspection Checklist */
.inspection-checklist {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.checklist-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 50px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.checklist-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 30px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.checklist-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.2);
    transform: translateY(-5px);
}

.checklist-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-items li {
    font-size: 1rem;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.checklist-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Inspection Report Sample */
.inspection-report-sample {
    max-width: 800px;
    margin: 0 auto 60px;
}

.report-sample-card {
    background: var(--card-bg);
    border: 3px solid var(--primary-green);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.25);
}

.report-sample-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.report-sample-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.report-sample-subtext {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-style: italic;
}

.report-sample-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

.report-sample-link:hover {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.6);
    transform: translateY(-3px);
}



/* Standalone Inspection Service */
.inspection-standalone {
    max-width: 700px;
    margin: 0 auto;
}

.standalone-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.standalone-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.2);
}

.standalone-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.standalone-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.standalone-pricing {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.standalone-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.standalone-details {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.standalone-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.standalone-cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 30px rgba(0, 230, 118, 0.6);
    transform: translateY(-3px);
}

/* Financing & Payment Section */
.financing-section {
    padding: 100px 20px;
    background: var(--primary-bg);
    position: relative;
}

/* Financing Header */
.financing-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.financing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white); /* Changed from green to white */
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative; /* For animated line */
    padding-bottom: 20px; /* Space for animated line */
}

/* Add animated line under financing title */
.financing-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--text-white), transparent);
    animation: headingGlow 2s ease-in-out infinite;
}

.financing-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
}

/* Unique Import Financing */
.financing-unique {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.financing-unique-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 15px;
}

.financing-unique-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

/* Financing Process Steps */
.financing-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.financing-step {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.financing-step:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.2);
    transform: translateY(-5px);
}

.financing-step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-bg);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

.financing-step-content {
    text-align: center;
}

.financing-step-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.financing-step-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Why This Matters */
.financing-why-matters {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.why-matters-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
}

.why-matters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-matters-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.why-matters-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.2);
    transform: translateY(-3px);
}

.why-matters-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.why-matters-card strong {
    color: var(--primary-green);
}

/* Featured Why Matters Card */
.why-matters-card-featured {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.08) 0%, var(--card-bg) 100%);
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3), 0 0 30px rgba(0, 230, 118, 0.2);
    transform: scale(1.02);
}

.why-matters-card-featured:hover {
    border-color: var(--primary-green-light);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.4), 0 0 40px rgba(0, 230, 118, 0.3);
    transform: scale(1.05) translateY(-3px);
}

.why-matters-card-featured strong {
    color: var(--primary-green-light);
    font-size: 1.15em;
}

/* Payment Terms */
.financing-payment-terms {
    max-width: 900px;
    margin: 0 auto 80px;
}

.payment-terms-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
}

.payment-terms-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.payment-terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-terms-list li {
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
}

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

.payment-terms-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.3rem;
}

.payment-terms-list strong {
    color: var(--primary-green);
}



/* Traditional Financing */
.financing-traditional {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.traditional-financing-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.traditional-financing-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.traditional-financing-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.financing-detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.traditional-financing-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.traditional-financing-btn:hover {
    background: var(--primary-green);
    color: var(--primary-bg);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
}

/* FAQs */
.financing-faqs {
    max-width: 900px;
    margin: 0 auto;
}

.faqs-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 40px;
}

.faqs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.15);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Transportation & Delivery Section */
.transportation-section {
    padding: 100px 20px;
    background: var(--primary-bg);
    position: relative;
}

/* Transportation Header */
.transportation-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.transportation-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white); /* Changed from green to white */
    margin-bottom: 20px;
    line-height: 1.2;
}

.transportation-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
}

/* Transportation Introduction */
.transportation-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.transportation-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Transportation Grid */
.transportation-grid {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Transport Card */
.transport-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.transport-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.25);
    transform: translateY(-5px);
}

/* Transport Badge */
.transport-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 10;
    white-space: nowrap;
}

.transport-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.badge-popular {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
}

.badge-value {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
}

.badge-premium {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
    color: #000;
}

/* Transport Icon */
.transport-icon {
    font-size: 3rem;
    text-align: center;
    margin: 20px 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transport-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-green);
    stroke-width: 2;
}

/* Transport Name */
.transport-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Transport Details */
.transport-details {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.detail-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
    stroke-width: 2;
}

.detail-text {
    font-size: 1rem;
    color: var(--text-light);
}

.transport-price-row {
    margin: 5px 0;
}

.transport-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* Transport Features */
.transport-features {
    margin-bottom: 25px;
}

.features-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}



/* Transport CTA Button */
.transport-cta-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.transport-cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.5);
    transform: scale(1.03) translateY(-2px);
    opacity: 0.95;
}

/* Transportation Help Section */
.transportation-help {
    text-align: center;
    padding: 40px 20px 0;
    max-width: 600px;
    margin: 0 auto;
}

.help-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.help-link {
    display: inline-block;
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 3px;
}

.help-link:hover {
    color: var(--primary-green-light);
    border-bottom-color: var(--primary-green-light);
}

/* Contact Us Section */
.contact-section {
    padding: 100px 20px;
    background: var(--primary-bg);
    position: relative;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white); /* Changed from green to white */
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative; /* For animated line */
    padding-bottom: 20px; /* Space for animated line */
}

/* Add animated line under contact title */
.contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--text-white), transparent);
    animation: headingGlow 2s ease-in-out infinite;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.7;
}

/* Contact Cards Grid */
.contact-cards-grid {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Contact Card */
.contact-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0, 230, 118, 0.2);
    transform: translateY(-5px);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-green);
    stroke-width: 2;
}

.contact-card-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-info {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-card-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.contact-card-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.contact-card-btn:hover {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.5);
    transform: translateY(-2px);
}

/* Contact Form Container */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto 60px;
}

.form-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white); /* Changed from green to white */
    text-align: center;
    margin-bottom: 40px;
}

/* Form Styles */
.contact-form {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

.required {
    color: var(--primary-green);
    font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
    background: var(--primary-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    color: var(--text-light);
    font-family: inherit;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
}

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

.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='%2300E676' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Radio and Checkbox Styles */
.form-radio-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Form Error Messages */
.form-error {
    display: block;
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

/* Form Submit Button */
.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 30px rgba(0, 230, 118, 0.6);
    transform: translateY(-2px);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-spinner {
    animation: spin 1s linear infinite;
}

.form-submit-btn .btn-text,
.form-submit-btn .btn-spinner {
    position: relative;
    z-index: 1;
}

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

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.form-success {
    background: rgba(0, 230, 118, 0.1);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.form-error-message {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
}

/* Honeypot Field (Hidden) */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* Custom Import Form Container */
.custom-import-form-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Import Form Toggle Button */
.import-form-toggle {
    width: 100%;
    background: var(--card-bg);
    border: 2px solid var(--primary-green);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    margin-bottom: 30px;
}

.import-form-toggle:hover {
    background: rgba(0, 230, 118, 0.05);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.2);
}

.toggle-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    text-align: left;
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.import-form-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

/* Import Form Content */
.import-form-content {
    margin-top: 30px;
}

.import-request-form {
    padding: 50px 40px;
}

.form-subsection-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white); /* Changed from green to white */
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.form-subsection-title:first-child {
    margin-top: 0;
}

/* Year Range Inputs */
.year-range-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
}

.year-input {
    flex: 1;
}

.year-separator {
    color: var(--text-muted);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Responsive - Tablet */
    .theme-toggle {
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .theme-icon {
        width: 20px;
        height: 20px;
    }

    .language-toggle {
        position: fixed; /* Ensure fixed positioning on mobile */
        top: 20px;
        left: 85px;
        width: 55px;
        height: 55px;
    }

    .menu-toggle {
        position: fixed; /* Ensure fixed positioning on mobile */
        top: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    /* Right-side menu adjustments for tablet */
    .menu-overlay {
        width: 380px;
        max-width: 80vw;
    }

    .menu-content {
        padding: 100px 25px 30px 25px;
    }

    .menu-list {
        gap: 10px;
    }

    .menu-link {
        padding: 15px 18px;
        gap: 12px;
    }

    .menu-link::before {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .menu-text {
        font-size: 1rem;
    }

    .menu-footer {
        margin-top: 30px;
        padding-top: 25px;
    }

    .menu-contact {
        gap: 12px;
    }

    .menu-contact-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .menu-contact-icon {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 40px 15px 15px 15px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .cb-logo {
        max-width: 250px;
    }

    .spotlight-effect {
        width: 300px;
        height: 300px;
    }

    .down-arrow {
        bottom: 30px;
    }

    .down-arrow-text {
        font-size: 12px;
    }

    /* USPs Responsive - Tablet */
    .usps-section {
        padding: 60px 20px;
    }

    .usps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .usp-card {
        padding: 35px 20px;
    }

    .usp-heading {
        font-size: 1.15rem;
        min-height: 45px;
    }

    .usp-subtext {
        font-size: 0.9rem;
    }

    /* Import Service Responsive - Tablet */
    .import-service-section {
        padding: 80px 20px;
    }

    .import-title {
        font-size: 2.5rem;
    }

    .import-subtitle {
        font-size: 1.15rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .process-step {
        flex-direction: column;
        padding: 30px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .cta-button-primary {
        font-size: 1.1rem;
        padding: 16px 40px;
    }

    /* Inventory Responsive - Tablet */
    .inventory-section {
        padding: 80px 20px;
    }

    .inventory-title {
        font-size: 2.5rem;
    }

    .inventory-subtitle {
        font-size: 1.1rem;
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .vehicle-image-container {
        height: 220px;
    }

    .vehicle-name {
        font-size: 1.3rem;
    }

    .vehicle-price {
        font-size: 1.6rem;
    }

    .cta-button-inventory {
        font-size: 1.1rem;
        padding: 16px 40px;
    }

    /* Inspection Services Responsive - Tablet */
    .inspection-section {
        padding: 80px 20px;
    }

    .inspection-title {
        font-size: 2.5rem;
    }

    .inspection-subtitle {
        font-size: 1.1rem;
    }

    .checklist-heading {
        font-size: 2rem;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .report-sample-card {
        padding: 35px 30px;
    }

    .report-sample-title {
        font-size: 1.6rem;
    }



    .standalone-card {
        padding: 35px 30px;
    }

    /* Financing Responsive - Tablet */
    .financing-section {
        padding: 80px 20px;
    }

    .financing-title {
        font-size: 2.5rem;
    }

    .financing-subtitle {
        font-size: 1.1rem;
    }

    .financing-unique-title {
        font-size: 2rem;
    }

    .financing-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-matters-heading {
        font-size: 2rem;
    }

    .why-matters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-terms-heading,
    .traditional-financing-heading,
    .faqs-heading {
        font-size: 2rem;
    }

    .traditional-financing-details {
        gap: 30px;
    }

    /* Transportation Responsive - Tablet */
    .transportation-section {
        padding: 80px 20px;
    }

    .transportation-title {
        font-size: 2.5rem;
    }

    .transportation-subtitle {
        font-size: 1.1rem;
    }

    .transportation-intro {
        margin-bottom: 50px;
    }

    .transportation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Remove width constraint on VIP Express card for consistency */
    .transport-card:nth-child(3) {
        grid-column: auto; /* Changed from 1 / -1 to match other cards */
        max-width: 100%; /* Changed from 500px to match other cards */
        margin: 0; /* Remove auto centering */
    }

    .transport-icon {
        font-size: 2.5rem;
    }

    .transport-name {
        font-size: 1.4rem;
    }

    .transport-price {
        font-size: 1.6rem;
    }

    .help-text {
        font-size: 1.1rem;
    }

    /* Contact Responsive - Tablet */
    .contact-section {
        padding: 80px 20px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 60px;
    }

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

    .contact-card-icon {
        font-size: 2.2rem;
    }

    .contact-form-container {
        margin-bottom: 50px;
    }

    .form-section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .contact-form,
    .import-request-form {
        padding: 35px 30px;
    }

    .form-row-two-col {
        gap: 15px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .toggle-text {
        font-size: 1rem;
    }

    /* eShop Gallery Responsive - Tablet */
    .eshop-gallery-section {
        padding: 80px 20px;
    }

    .eshop-gallery-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .gallery-item {
        width: 250px;
        height: 250px;
    }

    .gallery-track {
        animation: scroll-gallery 25s linear infinite;  /* Faster on tablet */
    }

    .eshop-cta-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Navigation Responsive - Mobile */
    .theme-toggle {
        top: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
    }

    .theme-icon {
        width: 18px;
        height: 18px;
    }

    .language-toggle {
        position: fixed; /* Ensure fixed positioning on mobile */
        top: 15px;
        left: 75px;
        width: 45px;
        height: 45px;
    }

    .language-flag {
        font-size: 0.9rem;
    }

    .menu-toggle {
        position: fixed; /* Ensure fixed positioning on mobile */
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        gap: 5px;
    }

    .menu-toggle-bar {
        width: 25px;
        height: 2.5px;
    }

    /* Right-side menu adjustments for mobile */
    .menu-overlay {
        width: 320px;
        max-width: 90vw;
    }

    .menu-content {
        padding: 90px 20px 20px 20px;
    }

    .menu-list {
        gap: 10px;
    }

    .menu-link {
        padding: 14px 16px;
        gap: 12px;
    }

    .menu-link::before {
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }

    .menu-text {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }

    .menu-footer {
        margin-top: 25px;
        padding-top: 20px;
    }

    .menu-contact-link {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .menu-contact-icon {
        font-size: 1rem;
    }

    /* Back to Top - Mobile - Increased size for better touch targets */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 56px; /* Increased from 50px to meet minimum touch target size */
        height: 56px; /* Increased from 50px to meet minimum touch target size */
        /* Ensure high z-index for tappability */
        z-index: 9997;
        /* Add touch-action for better mobile interaction */
        touch-action: manipulation;
        /* Prevent text selection on tap */
        -webkit-tap-highlight-color: rgba(0, 230, 118, 0.3);
        user-select: none;
    }

    /* Add active state for visual feedback on tap */
    .back-to-top:active {
        transform: translateY(-2px) scale(0.95);
        background: #ffffff;
    }

    .back-to-top svg {
        width: 22px; /* Slightly increased from 20px */
        height: 22px; /* Slightly increased from 20px */
    }

    .hero-section {
        padding: 30px 15px 15px 15px;
    }

    .cb-logo {
        max-width: 200px;
    }

    .spotlight-effect {
        width: 250px;
        height: 250px;
    }

    .down-arrow {
        bottom: 20px;
    }

    .down-arrow-icon {
        font-size: 20px;
    }

    .down-arrow-text {
        font-size: 11px;
    }

    /* USPs Responsive - Mobile */
    .usps-section {
        padding: 50px 15px;
    }

    .usps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .usp-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .checkmark {
        font-size: 28px;
    }

    .usp-heading {
        font-size: 1.1rem;
        min-height: auto;
        margin-bottom: 10px;
    }

    .usp-subtext {
        font-size: 0.85rem;
    }

    /* Import Service Responsive - Mobile */
    .import-service-section {
        padding: 60px 15px;
    }

    .import-title {
        font-size: 2rem;
    }

    .import-subtitle {
        font-size: 1rem;
    }

    .import-intro p {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.75rem;
        margin-bottom: 35px;
    }

    .import-process {
        margin-bottom: 60px;
    }

    .process-step {
        padding: 25px 20px;
        gap: 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .step-details li {
        font-size: 0.95rem;
        padding: 6px 0;
        padding-left: 28px; /* Ensure arrows don't overlap text on mobile */
    }

    .import-why-choose {
        margin-bottom: 60px;
    }

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

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-content {
        font-size: 0.95rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }

    .import-calculator-placeholder {
        margin-bottom: 60px;
    }

    .calculator-card {
        padding: 35px 25px;
    }

    .calculator-description {
        font-size: 1rem;
    }

    .calculator-coming-soon {
        font-size: 0.95rem;
    }

    .import-cta-section {
        padding: 40px 15px;
    }

    .cta-button-primary {
        font-size: 1rem;
        padding: 15px 35px;
        width: 100%;
        max-width: 350px;
    }

    .cta-link-secondary {
        font-size: 1rem;
    }

    /* Inventory Responsive - Mobile */
    .inventory-section {
        padding: 60px 15px;
    }

    .inventory-header {
        margin-bottom: 40px;
    }

    .inventory-title {
        font-size: 2rem;
    }

    .inventory-subtitle {
        font-size: 1rem;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .vehicle-image-container {
        height: 200px;
    }

    .vehicle-year-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .vehicle-info {
        padding: 20px;
    }

    .vehicle-name {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .vehicle-price {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .vehicle-specs {
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .spec-icon {
        font-size: 1.1rem;
    }

    .spec-value {
        font-size: 0.8rem;
    }

    .vehicle-details-btn {
        font-size: 0.95rem;
        padding: 12px 18px;
    }

    .no-vehicles-message {
        padding: 40px 15px;
    }

    .no-vehicles-message p {
        font-size: 1rem;
    }

    .inventory-cta {
        padding: 30px 15px 0;
    }

    .cta-button-inventory {
        font-size: 1rem;
        padding: 15px 35px;
        width: 100%;
        max-width: 350px;
    }

    .inventory-cta-note {
        font-size: 0.9rem;
    }

    /* eShop Gallery Responsive - Mobile */
    .eshop-gallery-section {
        padding: 60px 15px;
    }

    .eshop-gallery-title {
        font-size: 2rem;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

    .gallery-wrapper::before,
    .gallery-wrapper::after {
        width: 80px;
    }

    .gallery-item {
        width: 200px;
        height: 200px;
    }

    .gallery-track {
        gap: 20px;
        animation: scroll-gallery 20s linear infinite;  /* Faster on mobile */
    }

    .eshop-cta-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }

    /* Inspection Services Responsive - Mobile */
    .inspection-section {
        padding: 60px 15px;
    }

    .inspection-header {
        margin-bottom: 30px;
    }

    .inspection-title {
        font-size: 2rem;
    }

    .inspection-subtitle {
        font-size: 1rem;
    }

    .inspection-intro {
        margin-bottom: 50px;
    }

    .inspection-intro p {
        font-size: 1rem;
    }

    .inspection-checklist {
        margin-bottom: 50px;
    }

    .checklist-heading {
        font-size: 1.75rem;
        margin-bottom: 35px;
    }

    .checklist-grid {
        gap: 20px;
    }

    .checklist-card {
        padding: 25px 20px;
    }

    .checklist-card-title {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .checklist-items li {
        font-size: 0.95rem;
        padding: 6px 0;
        padding-left: 25px;
    }

    .inspection-report-sample {
        margin-bottom: 50px;
    }

    .report-sample-card {
        padding: 30px 25px;
    }

    .report-sample-title {
        font-size: 1.5rem;
    }

    .report-sample-text {
        font-size: 1.1rem;
    }

    .report-sample-subtext {
        font-size: 0.95rem;
    }

    .report-sample-link {
        font-size: 1rem;
        padding: 12px 30px;
    }



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

    .standalone-title {
        font-size: 1.5rem;
    }

    .standalone-description {
        font-size: 1rem;
    }

    .standalone-price {
        font-size: 2rem;
    }

    .standalone-cta-btn {
        font-size: 1rem;
        padding: 14px 35px;
        width: 100%;
        max-width: 350px;
    }

    /* Financing Responsive - Mobile */
    .financing-section {
        padding: 60px 15px;
    }

    .financing-header {
        margin-bottom: 30px;
    }

    .financing-title {
        font-size: 2rem;
    }

    .financing-subtitle {
        font-size: 1rem;
    }

    .financing-unique {
        margin-bottom: 50px;
    }

    .financing-unique-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .financing-unique-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .financing-process {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .financing-step {
        padding: 25px 20px;
    }

    .financing-step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .financing-step-title {
        font-size: 1.1rem;
    }

    .financing-step-description {
        font-size: 0.9rem;
    }

    .financing-why-matters {
        margin-bottom: 50px;
    }

    .why-matters-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .why-matters-card {
        padding: 25px 20px;
    }

    .why-matters-card p {
        font-size: 1rem;
    }

    .financing-payment-terms {
        margin-bottom: 50px;
    }

    .payment-terms-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .payment-terms-card {
        padding: 30px 20px;
    }

    .payment-terms-list li {
        font-size: 1rem;
        padding: 12px 0;
        padding-left: 30px;
    }



    .financing-traditional {
        margin-bottom: 50px;
    }

    .traditional-financing-heading {
        font-size: 1.75rem;
    }

    .traditional-financing-intro {
        font-size: 1rem;
    }

    .traditional-financing-details {
        flex-direction: column;
        gap: 20px;
    }

    .detail-value {
        font-size: 1.5rem;
    }

    .traditional-financing-btn {
        font-size: 1rem;
        padding: 14px 35px;
        width: 100%;
        max-width: 350px;
    }

    .faqs-heading {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .faq-item {
        padding: 25px 20px;
    }

    .faq-question {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    /* Transportation Responsive - Mobile */
    .transportation-section {
        padding: 60px 15px;
    }

    .transportation-header {
        margin-bottom: 30px;
    }

    .transportation-title {
        font-size: 2rem;
    }

    .transportation-subtitle {
        font-size: 1rem;
    }

    .transportation-intro {
        margin-bottom: 40px;
    }

    .transportation-intro p {
        font-size: 1rem;
    }

    .transportation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .transport-card {
        padding: 35px 25px;
    }

    .transport-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }

    .transport-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
        top: -12px;
    }

    .transport-icon {
        font-size: 2.5rem;
        margin: 15px 0 12px;
    }

    .transport-name {
        font-size: 1.3rem;
    }



    .transport-details {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .detail-row {
        padding: 8px 0;
    }

    .detail-icon {
        font-size: 1.2rem;
    }

    .detail-text {
        font-size: 0.95rem;
    }

    .transport-price {
        font-size: 1.5rem;
    }

    .transport-features {
        margin-bottom: 20px;
    }

    .features-heading {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .features-list li {
        font-size: 0.9rem;
        padding: 5px 0;
        padding-left: 22px;
    }


    .transport-cta-btn {
        font-size: 1rem;
        padding: 13px 25px;
    }

    .transportation-help {
        padding: 30px 15px 0;
    }

    .help-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .help-link {
        font-size: 1rem;
    }

    /* Contact Responsive - Mobile */
    .contact-section {
        padding: 60px 15px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

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

    .contact-card-icon {
        font-size: 2rem;
    }

    .contact-card-label {
        font-size: 1.1rem;
    }

    .contact-card-info {
        font-size: 0.95rem;
    }

    .contact-card-btn {
        font-size: 0.9rem;
        padding: 9px 20px;
    }

    .contact-form-container {
        margin-bottom: 40px;
    }

    .form-section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .contact-form,
    .import-request-form {
        padding: 30px 20px;
    }

    .form-row {
        margin-bottom: 18px;
    }

    .form-row-two-col {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .form-label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 11px 14px;
        font-size: 0.95rem;
    }

    .form-radio-group {
        gap: 15px;
        flex-direction: column;
    }

    .radio-label,
    .checkbox-label {
        font-size: 0.9rem;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-submit-btn {
        font-size: 1rem;
        padding: 14px 30px;
    }

    .form-message {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .import-form-toggle {
        padding: 18px 20px;
    }

    .toggle-text {
        font-size: 0.95rem;
    }

    .toggle-icon {
        font-size: 1.1rem;
    }

    .import-form-content {
        margin-top: 20px;
    }

    .form-subsection-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .year-range-inputs {
        flex-direction: column;
        gap: 10px;
    }

    .year-separator {
        display: none;
    }

    .year-input {
        width: 100%;
    }
}

/* Video Fallback for Tablet - Keep desktop video visible on tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-video-desktop {
        /* Keep desktop video visible on tablets */
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-section {
        background: linear-gradient(135deg, var(--primary-bg) 0%, #1a1a1a 100%);
    }
}

/* Mobile Video Switching - Show mobile video on screens 480px and below */
@media (max-width: 480px) {
    /* Hide desktop/tablet video on mobile */
    .hero-video-desktop {
        display: none !important;
        visibility: hidden !important;
    }

    /* Show mobile video on mobile devices */
    .hero-video-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-section {
        background: linear-gradient(135deg, var(--primary-bg) 0%, #1a1a1a 100%);
    }
}

/* ============================================
   FOOTER WITH DESIGNER CREDIT
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, var(--primary-bg) 0%, #000000 100%);
    border-top: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-credit {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Privacy Policy Link */
.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 400;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    color: var(--text-light);
    text-decoration: none;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-muted);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Designer Credit - ronny.design */
.footer-link.designer-credit {
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 2px 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link.designer-credit:hover {
    color: var(--primary-green);
    letter-spacing: 1px;
}

.footer-link.designer-credit::after {
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    height: 1px;
    bottom: 0;
}

.footer-link.designer-credit:hover::after {
    width: 100%;
}

/* Footer Separator */
.footer-separator {
    margin: 0 15px;
    color: var(--text-muted);
}

/* Footer "created by" text */
.footer-created-by {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 25px 15px;
    }

    .footer-credit {
        font-size: 0.8rem;
    }
}

/* ============================================
   SHOP PAGE STYLES
   ============================================ */

/* Shop Page Container */
.shop-page {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    background-attachment: fixed;
    position: relative;
}

/* Shop Header Section */
.shop-header {
    padding: 40px 20px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.shop-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.shop-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--primary-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shop-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Filter Section */
.shop-filter-section {
    padding: 20px 20px;
    position: relative;
    z-index: 2;
}

.shop-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.filter-title {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
    transform: translateY(-2px) scale(1.05);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-color: var(--primary-green);
    color: var(--primary-bg);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.5);
}

.filter-btn.active:hover {
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.6);
}

/* Filter Ripple Effect */
.filter-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.3);
    width: 0;
    height: 0;
    animation: filter-ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes filter-ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px;
        opacity: 0;
    }
}

/* Products Section */
.shop-products-section {
    padding: 40px 20px 100px;
    position: relative;
    z-index: 2;
}

.shop-products-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Product Card */
.product-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.product-visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

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

.product-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 12px 35px rgba(0, 230, 118, 0.25);
    transform: translateY(-10px) scale(1.02);
}

/* Product Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #0a0a0a;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
    z-index: 2;
}

/* Product Content */
.product-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    letter-spacing: 0.5px;
}

.product-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Product Button */
.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

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

.product-btn:hover::before {
    left: 100%;
}

.product-btn:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.6);
    transform: scale(1.05) translateY(-2px);
}

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

.product-btn:hover svg {
    transform: translateX(5px);
}

/* ============================================
   SHOP PAGE RESPONSIVE STYLES
   ============================================ */

/* Tablet Styles */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .shop-title {
        font-size: 3rem;
    }

    .shop-subtitle {
        font-size: 1.2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .shop-page {
        padding-top: 60px;
    }

    .shop-header {
        padding: 30px 20px 25px;
    }

    .shop-title {
        font-size: 2.5rem;
    }

    .shop-subtitle {
        font-size: 1.1rem;
    }

    .filter-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

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

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

    .product-content {
        padding: 25px 20px;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .product-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .shop-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .shop-subtitle {
        font-size: 1rem;
    }

    .shop-header {
        padding: 25px 15px 20px;
    }

    .shop-filter-section {
        padding: 15px 15px;
    }

    .filter-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .shop-products-section {
        padding: 30px 15px 80px;
    }

    .products-grid {
        gap: 20px;
    }

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

    .product-badge {
        top: 10px;
        right: 10px;
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .product-content {
        padding: 20px 15px;
        gap: 12px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .product-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
        gap: 8px;
    }

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

/* ============================================
   Image Lightbox Styles
   ============================================ */

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}

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

/* Lightbox Content */
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s, background-color 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s, border-color 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s, color 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s, box-shadow 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s, opacity 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
    cursor: default;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

/* Lightbox Image */
.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 230, 118, 0.3);
    border: 3px solid var(--primary-green);
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--text-white);
    font-size: 24px;
    font-weight: 300;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--primary-green);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

/* Make product images clickable */
.product-image {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.product-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-image {
        max-height: 80vh;
        border-radius: 10px;
        border-width: 2px;
    }

    .lightbox-close {
        top: -45px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 75vh;
    }

    .lightbox-image {
        max-height: 75vh;
        border-radius: 8px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
        background: rgba(0, 0, 0, 0.8);
    }
}

/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */

.privacy-policy-page {
    min-height: 100vh;
    background: var(--bg-primary);
    padding-top: 80px;
}

/* Privacy Header */
.privacy-header {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1) 0%, rgba(0, 230, 118, 0.05) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.privacy-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.privacy-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Privacy Content */
.privacy-content-section {
    padding: 60px 20px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.privacy-section ul li::before {
    content: "•";
    color: var(--primary-green);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.privacy-section strong {
    color: var(--text-white);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Privacy Contact Info */
.privacy-contact-info {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}

.privacy-contact-info p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .privacy-header {
        padding: 40px 20px;
    }

    .privacy-content-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 1.75rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }

}

/* ============================================
   404 ERROR PAGE STYLES
   ============================================ */

/* 404 Section */
.error-404-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Animated background particles for 404 page */
.error-404-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 230, 118, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* 404 Container */
.error-404-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Error Code Display */
.error-404-code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    perspective: 1000px;
}

.error-digit {
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary-green);
    text-shadow: 0 0 30px rgba(0, 230, 118, 0.5),
                 0 0 60px rgba(0, 230, 118, 0.3);
    animation: float-digit 3s ease-in-out infinite;
    line-height: 1;
}

.error-digit-middle {
    animation-delay: 0.2s;
    transform: scale(1.2);
}

.error-digit:last-child {
    animation-delay: 0.4s;
}

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

/* Error Title */
.error-404-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Error Description */
.error-404-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Form */
.error-404-search {
    margin-bottom: 60px;
}

.error-search-form {
    max-width: 600px;
    margin: 0 auto;
}

.error-search-wrapper {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    position: relative;
    overflow: hidden;
}

.error-search-wrapper:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
}

.error-search-icon {
    color: var(--text-muted);
    margin-right: 15px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.error-search-wrapper:focus-within .error-search-icon {
    color: var(--primary-green);
}

.error-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-size: 1rem;
    padding: 12px 0;
}

.error-search-input::placeholder {
    color: var(--text-muted);
}

.error-search-submit {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    border: none;
    border-radius: 50px;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.error-search-submit:hover {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.5);
    transform: scale(1.05);
}

/* Quick Navigation Section */
.error-404-navigation {
    margin-bottom: 60px;
}

.error-nav-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

/* Navigation Cards */
.error-nav-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.error-nav-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 230, 118, 0.3);
}

.error-nav-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.error-nav-icon svg {
    color: var(--primary-green);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.error-nav-card:hover .error-nav-icon {
    background: var(--primary-green);
    transform: scale(1.1) rotate(5deg);
}

.error-nav-card:hover .error-nav-icon svg {
    color: var(--primary-bg);
}

.error-nav-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.error-nav-card:hover .error-nav-label {
    color: var(--primary-green);
}

.error-nav-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.error-nav-card:hover .error-nav-desc {
    color: var(--text-light);
}

/* CTA Button */
.error-404-cta {
    margin-top: 20px;
}

.error-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--primary-bg);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), background-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), border-color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 6px 25px rgba(0, 230, 118, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.error-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.error-cta-button:hover {
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    box-shadow: 0 10px 35px rgba(0, 230, 118, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.error-cta-button svg {
    transition: transform 0.3s ease;
}

.error-cta-button:hover svg {
    transform: translateX(-5px);
}

/* ============================================
   404 PAGE - LIGHT MODE STYLES
   ============================================ */

body.light-mode .error-404-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e8e8e8 100%);
}

body.light-mode .error-404-section::before {
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
}

body.light-mode .error-digit {
    color: #000000;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.2),
                 0 0 60px rgba(0, 0, 0, 0.1);
}

body.light-mode .error-404-title {
    color: #000000;
}

body.light-mode .error-404-description {
    color: #333333;
}

body.light-mode .error-search-wrapper {
    background: #ffffff;
    border-color: #e0e0e0;
}

body.light-mode .error-search-wrapper:focus-within {
    border-color: #000000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

body.light-mode .error-search-icon {
    color: #666666;
}

body.light-mode .error-search-wrapper:focus-within .error-search-icon {
    color: #000000;
}

body.light-mode .error-search-input {
    color: #000000;
}

body.light-mode .error-search-input::placeholder {
    color: #666666;
}

body.light-mode .error-search-submit {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
}

body.light-mode .error-search-submit:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

body.light-mode .error-nav-title {
    color: #000000;
}

body.light-mode .error-nav-card {
    background: #ffffff;
    border-color: #e0e0e0;
}

body.light-mode .error-nav-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

body.light-mode .error-nav-card:hover {
    border-color: #000000;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

body.light-mode .error-nav-icon {
    background: rgba(0, 0, 0, 0.05);
}

body.light-mode .error-nav-icon svg {
    color: #000000;
}

body.light-mode .error-nav-card:hover .error-nav-icon {
    background: #000000;
}

body.light-mode .error-nav-card:hover .error-nav-icon svg {
    color: #ffffff;
}

body.light-mode .error-nav-label {
    color: #000000;
}

body.light-mode .error-nav-card:hover .error-nav-label {
    color: #000000;
}

body.light-mode .error-nav-desc {
    color: #666666;
}

body.light-mode .error-nav-card:hover .error-nav-desc {
    color: #333333;
}

body.light-mode .error-cta-button {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

body.light-mode .error-cta-button:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

/* ============================================
   404 PAGE - RESPONSIVE STYLES
   ============================================ */

/* Tablet Styles (max-width: 1024px) */
@media (max-width: 1024px) {
    .error-404-section {
        padding: 100px 20px 60px;
    }

    .error-digit {
        font-size: 8rem;
    }

    .error-404-title {
        font-size: 2.2rem;
    }

    .error-404-description {
        font-size: 1.1rem;
    }

    .error-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .error-nav-card {
        padding: 25px 18px;
    }

    .error-nav-icon {
        width: 60px;
        height: 60px;
    }

    .error-nav-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .error-404-section {
        padding: 80px 15px 50px;
    }

    .error-404-code {
        gap: 15px;
        margin-bottom: 30px;
    }

    .error-digit {
        font-size: 6rem;
    }

    .error-404-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .error-404-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .error-404-search {
        margin-bottom: 50px;
    }

    .error-search-wrapper {
        padding: 6px 6px 6px 20px;
    }

    .error-search-input {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .error-search-submit {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .error-nav-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .error-nav-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .error-nav-card {
        padding: 25px 20px;
    }

    .error-nav-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .error-nav-icon svg {
        width: 26px;
        height: 26px;
    }

    .error-nav-label {
        font-size: 1.1rem;
    }

    .error-nav-desc {
        font-size: 0.9rem;
    }

    .error-cta-button {
        font-size: 1rem;
        padding: 16px 35px;
        width: 100%;
        max-width: 350px;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .error-404-code {
        gap: 10px;
    }

    .error-digit {
        font-size: 4.5rem;
    }

    .error-404-title {
        font-size: 1.5rem;
    }

    .error-404-description {
        font-size: 0.95rem;
    }

    .error-search-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        border-radius: 15px;
    }

    .error-search-icon {
        display: none;
    }

    .error-search-input {
        padding: 12px;
        text-align: center;
        margin-bottom: 10px;
    }

    .error-search-submit {
        width: 100%;
        padding: 14px 25px;
    }

    .error-nav-title {
        font-size: 1.3rem;
    }

    .error-cta-button {
        font-size: 0.95rem;
        padding: 14px 30px;
    }
}
