/* True Apple.com Premium Design */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Apple Color System */
    --primary-color: #dc2626;
    --primary-light: #ef4444;
    --primary-accent: #f87171;
    --secondary-color: #111827;
    --gold-accent: #374151;

    /* Apple Premium Neutrals */
    --background: #fafafa;
    --background-secondary: #f5f5f7;
    --surface: rgba(255, 255, 255, 0.95);
    --surface-elevated: rgba(255, 255, 255, 0.98);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-strong: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #a1a1a6;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.04);
    --divider: rgba(0, 0, 0, 0.12);

    /* Apple Premium Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 80px rgba(0, 0, 0, 0.16);
    --shadow-premium: 0 32px 120px rgba(0, 0, 0, 0.2);

    /* Apple Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-accent) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    --gradient-premium: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
}

/* DARK MODE CSS VARIABLES - Disabled for consistent light theme */
body.dark-mode {
    /* Use light theme colors for consistency */
    --background: #fafafa;
    --background-secondary: #f5f5f7;
    --surface: rgba(255, 255, 255, 0.95);
    --surface-elevated: rgba(255, 255, 255, 0.98);
    --glass: rgba(255, 255, 255, 0.8);
    --glass-strong: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #a1a1a6;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.04);
    --divider: rgba(0, 0, 0, 0.12);

    /* Light mode shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 80px rgba(0, 0, 0, 0.16);
    --shadow-premium: 0 32px 120px rgba(0, 0, 0, 0.2);

    /* Force light background */
    background: #fafafa !important;
    color: #1d1d1f !important;
}

body.dark-mode::before {
    background:
        radial-gradient(circle at 20% 80%, rgba(58, 165, 111, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 179, 120, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(246, 213, 92, 0.02) 0%, transparent 50%);
}

/* Apple SF Pro Typography System */
html, body {
    height: auto;
    min-height: 100vh;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47059;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.022em;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(58, 165, 111, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 179, 120, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(246, 213, 92, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Premium Apple Header */
.header {
    background: var(--glass);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo-img {
    height: 28px;
    width: auto;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-img:hover {
    opacity: 0.7;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-sm);
    letter-spacing: -0.01em;
}

.phone-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.language-select {
    position: relative;
    display: inline-block;
}

.current-lang {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    padding-right: 45px;
    padding-left: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
}

.current-lang::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 15px;
    background: linear-gradient(to bottom,
        #000000 0%, #000000 33.333%,
        #DD0000 33.333%, #DD0000 66.666%,
        #FFCE00 66.666%, #FFCE00 100%);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.current-lang::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #666;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.8;
}

.current-lang:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.current-lang:hover::after {
    opacity: 1;
}

.current-lang:active {
    transform: translateY(-1px);
    box-shadow:
        0 4px 15px rgba(58, 165, 111, 0.2),
        0 2px 10px rgba(0, 0, 0, 0.15);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 140px;
    z-index: 1001;
    overflow: hidden;
    padding: 4px;
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    filter: drop-shadow(0 -1px 2px rgba(0, 0, 0, 0.1));
}

.language-select:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-dropdown button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 10px;
    margin: 2px 0;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    text-align: left;
}

.lang-dropdown button:hover {
    background: #f8f9fa;
    color: var(--text-primary);
}

.lang-dropdown button:active {
    background: #e9ecef;
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-mode-toggle:hover {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px) scale(1.05);
}

.dark-mode-toggle:active {
    transform: translateY(-1px) scale(0.98);
}

.dark-mode-toggle .sun-icon,
.dark-mode-toggle .moon-icon {
    position: absolute;
    color: var(--text-secondary);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dark-mode-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.dark-mode-toggle .moon-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0.3);
}

/* Dark Mode Active State */
body.dark-mode .dark-mode-toggle .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0.3);
}

body.dark-mode .dark-mode-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: var(--primary-accent);
}

/* Ultra-Premium Progress Container */
.progress-container {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%),
        linear-gradient(45deg, rgba(58, 165, 111, 0.02) 0%, rgba(79, 179, 120, 0.02) 50%, rgba(246, 213, 92, 0.01) 100%);
    backdrop-filter: saturate(200%) blur(40px);
    -webkit-backdrop-filter: saturate(200%) blur(40px);
    border-bottom: 1px solid rgba(58, 165, 111, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    padding: 12px 0;
    position: relative;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.06),
        0 2px 16px rgba(58, 165, 111, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.progress-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(58, 165, 111, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(79, 179, 120, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(246, 213, 92, 0.02) 0%, transparent 30%);
    pointer-events: none;
}

.progress-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%);
    animation: container-shine 8s infinite;
    pointer-events: none;
}

