/* ============================================
   ÉQUIPRO BTP - Main Stylesheet
   Premium B2B E-commerce for Construction Equipment
   ============================================ */

/* ============================================
   CSS Variables - Design System
   ============================================ */
:root {
    /* Primary Colors - Industrial Orange */
    --primary: #FF6B35;
    --primary-dark: #E85A2A;
    --primary-light: #FF8C5A;
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #E85A2A 100%);
    
    /* Secondary Colors - Professional Navy */
    --secondary: #1E3A5F;
    --secondary-dark: #152942;
    --secondary-light: #2A4F7A;
    
    /* Accent Colors */
    --accent-yellow: #FFB800;
    --accent-green: #00C853;
    --accent-red: #FF3D57;
    --accent-blue: #00A3FF;
    
    /* Neutral Colors */
    --dark: #0A0A0A;
    --dark-800: #1A1A1A;
    --dark-700: #2D2D2D;
    --dark-600: #404040;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --light: #F9FAFB;
    --white: #FFFFFF;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-dark: #0F1419;
    --bg-card: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    
    /* Container */
    --container-max: 1400px;
    --container-padding: 1.5rem;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

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

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

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

.display-1 {
    font-family: var(--font-display);
    font-size: var(--text-7xl);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

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

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

.loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.loader-logo .logo-icon {
    font-size: 3rem;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-logo .logo-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 3px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0; margin-left: 100%; }
}

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

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: var(--white);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header.hidden {
    transform: translateY(-100%);
}

/* Header Top Bar */
.header-top {
    background: var(--secondary);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: var(--space-6);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary);
}

.contact-link .icon {
    width: 16px;
    height: 16px;
}

.header-actions-top {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.action-link {
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.action-link:hover {
    color: var(--primary);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Header Main */
.header-main {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-200);
}

.header-main-content {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.logo .logo-icon {
    font-size: 2.5rem;
    color: var(--primary);
    transition: transform var(--transition-base);
}

.logo:hover .logo-icon {
    transform: rotate(30deg);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text-main {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 2px;
    color: var(--secondary);
}

.logo-text-sub {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: var(--space-3) var(--space-5);
    padding-right: 50px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.search-bar input::placeholder {
    color: var(--gray-400);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background var(--transition-fast);
}

.search-btn:hover {
    background: var(--primary-dark);
}

.search-btn .icon {
    width: 18px;
    height: 18px;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-top: var(--space-2);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: var(--z-dropdown);
}

.search-suggestions.active {
    display: block;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2);
    color: var(--dark-700);
    position: relative;
    transition: color var(--transition-fast);
}

.header-action:hover {
    color: var(--primary);
}

.header-action .icon {
    width: 24px;
    height: 24px;
}

.action-label {
    font-size: var(--text-xs);
    font-weight: 500;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: var(--space-2);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base), opacity var(--transition-base);
}

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

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

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

/* Header Navigation */
.header-nav {
    background: var(--secondary);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-5);
    color: var(--white);
    font-weight: 500;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link-highlight {
    background: var(--primary);
}

.nav-link-highlight:hover {
    background: var(--primary-dark);
}

.icon-chevron {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.nav-item:hover .icon-chevron {
    transform: rotate(180deg);
}

.nav-badge {
    background: var(--accent-yellow);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    margin-left: var(--space-2);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base);
    z-index: var(--z-dropdown);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
    padding: var(--space-8);
}

.mega-col h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mega-col a {
    font-size: var(--text-sm);
    color: var(--gray-500);
    padding: var(--space-1) 0;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mega-col a:hover {
    color: var(--primary);
    padding-left: var(--space-2);
}

.mega-promo {
    grid-column: span 1;
}

.promo-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-tag {
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: var(--space-3);
}

.promo-card h4 {
    color: var(--white);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.promo-card p {
    font-size: var(--text-sm);
    opacity: 0.8;
    margin-bottom: auto;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: var(--z-modal);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--secondary);
    color: var(--white);
}

.mobile-menu-header .logo-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.mobile-menu-close {
    margin-left: auto;
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-6);
}

.mobile-search {
    margin-bottom: var(--space-6);
}

.mobile-search input {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-list a {
    display: block;
    padding: var(--space-4) 0;
    font-weight: 500;
    font-size: var(--text-lg);
}

.mobile-menu-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 50%, #0a1929 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary-light);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
}

.hero-title {
    margin-bottom: var(--space-6);
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.title-accent {
    color: var(--primary);
}

.hero-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    max-width: 500px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--white);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--primary);
    letter-spacing: 1px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 184, 0, 0.1) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.construction-illustration {
    position: relative;
    width: 100%;
    height: 100%;
}

.crane {
    position: absolute;
    top: 10%;
    right: 20%;
    width: 120px;
    height: 200px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    clip-path: polygon(45% 0, 55% 0, 55% 70%, 100% 100%, 0 100%, 45% 70%);
    animation: sway 4s ease-in-out infinite;
}

.building {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 150px;
    height: 180px;
    background: linear-gradient(180deg, var(--secondary-light) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.building::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.3) 0px,
        rgba(255, 255, 255, 0.3) 25px,
        transparent 25px,
        transparent 35px
    );
}

.worker {
    position: absolute;
    bottom: 10%;
    right: 30%;
    width: 40px;
    height: 80px;
    background: var(--accent-yellow);
    border-radius: var(--radius-full) var(--radius-full) 0 0;
}

@keyframes sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1.5s;
}

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

.floating-card .card-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.floating-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: var(--text-sm);
    color: var(--dark);
}

.floating-card span {
    font-size: var(--text-xs);
    color: var(--gray-500);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* ============================================
   Trust Section
   ============================================ */
.trust-section {
    padding: var(--space-16) 0;
    background: var(--white);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.trust-item {
    text-align: center;
    padding: var(--space-8);
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.trust-item h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: var(--secondary);
}

.trust-item p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    color: var(--secondary);
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
}

.tab-btn {
    padding: var(--space-3) var(--space-6);
    background: transparent;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--gray-500);
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.section-footer {
    text-align: center;
    margin-top: var(--space-12);
}

/* ============================================
   Categories Section
   ============================================ */
.categories-section {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: var(--space-6);
}

.category-card {
    position: relative;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    background: var(--white);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

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

.category-card-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 420px;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-color, var(--primary));
    opacity: 0.05;
    transition: opacity var(--transition-base);
}

.category-card:hover .category-bg {
    opacity: 0.1;
}

.category-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-icon {
    width: 100%;
    height: 160px;
    margin-bottom: var(--space-4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-card-large .category-icon {
    height: 280px;
}

.category-card h3 {
    font-size: var(--text-lg);
    color: var(--secondary);
    margin-bottom: var(--space-2);
}

.category-card-large h3 {
    font-size: var(--text-2xl);
}

.category-card p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

.category-count {
    margin-top: auto;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
}

.category-arrow {
    position: absolute;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xl);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: var(--space-20) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

/* ============================================
   Location CTA Section
   ============================================ */
.location-cta {
    position: relative;
    padding: var(--space-24) 0;
    overflow: hidden;
}

.location-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.location-cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.location-cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-16);
    align-items: center;
}

.location-cta-text {
    color: var(--white);
}