@keyframes container-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    padding: 0 40px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 16px;
    left: calc(10% + 16px);
    right: calc(10% + 16px);
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.progress-steps::after {
    content: '';
    position: absolute;
    top: 16px;
    left: calc(10% + 16px);
    width: calc(var(--progress-width, 0%) - 32px);
    height: 2px;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--primary-accent) 50%,
        var(--secondary-color) 100%);
    border-radius: 2px;
    z-index: 0;
    box-shadow:
        0 1px 4px rgba(58, 165, 111, 0.3);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes progress-glow {
    0% {
        box-shadow:
            0 2px 8px rgba(58, 165, 111, 0.3),
            0 1px 4px rgba(58, 165, 111, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow:
            0 4px 16px rgba(58, 165, 111, 0.4),
            0 2px 8px rgba(58, 165, 111, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    padding: 8px 12px;
    border-radius: 12px;
    background: transparent;
    min-width: 140px;
    text-align: center;
    outline: none;
    border: none;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

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

.step:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(58, 165, 111, 0.06);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(249, 250, 251, 0.9) 100%);
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 6px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 3px solid rgba(229, 231, 235, 0.6);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 3;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    letter-spacing: -0.02em;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent 0%, rgba(58, 165, 111, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.step:hover .step-number::before {
    opacity: 1;
}

.step-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.step.active {
    transform: translateY(-6px);
}

.step.active::before {
    opacity: 1;
    background: linear-gradient(135deg,
        rgba(58, 165, 111, 0.08) 0%,
        rgba(79, 179, 120, 0.06) 100%);
}

.step.active .step-number {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--primary-accent) 50%,
        var(--secondary-color) 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow:
        0 8px 32px rgba(58, 165, 111, 0.4),
        0 4px 16px rgba(58, 165, 111, 0.3),
        0 2px 8px rgba(58, 165, 111, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    transform: scale(1.15);
    animation: active-pulse 2s ease-in-out infinite;
}

@keyframes active-pulse {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(58, 165, 111, 0.4),
            0 4px 16px rgba(58, 165, 111, 0.3),
            0 2px 8px rgba(58, 165, 111, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.2),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow:
            0 12px 48px rgba(58, 165, 111, 0.5),
            0 6px 24px rgba(58, 165, 111, 0.4),
            0 3px 12px rgba(58, 165, 111, 0.3),
            inset 0 2px 4px rgba(255, 255, 255, 0.3),
            inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    }
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

.step.completed .step-number {
    background: linear-gradient(135deg,
        var(--primary-accent) 0%,
        var(--secondary-color) 100%);
    color: white;
    border-color: var(--primary-accent);
    box-shadow:
        0 6px 24px rgba(79, 179, 120, 0.3),
        0 3px 12px rgba(79, 179, 120, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    transform: scale(1.08);
}



.step.completed .step-label {
    color: var(--primary-accent);
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.progress-bar {
    height: 4px;
    background: linear-gradient(90deg,
        rgba(229, 231, 235, 0.3) 0%,
        rgba(229, 231, 235, 0.6) 50%,
        rgba(229, 231, 235, 0.3) 100%);
    border-radius: 2px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,
        var(--primary-color) 0%,
        var(--primary-accent) 30%,
        var(--secondary-color) 70%,
        var(--gold-accent) 100%);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    width: 20%;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 4px rgba(58, 165, 111, 0.3),
        0 1px 2px rgba(58, 165, 111, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%);
    transform: translateX(-100%);
    animation: progress-shimmer 4s infinite;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        transparent 25%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 50%,
        transparent 75%,
        rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    animation: progress-stripes 2s linear infinite;
}

@keyframes progress-shimmer {
    0% { transform: translateX(-100%); }
    20% { transform: translateX(-100%); }
    80% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes progress-stripes {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

/* Premium Main Content */
.main-content {
    padding: 20px 0 40px 0;
    min-height: auto;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: start;
    min-height: auto;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-wrapper.full-width {
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0;
}

/* Premium Form Section */
.form-section {
    background: var(--glass-strong);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-wrapper.full-width .form-section {
    max-width: 100%;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

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

.guarantee-banner {
    background: linear-gradient(135deg, rgba(58, 165, 111, 0.08) 0%, rgba(79, 179, 120, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.guarantee-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: banner-shimmer 4s infinite;
}

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

.guarantee-icon {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

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

.guarantee-text {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.moving-form {
    padding: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: auto;
}

.content-wrapper.full-width .moving-form {
    padding: 20px 32px;
}

.form-step {
    display: none;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-step.active {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.step-header {
    margin-bottom: 8px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.03em;
    line-height: 1.125;
}

.step-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.47059;
    letter-spacing: -0.022em;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-wrapper.full-width .section-title {
    margin-bottom: 6px;
    font-size: 15px;
}

/* Premium Address Section */
.address-section {
    margin-bottom: 12px;
    padding: 12px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.address-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.address-section:hover {
    border-color: var(--primary-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.input-group {
    margin-bottom: 6px;
}

.content-wrapper.full-width .input-group {
    margin-bottom: 4px;
}

/* Compact form for steps 4 and 5 */
#step-4 .input-group,
#step-5 .input-group {
    margin-bottom: 8px;
}

#step-4 .service-item,
#step-5 .contact-form .input-group {
    margin-bottom: 6px;
}

.input-row {
    display: flex;
    gap: 16px;
}

.content-wrapper.full-width .input-row {
    gap: 12px;
}

.input-group.half {
    flex: 1;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.address-input,
.form-input,
.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--surface);
    color: var(--text-primary);
    letter-spacing: -0.022em;
    box-shadow: var(--shadow-xs);
}

.content-wrapper.full-width .address-input,
.content-wrapper.full-width .form-input,
.content-wrapper.full-width .form-select {
    padding: 8px 12px;
    font-size: 13px;
}

.address-input {
    padding-left: 18px;
    padding-right: 18px;
}

.form-input:focus,
.form-select:focus,
.address-input:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), var(--shadow-md);
    transform: translateY(-2px);
}

.input-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: -0.01em;
}

/* Premium Building Info */
.building-details-container {
    padding: 0;
}

.building-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: none;
    overflow-y: visible;
}

.content-wrapper.full-width .building-info-grid {
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
    max-height: none;
}

.building-section {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.content-wrapper.full-width .building-section {
    padding: 16px;
    height: auto;
    min-height: auto;
}

.building-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 165, 111, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.building-section:hover {
    border-color: var(--primary-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.checkbox-group {
    margin: 12px 0;
}

.content-wrapper.full-width .checkbox-group {
    margin: 6px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-primary);
    position: relative;
    padding: 12px 0 12px 36px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    letter-spacing: -0.022em;
}

.content-wrapper.full-width .checkbox-label {
    padding: 8px 0 8px 32px;
    font-size: 13px;
}

.checkbox-label:hover {
    background: rgba(58, 165, 111, 0.04);
    padding-left: 40px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkbox-label:hover input ~ .checkmark {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-50%) scale(1.05);
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.input-with-unit {
    position: relative;
}

.input-unit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--text-secondary);
    pointer-events: none;
    font-weight: 500;
}

/* Premium Furniture Categories */
.furniture-categories {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 12px;
}

.furniture-categories::-webkit-scrollbar {
    width: 8px;
}

.furniture-categories::-webkit-scrollbar-track {
    background: var(--background-secondary);
    border-radius: 4px;
}

.furniture-categories::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.furniture-categories::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.category-section {
    margin-bottom: 16px;
}

.category-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-accent);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.category-title::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
    border-radius: 1px;
}

.furniture-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.furniture-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}

.furniture-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 165, 111, 0.05) 0%, rgba(79, 179, 120, 0.05) 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.furniture-item:hover {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.furniture-item:hover::before {
    left: 0;
}

.item-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: -0.01em;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-accent);
    background: var(--surface);
    color: var(--primary-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.qty-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    z-index: -1;
}

.qty-btn:hover::before {
    transform: scale(1);
}

.qty-btn:hover {
    color: white;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.quantity {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    min-width: 28px;
    text-align: center;
    padding: 6px 10px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-xs);
}

/* Premium Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 12px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: none;
    overflow-y: visible;
}

.content-wrapper.full-width .services-grid {
    max-width: 800px;
    margin: 0 auto 12px auto;
    grid-template-columns: repeat(2, 1fr);
    max-height: none;
}

.service-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    box-shadow: var(--shadow-md);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 165, 111, 0.03) 0%, rgba(79, 179, 120, 0.03) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.service-item:hover {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}

.service-item:hover::before {
    opacity: 1;
}

.service-label {
    display: block;
    cursor: pointer;
    height: 100%;
}

.service-checkbox {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
}

.service-content {
    padding: 16px;
    padding-right: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.service-description {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1;
    letter-spacing: -0.022em;
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: auto;
    letter-spacing: -0.02em;
}

.moving-date-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--divider);
}

/* Premium Contact Form */
.contact-form {
    max-width: 480px;
    max-height: none;
    overflow-y: visible;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-wrapper.full-width .contact-form {
    max-width: 600px;
    margin: 0 auto;
    max-height: none;
}

.privacy-notice {
    margin-top: 24px;
    padding: 20px;
    background: rgba(58, 165, 111, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(58, 165, 111, 0.08);
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-xs);
}

.privacy-link {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.privacy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Premium Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--divider);
}

.nav-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 140px;
    letter-spacing: -0.01em;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.prev-btn {
    background: var(--surface);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.prev-btn:hover {
    background: var(--surface-elevated);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.next-btn,
.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid transparent;
    box-shadow: var(--shadow-md);
}

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

.next-btn:hover,
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05);
}

.next-btn:hover::before,
.submit-btn:hover::before {
    left: 100%;
}

/* Premium Benefits Section */
.benefits-section {
    position: sticky;
    top: 80px;
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefits-section.hidden {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    visibility: hidden;
}

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

.benefits-card {
    background: var(--gradient-primary);
    color: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(246, 213, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.14286;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
}

.benefits-subtitle {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
    letter-spacing: -0.022em;
}

.benefits-items {
    list-style: none;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.47059;
    padding: 8px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: -0.022em;
}

.benefit-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding-left: 12px;
}

.check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.cert-badge,
.klarna-badge {
    max-width: 140px;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.1);
}

.cert-badge:hover,
.klarna-badge:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}



/* HIGH-END MOBILE DESIGN - PREMIUM EXPERIENCE */

/* Tablet Optimization */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .content-wrapper.full-width {
        max-width: 100%;
    }

    .benefits-section {
        position: relative;
        top: auto;
    }

    .building-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-height: none;
    }

    .content-wrapper.full-width .building-info-grid {
        max-width: 100%;
        max-height: none;
    }

    .content-wrapper.full-width .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    /* Tablet: Smaller sticky sidebar */
    #step-3 .inventory-container {
        grid-template-columns: 1fr 280px;
        gap: 20px;
    }

    #step-3 .inventory-summary {
        padding: 16px;
    }

    .slider-container {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .range-slider {
        order: 1;
    }

    .slider-min,
    .slider-max {
        order: 0;
        align-self: stretch;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .slider-min::after {
        content: attr(data-max, "150");
    }

    .slider-max {
        display: none;
    }

    .slider-value-container {
        order: 2;
        align-self: center;
    }

    .notes-textarea {
        min-height: 60px;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .progress-steps {
        gap: 40px;
    }
}

/* PREMIUM MOBILE EXPERIENCE - 768px AND BELOW */
@media (max-width: 768px) {
    /* Mobile-First Container */
    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Premium Mobile Header - Force Light Theme */
    .header, .header.dark-mode, body.dark-mode .header {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: saturate(180%) blur(30px);
        -webkit-backdrop-filter: saturate(180%) blur(30px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid #e5e7eb !important;
    }

    .header-content {
        height: 76px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 0;
    }

    .logo-img {
        height: 65px;
        width: auto;
    }

    .contact-info {
        gap: 12px;
        flex-shrink: 0;
    }

    .phone-link {
        font-size: 11px;
        padding: 8px 14px;
        min-width: auto;
        white-space: nowrap;
    }

    /* Mobile Progress Container - Professional Design */
    .progress-container, body.dark-mode .progress-container {
        padding: 20px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
        border-bottom: 1px solid #e2e8f0 !important;
        border-top: none !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .progress-steps {
        display: flex;
        justify-content: space-between;
        gap: 6px;
        max-width: 100%;
        padding: 0 16px;
        flex-wrap: nowrap;
        overflow-x: visible;
        align-items: center;
        position: relative;
    }

    .progress-steps::before {
        left: 10%;
        right: 10%;
        top: 20px;
        height: 3px;
    }

    .progress-steps::after {
        left: 10%;
        top: 20px;
        height: 3px;
    }

    .step {
        min-width: 70px;
        padding: 8px 4px;
        text-align: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .step-number, body.dark-mode .step-number {
        width: 36px;
        height: 36px;
        font-size: 15px;
        font-weight: 800;
        margin: 0 auto 8px auto;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
        color: #64748b !important;
        border: 2px solid #e2e8f0 !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.05),
            0 2px 4px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10;
    }

    /* Active Step */
    .step.active .step-number, body.dark-mode .step.active .step-number {
        background: var(--gradient-primary) !important;
        color: white !important;
        border-color: var(--primary-color) !important;
        transform: scale(1.15);
        box-shadow:
            0 6px 20px rgba(220, 38, 38, 0.4),
            0 3px 10px rgba(220, 38, 38, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
        animation: pulse-active 2s ease-in-out infinite;
    }

    /* Completed Step */
    .step.completed .step-number, body.dark-mode .step.completed .step-number {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
        color: white !important;
        border-color: #10b981 !important;
        transform: scale(1.1);
        box-shadow:
            0 4px 16px rgba(16, 185, 129, 0.3),
            0 2px 8px rgba(16, 185, 129, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    }

    @keyframes pulse-active {
        0%, 100% {
            box-shadow:
                0 6px 20px rgba(220, 38, 38, 0.4),
                0 3px 10px rgba(220, 38, 38, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }
        50% {
            box-shadow:
                0 8px 28px rgba(220, 38, 38, 0.5),
                0 4px 14px rgba(220, 38, 38, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }
    }

    .step-label, body.dark-mode .step-label {
        font-size: 10px;
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: 0.5px;
        color: #64748b !important;
        text-transform: uppercase;
        transition: all 0.3s ease;
        text-shadow: none !important;
    }

    .step.active .step-label, body.dark-mode .step.active .step-label {
        color: var(--primary-color) !important;
        font-weight: 800;
        transform: scale(1.05);
    }

    .step.completed .step-label, body.dark-mode .step.completed .step-label {
        color: #10b981 !important;
        font-weight: 700;
    }

    /* Professional Connection Line */
    .progress-steps::before {
        content: '';
        position: absolute;
        top: 26px;
        left: calc(10% + 18px);
        right: calc(10% + 18px);
        height: 3px;
        background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
        border-radius: 2px;
        z-index: 1;
    }

    .progress-steps::after {
        content: '';
        position: absolute;
        top: 26px;
        left: calc(10% + 18px);
        width: calc(var(--progress-width, 0%) * 0.8);
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 2px;
        z-index: 2;
        transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 1px 3px rgba(220, 38, 38, 0.3);
    }

    /* Premium Mobile Form - Force Light Theme */
    .main-content {
        padding: 24px 0 32px 0;
        background: #fafafa !important;
    }

    .form-section, body.dark-mode .form-section {
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 24px;
        margin: 0 8px;
        overflow: hidden;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.08),
            0 8px 24px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    }

    .guarantee-banner, body.dark-mode .guarantee-banner {
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(239, 68, 68, 0.06) 100%) !important;
        padding: 20px 24px;
        border-radius: 0;
        border-bottom: 1px solid rgba(220, 38, 38, 0.1) !important;
    }

    .guarantee-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .moving-form, body.dark-mode .moving-form {
        padding: 24px 20px 20px 20px;
        background: transparent !important;
        color: #1d1d1f !important;
    }

    .content-wrapper.full-width .moving-form {
        padding: 28px 24px 24px 24px;
    }

    /* Mobile Step Headers */
    .step-header {
        margin-bottom: 24px;
        text-align: center;
    }

    .step-title, body.dark-mode .step-title {
        font-size: 24px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
        color: #1d1d1f !important;
    }

    .step-subtitle, body.dark-mode .step-subtitle {
        font-size: 16px;
        line-height: 1.5;
        color: #64748b !important;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Mobile Address Sections - Force Light */
    .address-section, body.dark-mode .address-section {
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.04),
            0 4px 16px rgba(0, 0, 0, 0.02),
            inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    }

    .address-section:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }

    .section-title, body.dark-mode .section-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: center;
        color: #1d1d1f !important;
    }

    .section-title svg {
        width: 18px;
        height: 18px;
    }

    /* Mobile Input Groups */
    .input-group {
        margin-bottom: 16px;
    }

    .input-row {
        flex-direction: column;
        gap: 16px;
    }

    .address-input,
    .form-input,
    .form-select,
    body.dark-mode .address-input,
    body.dark-mode .form-input,
    body.dark-mode .form-select {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 16px;
        border: 2px solid #e2e8f0 !important;
        min-height: 56px;
        background: rgba(255, 255, 255, 0.95) !important;
        color: #1d1d1f !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow:
            0 2px 8px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    }

    .address-input:focus,
    .form-input:focus,
    .form-select:focus {
        transform: translateY(-2px);
        box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .input-label, body.dark-mode .input-label {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: -0.01em;
        color: #1d1d1f !important;
    }

    /* Mobile Building Grid - Force Light */
    .building-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .building-section, body.dark-mode .building-section {
        padding: 24px 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid #e2e8f0 !important;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.04),
            0 4px 16px rgba(0, 0, 0, 0.02),
            inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    }

    .building-section:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    }

    .building-section .section-title {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--primary-color);
        margin-bottom: 20px;
        justify-content: flex-start;
    }

    /* Mobile Checkboxes */
    .checkbox-group {
        margin: 16px 0;
    }

    .checkbox-label {
        padding: 16px 20px 16px 60px;
        background: var(--surface);
        border-radius: 16px;
        margin-bottom: 12px;
        border: 2px solid var(--border-light);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .checkbox-label:hover {
        background: rgba(58, 165, 111, 0.04);
        border-color: var(--primary-accent);
        transform: translateX(4px);
    }

    .checkmark {
        width: 24px;
        height: 24px;
        left: 20px;
        border-radius: 8px;
    }

    /* Mobile Sliders */
    .slider-group {
        margin-bottom: 20px;
    }

    .slider-label {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 16px;
        text-align: center;
    }

    .slider-subtitle {
        font-size: 13px;
        margin-top: 8px;
        text-align: center;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .slider-container {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
        background: var(--surface-elevated);
    }

    .range-slider {
        order: 2;
        height: 8px;
        border-radius: 4px;
    }

    .range-slider::-webkit-slider-thumb {
        width: 24px;
        height: 24px;
        border: 3px solid white;
        box-shadow: 0 4px 16px rgba(58, 165, 111, 0.3);
    }

    .slider-min,
    .slider-max {
        order: 1;
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 13px;
        font-weight: 600;
    }

    .slider-min::after {
        content: attr(data-max, "150");
    }

    .slider-max {
        display: none;
    }

    .slider-value-container {
        order: 3;
        align-self: center;
    }

    .slider-input {
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 12px;
        min-width: 80px;
        text-align: center;
        font-weight: 700;
    }

    /* Mobile Notes */
    .notes-section {
        margin-top: 20px;
    }

    .notes-title {
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 12px;
        text-align: center;
        letter-spacing: 1px;
    }

    .notes-textarea {
        min-height: 80px;
        font-size: 16px;
        padding: 20px;
        border-radius: 16px;
        border-width: 2px;
        line-height: 1.6;
    }

    .notes-textarea:focus {
        transform: translateY(-2px);
        box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    /* Mobile Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .content-wrapper.full-width .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .services-compact {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 24px;
    }

    .service-checkbox-item {
        padding: 20px;
        border-radius: 16px;
        margin-bottom: 16px;
        background: var(--surface-elevated);
        border-width: 2px;
    }

    .service-checkbox-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .service-checkbox-label {
        font-size: 15px;
        font-weight: 600;
        padding: 0;
        gap: 16px;
    }

    .service-checkbox-label .checkmark {
        width: 24px;
        height: 24px;
        border-radius: 8px;
        margin-right: 0;
    }

    .service-name {
        flex: 1;
        line-height: 1.4;
    }

    .service-details {
        margin-top: 20px;
        padding: 20px;
        border-radius: 12px;
        background: rgba(58, 165, 111, 0.05);
    }

    .service-details .form-input {
        padding: 16px 20px;
        border-radius: 12px;
    }

    /* Mobile Date Range */
    .date-range-container {
        padding: 24px 20px;
        border-radius: 20px;
        margin-bottom: 20px;
        background: var(--surface-elevated);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    }

    .date-input {
        padding: 16px 20px !important;
        font-size: 16px !important;
        border-radius: 16px !important;
        border-width: 2px !important;
        min-height: 56px !important;
    }

    .date-range-hint {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 16px;
        margin-top: 16px;
    }

    /* Mobile Navigation */
    .form-navigation {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        padding: 32px 20px 24px 20px;
        border-top: 1px solid var(--border);
    }

    .nav-btn {
        width: 100%;
        padding: 18px 32px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 16px;
        min-height: 56px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .prev-btn {
        order: 2;
    }

    .next-btn,
    .submit-btn {
        order: 1;
        box-shadow: 0 8px 32px rgba(58, 165, 111, 0.3);
    }

    /* Mobile Benefits */
    .benefits-section {
        margin-top: 24px;
        max-height: none;
        overflow-y: visible;
    }

    .benefits-card {
        padding: 24px 20px;
        border-radius: 24px;
        margin: 0 8px;
    }

    .benefits-title {
        font-size: 20px;
        line-height: 1.2;
        text-align: center;
    }

    .benefits-subtitle {
        font-size: 15px;
        text-align: center;
        margin-bottom: 24px;
    }

    .benefits-items {
        margin-bottom: 24px;
    }

    .benefit-item {
        font-size: 14px;
        padding: 12px 0;
        justify-content: center;
        text-align: left;
    }

    .benefit-item:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .check-icon {
        width: 16px;
        height: 16px;
    }

    .certifications {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
    }

    .cert-badge,
    .klarna-badge {
        max-width: 120px;
    }

    /* Mobile Language & Theme */
    .language-select {
        order: 1;
    }

    .current-lang {
        padding: 10px 16px;
        padding-right: 40px;
        font-size: 12px;
        min-width: 100px;
        border-radius: 16px;
    }

    .current-lang::before {
        width: 16px;
        height: 12px;
        left: 10px;
    }

    .current-lang::after {
        right: 10px;
    }

    .lang-dropdown {
        right: auto;
        left: 0;
        min-width: 120px;
        border-radius: 16px;
        padding: 8px;
    }

    .lang-dropdown button {
        padding: 12px 16px;
        font-size: 12px;
        border-radius: 12px;
    }

    .dark-mode-toggle {
        width: 40px;
        height: 40px;
        margin: 0 8px;
        border-radius: 12px;
    }

    .dark-mode-toggle .sun-icon,
    .dark-mode-toggle .moon-icon {
        width: 18px;
        height: 18px;
    }

/* Consistent Light Theme for all elements */
body.dark-mode .service-checkbox-item {
    background: var(--surface);
}

body.dark-mode .service-details {
    background: rgba(58, 165, 111, 0.05);
}

body.dark-mode .service-details .form-input {
    background: var(--surface);
    color: var(--text-primary);
}

body.dark-mode .inventory-item {
    background: var(--surface);
}

body.dark-mode .date-range-container {
    background: var(--surface);
}

body.dark-mode .date-input {
    background: var(--surface) !important;
    color: var(--text-primary) !important;
}

body.dark-mode .date-input::-webkit-calendar-picker-indicator {
    filter: none;
}

/* Dark Mode Progress Bar */
body.dark-mode .progress-container {
    background:
        linear-gradient(135deg, rgba(28, 28, 30, 0.95) 0%, rgba(28, 28, 30, 0.85) 100%),
        linear-gradient(45deg, rgba(58, 165, 111, 0.06) 0%, rgba(79, 179, 120, 0.06) 50%, rgba(246, 213, 92, 0.03) 100%);
    border-bottom: 1px solid rgba(58, 165, 111, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .progress-container::before {
    background:
        radial-gradient(circle at 20% 20%, rgba(58, 165, 111, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(79, 179, 120, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(246, 213, 92, 0.05) 0%, transparent 30%);
}

body.dark-mode .step {
    background: transparent;
}

body.dark-mode .step:hover {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.dark-mode .step-number {
    background: linear-gradient(135deg,
        rgba(44, 44, 46, 0.9) 0%,
        rgba(28, 28, 30, 0.9) 100%);
    color: var(--text-tertiary);
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}

body.dark-mode .step.active .step-number {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        var(--primary-accent) 50%,
        var(--secondary-color) 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow:
        0 8px 32px rgba(58, 165, 111, 0.6),
        0 4px 16px rgba(58, 165, 111, 0.4),
        0 2px 8px rgba(58, 165, 111, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

body.dark-mode .step.completed .step-number {
    background: linear-gradient(135deg,
        var(--primary-accent) 0%,
        var(--secondary-color) 100%);
    color: white;
    border-color: var(--primary-accent);
    box-shadow:
        0 6px 24px rgba(79, 179, 120, 0.5),
        0 3px 12px rgba(79, 179, 120, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

body.dark-mode .step-label {
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body.dark-mode .step.active .step-label {
    color: var(--primary-accent);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body.dark-mode .step.completed .step-label {
    color: var(--primary-accent);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.dark-mode .progress-steps::before {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .progress-bar {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    box-shadow:
        inset 0 1px 2px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(255, 255, 255, 0.1);
}

/* Dark Mode Language Switcher */
body.dark-mode .current-lang {
    background: var(--surface);
    color: var(--text-primary);
    border-color: var(--border);
}

body.dark-mode .current-lang:hover {
    background: var(--surface-elevated);
    border-color: var(--border);
}

body.dark-mode .lang-dropdown {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: var(--shadow-lg);
}

body.dark-mode .lang-dropdown button {
    color: var(--text-primary);
    background: transparent;
}

body.dark-mode .lang-dropdown button:hover {
    background: var(--surface-elevated);
    color: var(--text-primary);
}

/* Dark Mode Slider Inputs */
body.dark-mode .slider-input {
    background: var(--surface);
    color: var(--text-primary);
    border-color: var(--border);
}

body.dark-mode .slider-input:focus {
    background: var(--surface-elevated);
    color: var(--text-primary);
    border-color: var(--primary-accent);
}

body.dark-mode .slider-container {
    background: var(--surface);
    border-color: var(--border);
}

/* Dark Mode Inventory Items */
body.dark-mode .inventory-item {
    background: var(--surface);
    border-color: var(--border);
}

body.dark-mode .inventory-item:hover {
    background: var(--surface-elevated);
    border-color: var(--primary-accent);
}

body.dark-mode .inventory-item .item-name {
    color: var(--text-primary);
}

body.dark-mode .qty-control-btn {
    background: var(--surface);
    color: var(--text-primary);
    border-color: var(--border);
}

body.dark-mode .qty-control-btn:hover {
    background: var(--primary-accent);
    color: white;
    border-color: var(--primary-accent);
}

body.dark-mode .qty-display {
    background: var(--surface-elevated);
    color: var(--text-primary);
    border-color: var(--border);
}

body.dark-mode .inventory-items-container {
    background: var(--surface);
    border-color: var(--border);
}

body.dark-mode .inventory-summary {
    background: var(--surface);
    border-color: var(--border);
}

body.dark-mode .summary-title,
body.dark-mode .selected-items-title {
    color: var(--text-secondary);
}

body.dark-mode .stat-label {
    color: var(--text-secondary);
}

body.dark-mode .stat-value {
    color: var(--text-primary);
}

body.dark-mode .selected-item-name {
    color: var(--text-primary);
}

body.dark-mode .selected-item-quantity {
    color: var(--primary-color);
}

body.dark-mode .no-items-selected {
    color: var(--text-tertiary);
}

body.dark-mode .volume-text {
    color: var(--text-secondary);
}

/* Dark Mode Service Checkbox Items */
body.dark-mode .service-checkbox-item {
    background: var(--surface);
    border-color: var(--border);
}

body.dark-mode .service-checkbox-item:hover {
    background: var(--surface-elevated);
    border-color: var(--primary-accent);
}

body.dark-mode .service-name {
    color: var(--text-primary);
}

body.dark-mode .service-checkbox-label:hover .service-name {
    color: var(--primary-color);
}

body.dark-mode .service-checkbox-label .checkmark {
    background: var(--surface);
    border-color: var(--border);
}

body.dark-mode .service-checkbox-label:hover .checkmark {
    border-color: var(--primary-accent);
}

body.dark-mode .service-checkbox-label input:checked ~ .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

body.dark-mode .services-compact {
    background: var(--surface);
    border-color: var(--border);
}

/* Dark Mode Category Navigation */
body.dark-mode .category-navigation {
    background: var(--surface);
    border-color: var(--border);
}

body.dark-mode .category-nav-title {
    color: var(--text-secondary);
}

body.dark-mode .category-btn {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border);
}

body.dark-mode .category-btn:hover {
    color: var(--primary-color);
    background: rgba(58, 165, 111, 0.08);
}

body.dark-mode .category-btn.active {
    background: var(--gradient-primary);
    color: white;
}

/* Dark Mode Search */
body.dark-mode .search-input {
    background: var(--surface);
    color: var(--text-primary);
    border-color: var(--border);
}

body.dark-mode .search-input:focus {
    background: var(--surface-elevated);
    border-color: var(--primary-accent);
}

body.dark-mode .search-input::placeholder {
    color: var(--text-tertiary);
}

body.dark-mode .search-icon,
body.dark-mode .search-clear {
    color: var(--text-secondary);
}

body.dark-mode .search-clear:hover {
    background: var(--surface-elevated);
    color: var(--text-primary);
}

/* Dark Mode Additional Info */
body.dark-mode .additional-info-textarea {
    background: var(--surface);
    color: var(--text-primary);
    border-color: var(--border);
}

body.dark-mode .additional-info-textarea:focus {
    background: var(--surface-elevated);
    border-color: var(--primary-accent);
}

body.dark-mode .additional-info-textarea::placeholder {
    color: var(--text-tertiary);
}

body.dark-mode .info-section-title {
    color: var(--text-primary);
}

/* CRITICAL DARK MODE OVERRIDES - WITH !IMPORTANT */
body.dark-mode .step-number {
    background: linear-gradient(135deg, rgba(44, 44, 46, 0.9) 0%, rgba(28, 28, 30, 0.9) 100%) !important;
    color: #6d6d70 !important;
    border: 3px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .step-label {
    color: #a1a1a6 !important;
}

body.dark-mode .current-lang {
    background: rgba(28, 28, 30, 0.95) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .slider-input {
    background: rgba(28, 28, 30, 0.95) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .inventory-item {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .inventory-item .item-name {
    color: #ffffff !important;
}

body.dark-mode .qty-control-btn {
    background: rgba(28, 28, 30, 0.95) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .qty-display {
    background: rgba(44, 44, 46, 0.98) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .service-checkbox-item {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .service-name {
    color: #ffffff !important;
}

body.dark-mode .service-checkbox-label .checkmark {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .progress-container {
    background: linear-gradient(135deg, rgba(28, 28, 30, 0.95) 0%, rgba(28, 28, 30, 0.85) 100%) !important;
    border-bottom: 1px solid rgba(58, 165, 111, 0.15) !important;
}

body.dark-mode .form-section {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .building-section {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .address-section {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .form-input,
body.dark-mode .form-select,
body.dark-mode .address-input {
    background: rgba(28, 28, 30, 0.95) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

body.dark-mode .input-label {
    color: #ffffff !important;
}

body.dark-mode .section-title {
    color: #ffffff !important;
}

body.dark-mode .step-title {
    color: #ffffff !important;
}

body.dark-mode .step-subtitle {
    color: #a1a1a6 !important;
}

/* Dark Mode Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* =================================================================== */
/* LIGHT MODE - CONSISTENT THEME OVERRIDES */
/* =================================================================== */

/* Force Light Mode Body for consistency */
html body.dark-mode {
    background: #fafafa !important;
    color: #1d1d1f !important;
}

/* Progress Container Light Mode */
html body.dark-mode .progress-container {
    background: var(--surface-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
    border-top: none !important;
}

/* Progress Steps Light Mode */
html body.dark-mode .step-number {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.9) 100%) !important;
    color: var(--text-tertiary) !important;
    border: 3px solid rgba(229, 231, 235, 0.6) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

html body.dark-mode .step.active .step-number {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%) !important;
    color: white !important;
    border-color: #dc2626 !important;
    box-shadow: 0 8px 32px rgba(58, 165, 111, 0.6) !important;
}

html body.dark-mode .step.completed .step-number {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%) !important;
    color: white !important;
    border-color: #ef4444 !important;
    box-shadow: 0 6px 24px rgba(79, 179, 120, 0.5) !important;
}

html body.dark-mode .step-label {
    color: #a1a1a6 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

html body.dark-mode .step.active .step-label {
    color: #ef4444 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
}

html body.dark-mode .step.completed .step-label {
    color: #ef4444 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Language Switcher Dark Mode */
html body.dark-mode .current-lang {
    background: rgba(28, 28, 30, 0.95) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .current-lang:hover {
    background: rgba(44, 44, 46, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

html body.dark-mode .lang-dropdown {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6) !important;
}

html body.dark-mode .lang-dropdown button {
    color: #ffffff !important;
    background: transparent !important;
}

html body.dark-mode .lang-dropdown button:hover {
    background: rgba(44, 44, 46, 0.98) !important;
    color: #ffffff !important;
}

/* Form Elements Dark Mode */
html body.dark-mode .form-section {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

html body.dark-mode .guarantee-banner {
    background: linear-gradient(135deg, rgba(58, 165, 111, 0.12) 0%, rgba(79, 179, 120, 0.12) 100%) !important;
}

html body.dark-mode .form-input,
html body.dark-mode .form-select,
html body.dark-mode .address-input,
html body.dark-mode .slider-input {
    background: rgba(28, 28, 30, 0.95) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .form-input:focus,
html body.dark-mode .form-select:focus,
html body.dark-mode .address-input:focus,
html body.dark-mode .slider-input:focus {
    background: rgba(44, 44, 46, 0.98) !important;
    color: #ffffff !important;
    border-color: #ef4444 !important;
}

html body.dark-mode .input-label,
html body.dark-mode .section-title,
html body.dark-mode .step-title {
    color: #ffffff !important;
}

html body.dark-mode .step-subtitle {
    color: #a1a1a6 !important;
}

html body.dark-mode .address-section,
html body.dark-mode .building-section {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .slider-container {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Inventory Dark Mode */
html body.dark-mode .inventory-item {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .inventory-item:hover {
    background: rgba(44, 44, 46, 0.98) !important;
    border-color: #ef4444 !important;
}

html body.dark-mode .inventory-item .item-name {
    color: #ffffff !important;
}

html body.dark-mode .qty-control-btn {
    background: rgba(28, 28, 30, 0.95) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .qty-control-btn:hover {
    background: #ef4444 !important;
    color: white !important;
    border-color: #ef4444 !important;
}

html body.dark-mode .qty-display {
    background: rgba(44, 44, 46, 0.98) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .inventory-items-container,
html body.dark-mode .inventory-summary {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .category-navigation {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .category-btn {
    background: transparent !important;
    color: #a1a1a6 !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .category-btn:hover {
    color: #ef4444 !important;
    background: rgba(58, 165, 111, 0.12) !important;
}

html body.dark-mode .category-btn.active {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
    color: white !important;
}

/* Services Dark Mode */
html body.dark-mode .service-checkbox-item {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .service-checkbox-item:hover {
    background: rgba(44, 44, 46, 0.98) !important;
    border-color: #ef4444 !important;
}

html body.dark-mode .service-name {
    color: #ffffff !important;
}

html body.dark-mode .service-checkbox-label .checkmark {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

html body.dark-mode .service-checkbox-label:hover .checkmark {
    border-color: #ef4444 !important;
}

html body.dark-mode .service-checkbox-label input:checked ~ .checkmark {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
    border-color: #dc2626 !important;
}

html body.dark-mode .services-compact {
    background: rgba(28, 28, 30, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Benefits Section Dark Mode */
html body.dark-mode .benefits-card {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}
}

@media (max-width: 480px) {
    .progress-steps {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
    }

    .progress-steps::before {
        left: 10%;
        right: 10%;
    }

    .progress-steps::after {
        left: 10%;
    }

    .main-content {
        padding: 24px 0;
    }

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

    .step-subtitle {
        font-size: 15px;
    }
}

/* Form Validation */
.form-input.error,
.form-select.error,
.address-input.error {
    border-color: #ff3b30;
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.08);
    background: rgba(254, 242, 242, 0.8);
}

.error-message {
    color: #ff3b30;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    display: block;
    padding: 10px 14px;
    background: rgba(254, 242, 242, 0.8);
    border-radius: 8px;
    border-left: 3px solid #ff3b30;
    letter-spacing: -0.01em;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Premium Slider Components */
.slider-group {
    margin-bottom: 16px;
}

.content-wrapper.full-width .slider-group {
    margin-bottom: 6px;
}

.slider-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: -0.01em;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.content-wrapper.full-width .slider-label {
    margin-bottom: 6px;
    font-size: 12px;
}

.slider-subtitle {
    display: block;
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.3;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    position: relative;
}

.content-wrapper.full-width .slider-container {
    padding: 12px 16px;
}

.range-slider {
    flex: 1;
    height: 6px;
    background: linear-gradient(90deg,
        rgba(229, 231, 235, 0.6) 0%,
        rgba(229, 231, 235, 0.8) 100%);
    border-radius: 3px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow:
        0 2px 8px rgba(58, 165, 111, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid white;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow:
        0 4px 16px rgba(58, 165, 111, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow:
        0 2px 8px rgba(58, 165, 111, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow:
        0 4px 16px rgba(58, 165, 111, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-min,
.slider-max {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 20px;
    text-align: center;
}

.slider-value-container {
    position: relative;
    min-width: 60px;
}

.slider-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    background: white;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
}

.slider-input:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(58, 165, 111, 0.1), var(--shadow-sm);
}

/* Premium Notes Section */
.notes-section {
    margin-top: 16px;
}

.content-wrapper.full-width .notes-section {
    margin-top: 6px;
}

.notes-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-wrapper.full-width .notes-title {
    margin-bottom: 6px;
    font-size: 11px;
}

.notes-textarea {
    width: 100%;
    min-height: 60px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--surface);
    resize: vertical;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
}

.content-wrapper.full-width .notes-textarea {
    min-height: 60px;
    padding: 12px 16px;
    font-size: 14px;
}

.notes-textarea::placeholder {
    color: var(--text-tertiary);
    font-style: italic;
}

.notes-textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), var(--shadow-md);
    transform: translateY(-2px);
}

/* Info Icon */
.info-icon {
    width: 16px;
    height: 16px;
    color: var(--text-secondary);
    cursor: help;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

.info-icon:hover {
    color: var(--primary-accent);
    transform: scale(1.1);
}

/* Success/Error Overlays */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    box-shadow: var(--shadow-premium);
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.success-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.error-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ff3b30;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    animation: slideInRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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



/* Success Page Styles */
.success-page {
    background: var(--glass-strong);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-page-content {
    padding: 40px;
    text-align: center;
}

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

.success-icon {
    color: var(--primary-color);
    margin-bottom: 24px;
    animation: successPulse 2s ease-in-out infinite;
}

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

.success-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.success-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.success-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.success-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.success-btn {
    padding: 14px 32px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 180px;
    letter-spacing: -0.01em;
    font-family: inherit;
    border: none;
}

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

.success-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.success-btn.secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.success-btn.secondary:hover {
    background: var(--surface-elevated);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.success-footer {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.success-footer p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-link {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-accent);
    transform: scale(1.05);
}

.contact-hours {
    font-size: 12px;
    color: var(--text-tertiary);
    font-style: italic;
}

/* Responsive Success Page */
@media (max-width: 768px) {
    .success-page-content {
        padding: 24px;
    }

    .success-title {
        font-size: 24px;
    }

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

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-btn {
        min-width: 200px;
    }

    .success-step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.nav-btn:focus,
.phone-link:focus,
.qty-btn:focus,
.step:focus {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
}

/* Dark Mode Support */
body.dark-mode {
    --background: #0a0a0a;
    --background-secondary: #1a1a1a;
    --surface: rgba(28, 28, 30, 0.95);
    --surface-elevated: rgba(44, 44, 46, 0.98);
    --glass: rgba(20, 20, 22, 0.85);
    --glass-strong: rgba(28, 28, 30, 0.95);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a1a1a6;
    --text-tertiary: #6d6d70;
    --border: rgba(255, 255, 255, 0.12);
    --border-light: rgba(255, 255, 255, 0.06);
    --divider: rgba(255, 255, 255, 0.15);

    /* Dark mode shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 80px rgba(0, 0, 0, 0.7);
    --shadow-premium: 0 32px 120px rgba(0, 0, 0, 0.8);
}

body.dark-mode {
    background: var(--background);
    color: var(--text-primary);
}

body.dark-mode::before {
    background:
        radial-gradient(circle at 20% 80%, rgba(58, 165, 111, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 179, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(246, 213, 92, 0.05) 0%, transparent 50%);
}

/* Auto Dark Mode Support (fallback) */
@media (prefers-color-scheme: dark) {
    body:not(.light-mode) {
        --background: #0a0a0a;
        --background-secondary: #1a1a1a;
        --surface: rgba(28, 28, 30, 0.95);
        --surface-elevated: rgba(44, 44, 46, 0.98);
        --glass: rgba(20, 20, 22, 0.85);
        --glass-strong: rgba(28, 28, 30, 0.95);
        --glass-border: rgba(255, 255, 255, 0.1);
        --text-primary: #ffffff;
        --text-secondary: #a1a1a6;
        --text-tertiary: #6d6d70;
        --border: rgba(255, 255, 255, 0.12);
        --border-light: rgba(255, 255, 255, 0.06);
        --divider: rgba(255, 255, 255, 0.15);

        /* Dark mode shadows */
        --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.3);
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
        --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
        --shadow-xl: 0 16px 80px rgba(0, 0, 0, 0.7);
        --shadow-premium: 0 32px 120px rgba(0, 0, 0, 0.8);
    }

    body:not(.light-mode)::before {
        background:
            radial-gradient(circle at 20% 80%, rgba(58, 165, 111, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(79, 179, 120, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(246, 213, 92, 0.05) 0%, transparent 50%);
    }
}

/* Premium Date Range Picker Styling */
.date-range-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.date-range-container:hover {
    border-color: var(--primary-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.date-input {
    cursor: pointer;
    position: relative;
    background: var(--surface) !important;
    border: 2px solid var(--border) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 16px !important;
    font-family: inherit !important;
    color: var(--text-primary) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: var(--shadow-xs) !important;
    font-weight: 500 !important;
}

.date-input:focus {
    outline: none !important;
    border-color: var(--primary-accent) !important;
    box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), var(--shadow-md) !important;
    transform: translateY(-2px) !important;
}

.date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    border-radius: 4px;
    margin-left: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    color: var(--primary-color);
}

.date-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    background: var(--primary-accent);
}

.date-range-display {
    margin-top: 16px;
    text-align: center;
}

.date-range-hint {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(58, 165, 111, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    border: 1px solid rgba(58, 165, 111, 0.2);
}

.content-wrapper.full-width .date-range-container {
    padding: 16px;
    margin-bottom: 12px;
}

.content-wrapper.full-width .date-input {
    padding: 10px 14px;
    font-size: 14px;
}

/* Compact Services Styling */
.services-compact {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.services-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.service-checkbox-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-checkbox-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 165, 111, 0.05) 0%, rgba(79, 179, 120, 0.05) 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.service-checkbox-item:hover {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-checkbox-item:hover::before {
    left: 0;
}

.service-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: -0.022em;
    position: relative;
    padding: 0;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-checkbox-label:hover {
    color: var(--primary-color);
}

.service-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

.service-checkbox-label .checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 6px;
    margin-right: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.service-checkbox-label:hover .checkmark {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-sm);
    transform: scale(1.05);
}

.service-checkbox-label input:checked ~ .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-checkbox-label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.service-checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.service-name {
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    flex: 1;
}

.service-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    background: rgba(58, 165, 111, 0.02);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.service-details .input-group {
    margin-bottom: 0;
}

.service-details .input-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-details .form-input {
    border-color: var(--primary-accent);
    background: white;
}

.service-details .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 165, 111, 0.1), var(--shadow-sm);
}

/* Responsive Services */
@media (max-width: 768px) {
    .services-compact {
        padding: 16px;
    }

    .service-checkbox-item {
        padding: 12px 16px;
    }

    .service-checkbox-label {
        font-size: 14px;
    }

    .service-checkbox-label .checkmark {
        height: 18px;
        width: 18px;
        margin-right: 12px;
    }

    .service-details {
        padding: 12px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .services-checklist {
        gap: 12px;
    }

    .service-checkbox-item {
        padding: 10px 12px;
    }

    .service-checkbox-label {
        font-size: 13px;
    }
}

.date-range-input::placeholder {
    color: var(--text-tertiary) !important;
    font-style: italic !important;
}



/* ============================= */
/* NEW INVENTORY INTERFACE STYLES */
/* ============================= */

/* Inventory Container Layout */
.inventory-container {
    display: block;
    gap: 16px;
    min-height: 400px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Inventory Search */
.inventory-search {
    margin-bottom: 20px;
}

.search-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 12px 48px 12px 16px;
    border: 1px solid var(--border);
    border-radius: 25px;
    font-size: 14px;
    background: var(--surface);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(58, 165, 111, 0.1), var(--shadow-md);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-clear:hover {
    background: var(--background-secondary);
    color: var(--text-primary);
}

/* Category Navigation */
.category-navigation {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.category-nav-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.category-btn {
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    white-space: nowrap;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 165, 111, 0.08) 0%, rgba(79, 179, 120, 0.08) 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.category-btn:hover {
    color: var(--primary-color);
    background: rgba(58, 165, 111, 0.04);
    transform: translateX(4px);
}

.category-btn:hover::before {
    left: 0;
}

.category-btn.active {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.category-btn.active::before {
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

/* Main Inventory Area */
.inventory-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.inventory-items-container {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.inventory-items-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* Inventory Grid */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 12px;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.inventory-grid:not(.active) {
    display: none;
}

/* Inventory Items */
.inventory-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
    min-height: 64px;
}

.inventory-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 165, 111, 0.05) 0%, rgba(79, 179, 120, 0.05) 100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.inventory-item:hover {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.inventory-item:hover::before {
    left: 0;
}

.item-icon {
    width: 32px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 12px;
    flex-shrink: 0;
}

.item-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: -0.01em;
    margin-right: 12px;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.qty-control-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
}

.qty-control-btn:hover {
    border-color: var(--primary-accent);
    background: var(--primary-accent);
    color: white;
    transform: scale(1.1);
}

.qty-control-btn:active {
    transform: scale(0.95);
}

.qty-display {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    min-width: 24px;
    text-align: center;
    padding: 4px 8px;
    background: var(--background-secondary);
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

/* Inventory Summary */
.inventory-summary {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    margin-top: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Step 3 specific layout - sticky summary */
#step-3 .inventory-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

#step-3 .inventory-main {
    display: block;
    min-width: 0; /* Prevents grid overflow */
}

#step-3 .inventory-summary {
    position: sticky;
    top: 100px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    height: fit-content;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    max-width: 320px;
}

.summary-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.summary-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.volume-indicator {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.volume-bar {
    width: 100%;
    height: 6px;
    background: var(--background-secondary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.volume-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.volume-text {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Selected Items List */
.selected-items-list {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.selected-items-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.selected-items {
    max-height: 200px;
    overflow-y: auto;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 13px;
}

.selected-item:last-child {
    border-bottom: none;
}

.selected-item-name {
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
}

.selected-item-quantity {
    color: var(--primary-color);
    font-weight: 700;
    margin-left: 8px;
}

.no-items-selected {
    color: var(--text-tertiary);
    font-style: italic;
    font-size: 12px;
    text-align: center;
    padding: 16px 0;
}

/* Additional Information Section */
.additional-info-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.info-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.additional-info-textarea {
    width: 100%;
    min-height: 80px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--surface);
    resize: vertical;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-xs);
}

.additional-info-textarea::placeholder {
    color: var(--text-tertiary);
    font-style: italic;
}

.additional-info-textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), var(--shadow-md);
    transform: translateY(-2px);
}

/* PREMIUM MOBILE INVENTORY EXPERIENCE */
@media (max-width: 768px) {
    .inventory-container {
        gap: 20px;
        padding: 0;
    }

    /* Mobile: Stack layout instead of sticky */
    #step-3 .inventory-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #step-3 .inventory-summary {
        position: relative;
        top: auto;
        margin-top: 0;
        max-height: none;
        overflow-y: visible;
        order: 1;
    }

    #step-3 .inventory-main {
        order: 2;
    }

    /* Mobile Search */
    .inventory-search {
        margin-bottom: 24px;
    }

    .search-wrapper {
        max-width: 100%;
        margin: 0;
    }

    .search-input {
        padding: 16px 56px 16px 20px;
        font-size: 16px;
        border-radius: 20px;
        border-width: 2px;
        min-height: 52px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .search-input:focus {
        transform: translateY(-2px);
        box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    .search-icon,
    .search-clear {
        right: 20px;
        width: 20px;
        height: 20px;
    }

    .search-clear {
        padding: 8px;
        border-radius: 12px;
    }

    /* Mobile Category Navigation */
    .category-navigation {
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 24px;
        background: var(--surface-elevated);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    }

    .category-nav-title {
        font-size: 12px;
        font-weight: 800;
        margin-bottom: 20px;
        text-align: center;
        letter-spacing: 1.5px;
    }

    .category-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        justify-content: center;
    }

    .category-btn {
        padding: 12px 16px;
        font-size: 11px;
        font-weight: 700;
        min-width: auto;
        white-space: nowrap;
        border-radius: 16px;
        border-width: 2px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .category-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .category-btn.active {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 32px rgba(58, 165, 111, 0.3);
    }

    /* Mobile Inventory Grid */
    .inventory-items-container {
        padding: 24px 20px;
        border-radius: 20px;
        background: var(--surface-elevated);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    }

    .inventory-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 0;
    }

    .inventory-item {
        padding: 16px 20px;
        min-height: 64px;
        border-radius: 16px;
        border-width: 2px;
        background: var(--surface);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .inventory-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-accent);
    }

    .item-icon {
        width: 36px;
        height: 28px;
        margin-right: 16px;
        color: var(--primary-color);
    }

    .item-icon svg {
        width: 100%;
        height: 100%;
    }

    .item-name {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
        margin-right: 16px;
        letter-spacing: -0.01em;
    }

    /* Mobile Quantity Controls */
    .quantity-controls {
        gap: 12px;
        flex-shrink: 0;
    }

    .qty-control-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
        font-weight: 800;
        border-radius: 12px;
        border-width: 2px;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .qty-control-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 16px rgba(58, 165, 111, 0.3);
    }

    .qty-control-btn:active {
        transform: scale(0.95);
    }

    .qty-display {
        font-size: 16px;
        font-weight: 700;
        min-width: 32px;
        padding: 8px 12px;
        border-radius: 8px;
        border-width: 2px;
        background: var(--surface-elevated);
    }

    /* Mobile Inventory Summary */
    .inventory-summary {
        padding: 24px 20px;
        border-radius: 20px;
        margin: 0;
        background: var(--surface-elevated);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        border-width: 2px;
    }

    .summary-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
        text-align: center;
    }

    .summary-title {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .summary-stats {
        gap: 16px;
        margin-bottom: 24px;
    }

    .stat-item {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-label {
        font-size: 14px;
        font-weight: 600;
    }

    .stat-value {
        font-size: 16px;
        font-weight: 800;
    }

    .volume-indicator {
        margin-top: 20px;
        padding-top: 20px;
    }

    .volume-bar {
        height: 8px;
        border-radius: 4px;
        margin-bottom: 12px;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .volume-fill {
        border-radius: 4px;
    }

    .volume-text {
        font-size: 13px;
        font-weight: 600;
        text-align: center;
    }

    .selected-items-list {
        margin-top: 24px;
        padding-top: 20px;
    }

    .selected-items-title {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
        text-align: center;
    }

    .selected-items {
        max-height: 160px;
        overflow-y: auto;
        padding: 0 4px;
    }

    .selected-items::-webkit-scrollbar {
        width: 4px;
    }

    .selected-items::-webkit-scrollbar-track {
        background: var(--border-light);
        border-radius: 2px;
    }

    .selected-items::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 2px;
    }

    .selected-item {
        padding: 12px 0;
        font-size: 14px;
        border-bottom: 1px solid var(--border-light);
    }

    .selected-item:last-child {
        border-bottom: none;
    }

    .selected-item-name {
        font-weight: 600;
    }

    .selected-item-quantity {
        font-weight: 800;
        font-size: 15px;
    }

    .no-items-selected {
        font-size: 13px;
        padding: 20px 0;
        text-align: center;
        color: var(--text-tertiary);
    }

    /* Mobile Additional Info */
    .additional-info-section {
        margin-top: 32px;
        padding-top: 24px;
    }

    .info-section-title {
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 16px;
        text-align: center;
        letter-spacing: 1px;
    }

    .additional-info-textarea {
        min-height: 100px;
        padding: 20px;
        font-size: 16px;
        border-radius: 16px;
        border-width: 2px;
        line-height: 1.6;
    }

    .additional-info-textarea:focus {
        transform: translateY(-2px);
        box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    /* Mobile Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .services-compact {
        padding: 24px 20px;
        border-radius: 20px;
        margin-bottom: 24px;
        background: var(--surface-elevated);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        border-width: 2px;
    }

    .services-checklist {
        gap: 16px;
    }

    .service-checkbox-item {
        padding: 16px 20px;
        border-radius: 16px;
        border-width: 2px;
        background: var(--surface);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .service-checkbox-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-accent);
    }

    .service-checkbox-label {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
        gap: 16px;
        padding: 0;
    }

    .service-checkbox-label .checkmark {
        width: 24px;
        height: 24px;
        border-radius: 8px;
        border-width: 2px;
        flex-shrink: 0;
        margin-right: 0;
    }

    .service-checkbox-label .checkmark:hover {
        transform: scale(1.1);
    }

    .service-name {
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.4;
    }

    .service-details {
        margin-top: 20px;
        padding: 20px;
        border-radius: 16px;
        background: rgba(58, 165, 111, 0.05);
        border: 1px solid rgba(58, 165, 111, 0.1);
    }

    .service-details .input-group {
        margin-bottom: 0;
    }

    .service-details .input-label {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--primary-color);
    }

    .service-details .form-input {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 12px;
        border-width: 2px;
        background: var(--surface);
    }

    .service-details .form-input:focus {
        transform: translateY(-2px);
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    /* Mobile Date Range */
    .date-range-container {
        padding: 24px 20px;
        border-radius: 20px;
        margin-bottom: 24px;
        background: var(--surface-elevated);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
        border-width: 2px;
    }

    .date-input {
        padding: 16px 20px !important;
        font-size: 16px !important;
        border-radius: 16px !important;
        border-width: 2px !important;
        min-height: 56px !important;
        background: var(--surface) !important;
        color: var(--text-primary) !important;
        cursor: pointer !important;
    }

    .date-input:focus {
        transform: translateY(-2px) !important;
        box-shadow: 0 0 0 4px rgba(58, 165, 111, 0.1), 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    }

    .date-range-hint {
        padding: 16px 20px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 16px;
        margin-top: 20px;
        background: rgba(58, 165, 111, 0.1);
        color: var(--primary-color);
        text-align: center;
        border: 2px solid rgba(58, 165, 111, 0.2);
    }

    /* Mobile Navigation Buttons */
    .form-navigation {
        flex-direction: column;
        gap: 16px;
        margin-top: 40px;
        padding: 32px 20px 24px 20px;
        border-top: 2px solid var(--border);
        background: var(--surface-elevated);
        border-radius: 20px 20px 0 0;
    }

    .nav-btn {
        width: 100%;
        padding: 18px 32px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 16px;
        min-height: 56px;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    .prev-btn {
        order: 2;
        background: var(--surface);
        color: var(--text-primary);
        border: 2px solid var(--border);
    }

    .prev-btn:hover {
        background: var(--surface-elevated);
        border-color: var(--primary-accent);
        color: var(--primary-color);
    }

    .next-btn,
    .submit-btn {
        order: 1;
        background: var(--gradient-primary);
        color: white;
        border: 2px solid transparent;
        box-shadow: 0 8px 32px rgba(58, 165, 111, 0.3);
    }

    .next-btn:hover,
    .submit-btn:hover {
        box-shadow: 0 12px 48px rgba(58, 165, 111, 0.4);
        filter: brightness(1.05);
    }

    /* Mobile Privacy Notice - Professional */
    .privacy-notice, body.dark-mode .privacy-notice {
        margin: 24px -4px 24px -4px;
        padding: 24px 20px;
        border-radius: 20px;
        border: 2px solid rgba(220, 38, 38, 0.15) !important;
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(239, 68, 68, 0.02) 100%) !important;
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        box-sizing: border-box;
        max-width: calc(100% + 8px);
        width: calc(100% + 8px);
        color: #374151 !important;
        box-shadow:
            0 4px 16px rgba(0, 0, 0, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
        position: relative;
        overflow: hidden;
    }

    .privacy-notice::before {
        content: '🔒';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 16px;
        opacity: 0.6;
    }

    .privacy-link {
        font-weight: 700;
        color: var(--primary-color) !important;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
        word-break: break-word;
        display: inline;
        padding: 2px 4px;
        border-radius: 4px;
        background: rgba(220, 38, 38, 0.05);
    }

    .privacy-link:hover {
        border-bottom-color: var(--primary-color);
        background: rgba(220, 38, 38, 0.1);
        transform: translateY(-1px);
    }

    /* Mobile Success Page */
    .success-page-content {
        padding: 24px 20px;
        text-align: center;
    }

    .success-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .success-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        line-height: 1.4;
    }

    .success-details {
        gap: 20px;
        margin-bottom: 32px;
    }

    .success-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
    }

    .step-icon {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    .step-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .step-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .success-actions {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .success-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 16px;
        min-height: 56px;
    }

    .success-footer {
        padding-top: 24px;
        border-top: 2px solid var(--border);
    }

    .success-footer p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .contact-link {
        font-size: 20px;
        font-weight: 700;
        display: block;
        margin: 16px 0;
    }

    .contact-hours {
        font-size: 12px;
        font-style: italic;
        opacity: 0.8;
    }
}

/* Small Mobile Optimization (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        height: 68px;
        padding: 0 16px;
    }

    .logo-img {
        height: 32px;
    }

    .phone-link {
        font-size: 10px;
        padding: 6px 12px;
        min-width: auto;
    }

    .lang-btn {
        width: 36px;
        height: 36px;
    }

    .dark-mode-toggle {
        width: 36px;
        height: 36px;
    }

    /* Smaller progress steps - Professional */
    .progress-steps {
        padding: 0 8px;
        gap: 4px;
    }

    .step {
        min-width: 62px;
        padding: 6px 2px;
    }

    .step-number, body.dark-mode .step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 6px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
        color: #64748b !important;
        border: 2px solid #e2e8f0 !important;
        box-shadow:
            0 3px 8px rgba(0, 0, 0, 0.04),
            0 1px 3px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    }

    .step-label, body.dark-mode .step-label {
        font-size: 9px;
        letter-spacing: 0.3px;
        color: #64748b !important;
    }

    /* Adjust connection line for smaller screens */
    .progress-steps::before {
        top: 21px;
        left: calc(12% + 15px);
        right: calc(12% + 15px);
        height: 2px;
    }

    .progress-steps::after {
        top: 21px;
        left: calc(12% + 15px);
        height: 2px;
    }

    /* Smaller form elements */
    .moving-form {
        padding: 20px 16px 16px 16px;
    }

    .step-title {
        font-size: 20px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .step-subtitle {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .address-section,
    .building-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .form-input,
    .form-select,
    .address-input {
        padding: 14px 16px;
        font-size: 16px;
        min-height: 52px;
    }

    .input-row {
        gap: 12px;
    }

    .checkbox-label {
        padding: 12px 0 12px 36px;
        font-size: 13px;
    }

    .checkmark {
        width: 18px;
        height: 18px;
        left: 12px;
    }

    /* Inventory items stack vertically */
    .inventory-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
        text-align: left;
    }

    .item-icon {
        margin-right: 0;
        margin-bottom: 4px;
        align-self: center;
    }

    .item-name {
        margin-right: 0;
        margin-bottom: 8px;
        text-align: center;
        width: 100%;
    }

    .quantity-controls {
        align-self: center;
        gap: 16px;
    }

    .qty-control-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .qty-display {
        min-width: 36px;
        padding: 10px;
        font-size: 16px;
    }

    /* Smaller service items */
    .service-checkbox-item {
        padding: 14px 16px;
    }

    .service-checkbox-label {
        font-size: 13px;
        gap: 16px;
    }

    .service-checkbox-label .checkmark {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }

    /* Compact navigation */
    .form-navigation {
        padding: 24px 16px 20px 16px;
        gap: 12px;
    }

    .nav-btn {
        padding: 16px 20px;
        font-size: 15px;
        min-height: 52px;
    }

    /* Smaller inventory summary */
    .inventory-summary {
        padding: 20px 16px;
    }

    .summary-title {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .stat-item {
        padding: 10px 0;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-value {
        font-size: 15px;
    }

    .selected-item {
        padding: 10px 0;
        font-size: 13px;
    }

    /* Category buttons grid on very small screens */
    .category-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-btn {
        padding: 8px 12px;
        font-size: 10px;
        min-width: auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Touch and Performance Optimizations */
@media (max-width: 768px) {
    /* Better touch targets */
    button, .btn, .nav-link, .step, .inventory-item,
    .service-checkbox-item, .category-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    /* Reduce animations for better performance */
    * {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }

    /* Better scroll performance */
    .moving-form, .inventory-summary {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }

    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    textarea,
    select {
        font-size: 16px !important;
    }

    /* Better text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }

    /* Optimize gradients for mobile performance */
    .service-icon,
    .why-icon,
    .contact-icon,
    .feature-header i,
    .nav-btn.next-btn,
    .nav-btn.submit-btn {
        background: var(--primary-color) !important;
    }

    /* Fix any potential horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }

    .header, .progress-container, .main-content,
    .form-section, .moving-form {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Accessibility and High Contrast */
@media (max-width: 768px) {
    /* High contrast mode support */
    @media (prefers-contrast: high) {
        .btn, .nav-btn {
            border: 3px solid currentColor !important;
        }

        .form-input, .address-input, .form-select {
            border: 2px solid var(--text-primary) !important;
        }

        .service-checkbox-item, .inventory-item {
            border: 2px solid var(--border-color) !important;
        }
    }

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

    /* Better focus states for mobile */
    .nav-btn:focus,
    .form-input:focus,
    .address-input:focus,
    .form-select:focus,
    .service-checkbox-item:focus-within,
    .inventory-item:focus-within {
        outline: 3px solid var(--primary-color) !important;
        outline-offset: 2px !important;
    }
}

@media (max-width: 480px) {
    .category-btn {
        padding: 6px 10px;
        font-size: 10px;
        min-width: 90px;
    }

    .inventory-item {
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        min-height: auto;
    }

    .item-icon {
        margin-right: 0;
        margin-bottom: 4px;
    }

    .item-name {
        margin-right: 0;
        margin-bottom: 4px;
    }

    .quantity-controls {
        align-self: flex-end;
        width: 100%;
        justify-content: center;
    }
}