.cta-tag {
    display: inline-block;
    background: var(--primary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.location-cta-text h2 {
    color: var(--white);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    margin-bottom: var(--space-4);
}

.location-cta-text > p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
}

.cta-features {
    margin-bottom: var(--space-8);
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features .icon {
    width: 20px;
    height: 20px;
    color: var(--accent-green);
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Pricing Preview */
.pricing-preview {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-2xl);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.pricing-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 600;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
}

.pricing-header h4 {
    font-size: var(--text-lg);
    color: var(--secondary);
}

.pricing-rates {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.rate {
    flex: 1;
    text-align: center;
    padding: var(--space-4);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    position: relative;
}

.rate-popular {
    background: var(--secondary);
    color: var(--white);
}

.rate-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.rate-duration {
    display: block;
    font-size: var(--text-sm);
    margin-bottom: var(--space-1);
}

.rate-price {
    display: block;
    font-size: var(--text-xl);
    font-weight: 700;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: var(--text-lg);
    color: var(--secondary);
    margin-bottom: var(--space-3);
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.service-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    transition: color var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-dark);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: var(--space-20) 0;
}

.testimonials-slider {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: var(--space-4) 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--accent-yellow);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--dark-700);
    line-height: 1.8;
    margin-bottom: var(--space-6);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: var(--text-base);
    color: var(--dark);
}

.author-info span {
    font-size: var(--text-sm);
    color: var(--gray-500);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    color: var(--secondary);
    transition: all var(--transition-fast);
}

.nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-dots {
    display: flex;
    gap: var(--space-2);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast), width var(--transition-fast);
}

.dot.active {
    width: 24px;
    background: var(--primary);
}

/* ============================================
   Partners Section
   ============================================ */
.partners-section {
    padding: var(--space-16) 0;
    background: var(--bg-secondary);
}

.partners-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.partners-header span {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.partner-logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--gray-400);
    letter-spacing: 2px;
    transition: color var(--transition-fast);
}

.partner-logo:hover {
    color: var(--secondary);
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter-section {
    padding: var(--space-16) 0;
    background: var(--white);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    background: var(--secondary);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
}

.newsletter-text h2 {
    color: var(--white);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-form .form-group {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-3);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
    accent-color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
}

.footer-main {
    padding: var(--space-16) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
    gap: var(--space-8);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo .logo-icon {
    font-size: 2rem;
    color: var(--primary);
}

.footer-logo .logo-text-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-logo .logo-text-sub {
    font-size: var(--text-xs);
    color: var(--primary);
    letter-spacing: 2px;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: var(--white);
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-col a:hover {
    color: var(--primary);
    padding-left: var(--space-2);
}

.footer-contact address {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-contact a {
    color: var(--primary);
}

.footer-hours {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hours strong {
    display: block;
    color: var(--white);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.footer-bottom {
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

.payment-icon {
    width: 24px;
    height: 24px;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Mini Cart
   ============================================ */
.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-modal);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
}

.mini-cart.active {
    transform: translateX(0);
}

.mini-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    border-bottom: 1px solid var(--gray-200);
}

.mini-cart-header h3 {
    font-size: var(--text-lg);
}

.mini-cart-close {
    font-size: 2rem;
    color: var(--gray-400);
    line-height: 1;
}

.mini-cart-close:hover {
    color: var(--dark);
}

.mini-cart-content {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-6);
}

.mini-cart-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--gray-200);
}

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
}

.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .mega-menu {
        width: 700px;
    }
    
    .mega-menu-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mega-promo {
        display: none;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .category-card-large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 200px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .search-bar {
        display: none;
    }
    
    .action-label {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .location-cta-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-actions {
        justify-content: center;
    }
    
    .cta-features {
        display: inline-block;
        text-align: left;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-16);
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .trust-section {
        margin-top: 0;
        border-radius: 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .trust-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: var(--space-4);
        padding: var(--space-4);
    }
    
    .trust-icon {
        margin: 0;
        flex-shrink: 0;
    }
    
    .categories-grid,
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card,
    .category-card-large {
        min-height: 150px;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .back-to-top {
        bottom: var(--space-4);
        right: var(--space-4);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .pricing-rates {
        flex-direction: column;
    }
    
    .mini-cart {
        width: 100%;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .footer,
    .back-to-top,
    .mini-cart,
    .mobile-menu {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

