/* ===== CSS Variables ===== */
:root {
    --primary-blue: #0066ff;
    --secondary-blue: #00a3ff;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #151515;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #222222;
    --gradient-1: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 102, 255, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 102, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Light Mode Variables ===== */
[data-theme="light"] {
    --dark-bg: #f5f5f5;
    --darker-bg: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #0a0a0a;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--primary-blue));
}

.logo-img {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 10px var(--primary-blue));
}

.logo-text .highlight {
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 255, 136, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(0, 255, 136, 0.15));
    border-color: rgba(0, 212, 255, 0.6);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, #00d4ff, #00ff88);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-1);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 174, 255, 0.08) 0%, transparent 50%);
    animation: preloader-glow 8s ease-in-out infinite;
}

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

.preloader.hidden {
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 10;
    animation: preloader-fadeIn 1s ease-out;
}

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

.preloader-logo {
    position: relative;
    margin-bottom: 2rem;
}

.preloader-logo img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.6));
    animation: preloader-pulse 2s ease-in-out infinite;
}

@keyframes preloader-pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.6));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 50px rgba(0, 102, 255, 0.9));
    }
}

.preloader-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066ff 0%, #00aeff 50%, #0066ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: preloader-gradient 3s ease-in-out infinite;
    letter-spacing: 2px;
}

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

.preloader-spinner {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto;
}

.preloader-spinner::before,
.preloader-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: preloader-spin 2s linear infinite;
}

.preloader-spinner::before {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: #0066ff;
    border-right-color: #0066ff;
}

.preloader-spinner::after {
    width: 46px;
    height: 46px;
    border: 3px solid transparent;
    border-top-color: #00aeff;
    border-right-color: #00aeff;
    top: 7px;
    left: 7px;
    animation-duration: 1.5s;
    animation-direction: reverse;
}

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

/* Loading Progress Bar */
.preloader-progress {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0066ff, #00aeff);
    border-radius: 10px;
    animation: preloader-progress 2s ease-out forwards;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

@keyframes preloader-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Loading Text */
.preloader-loading-text {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    animation: preloader-blink 1.5s ease-in-out infinite;
}

@keyframes preloader-blink {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.highlight-blue {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ===== Particle Canvas ===== */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ===== Services Section ===== */
.services {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===== Trust Badges ===== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.trust-badge {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.trust-badge:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.badge-text small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.services-grid .service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.services-grid .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 163, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.services-grid .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.services-grid .service-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 102, 255, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

.services-grid .service-card:hover::before {
    opacity: 1;
}

.services-grid .service-card:hover::after {
    transform: scaleX(1);
}

.services-grid .service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 163, 255, 0.08) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.services-grid .service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.25) 0%, rgba(0, 163, 255, 0.15) 100%);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.services-grid .service-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid .service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.services-grid .service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.services-grid .service-features li {
    color: var(--text-secondary);
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services-grid .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services-grid .service-card:hover .service-features li::before {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--primary-blue);
}

.services-grid .service-card:hover .service-features li {
    padding-left: 2rem;
}

.services-grid .service-price {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.services-grid .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-grid .service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: left 0.3s ease;
    z-index: -1;
}

.services-grid .service-link:hover {
    color: white;
    border-color: transparent;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.services-grid .service-link:hover::before {
    left: 0;
}

.services-grid .service-link span {
    transition: transform 0.3s ease;
}

.services-grid .service-link:hover span {
    transform: translateX(5px);
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pricing-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
}

/* ===== Repair Request Section ===== */
.repair-request {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.repair-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.repair-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 20, 35, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Enhanced Select Styling */
.form-group select {
    background: linear-gradient(135deg, rgba(15, 20, 35, 0.95) 0%, rgba(20, 25, 45, 0.9) 100%);
    border: 2px solid rgba(0, 102, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-group select:hover {
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.95rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(20, 25, 40, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15),
                0 0 20px rgba(0, 102, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-group label,
.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.checkbox-group label:hover,
.radio-group label:hover {
    background: var(--dark-bg);
}

.radio-label {
    display: flex;
    flex-direction: column;
}

.radio-label strong {
    display: block;
    margin-bottom: 0.25rem;
}

.radio-label small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.checkbox-label a {
    color: var(--primary-blue);
}

.btn-large {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.repair-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.info-card ol,
.info-card ul {
    margin-left: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-card li {
    margin-bottom: 0.5rem;
}

/* ===== Modal ===== */
.modal {
    display: none !important;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

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

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

.modal-content {
    background: linear-gradient(135deg, rgba(20, 25, 40, 0.95) 0%, rgba(15, 20, 35, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 
                0 0 1px rgba(0, 102, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, rgba(25, 30, 45, 0.98) 0%, rgba(20, 25, 40, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

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

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

.modal-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.modal-header h2 {
    font-size: 1.6rem;
    margin: 0;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.modal-header-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    border-color: var(--primary-blue);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.modal-body {
    padding: 2rem 2.5rem;
}

.modal .repair-form {
    background: transparent;
    border: none;
    padding: 0;
}

/* ===== Form Sections ===== */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    position: relative;
}

.form-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-blue), transparent);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-section-header h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

/* ===== Input Icons ===== */
.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.input-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: var(--transition);
    filter: drop-shadow(0 0 4px rgba(0, 102, 255, 0.3));
}

.form-group:focus-within .input-icon {
    color: #00a3ff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 163, 255, 0.5));
}

/* ===== Problem Categories ===== */
.problem-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.problem-tag {
    cursor: pointer;
}

.problem-tag input[type="checkbox"] {
    display: none;
}

.tag-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: rgba(20, 25, 40, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.tag-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary-blue);
    transition: var(--transition);
}

.problem-tag:hover .tag-content {
    border-color: rgba(0, 102, 255, 0.5);
    background: rgba(0, 102, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.problem-tag:hover .tag-icon {
    color: #00a3ff;
    transform: scale(1.1);
}

.problem-tag input[type="checkbox"]:checked + .tag-content {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.problem-tag input[type="checkbox"]:checked + .tag-content .tag-icon {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ===== Service Options ===== */
.service-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .service-options {
        grid-template-columns: 1fr;
    }
}

.service-option {
    cursor: pointer;
    display: flex;
}

.service-option input[type="radio"] {
    display: none;
}

.service-option .service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    padding-top: 2.5rem;
    background: linear-gradient(135deg, rgba(20, 25, 40, 0.6) 0%, rgba(15, 20, 35, 0.8) 100%);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 180px;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10px);
    overflow: visible;
}

.service-option .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00a3ff, #0066ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-option .service-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.3));
}

.service-option .service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    width: 100%;
}

.service-option .service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: block;
    width: 100%;
}

.service-option .service-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: auto;
    display: block;
    width: 100%;
}

.service-option:hover .service-card {
    border-color: rgba(0, 102, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0.03) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 102, 255, 0.15);
}

.service-option:hover .service-card .service-icon {
    color: #00a3ff;
    transform: scale(1.1) rotate(5deg);
}

.service-option input[type="radio"]:checked + .service-card {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.08) 100%);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.3),
                0 8px 24px rgba(0, 102, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.service-option input[type="radio"]:checked + .service-card::before {
    opacity: 1;
}

.service-option input[type="radio"]:checked + .service-card .service-icon {
    color: #00a3ff;
    transform: scale(1.15);
    filter: drop-shadow(0 0 12px rgba(0, 163, 255, 0.6));
}

/* ===== Form Footer ===== */
.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding: 1rem;
    background: rgba(0, 102, 255, 0.03);
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(0, 102, 255, 0.06);
    border-color: rgba(0, 102, 255, 0.15);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem;
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.btn-submit:active {
    transform: translateY(0);
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ===== Responsive - Modal ===== */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header-content {
        gap: 1rem;
    }
    
    .modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .modal-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
}

/* ===== About Section ===== */
.about {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Stats Showcase - Ersetzt Code Animation */
.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

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

/* Legacy Code Animation - behalten für Rückwärtskompatibilität */
.code-animation {
    width: 80%;
}

.code-line {
    height: 20px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, transparent 100%);
    margin: 20px 0;
    border-radius: 10px;
    animation: codeLine 3s ease-in-out infinite;
}

.code-line:nth-child(2) {
    width: 70%;
    animation-delay: 0.5s;
}

.code-line:nth-child(3) {
    width: 90%;
    animation-delay: 1s;
}

.code-line:nth-child(4) {
    width: 60%;
    animation-delay: 1.5s;
}

@keyframes codeLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== Contact Section ===== */
.contact {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* CAPTCHA Styling */
.captcha-group {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.captcha-container {
    flex: 1;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.captcha-icon {
    font-size: 1rem;
}

.captcha-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.captcha-math {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1rem;
    background: rgba(0, 102, 255, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.captcha-container input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.captcha-container input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.1);
}

.captcha-refresh {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--primary-blue);
    transform: rotate(180deg);
}

/* ===== Footer ===== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--primary-blue);
    background: var(--card-bg);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: var(--primary-blue);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.testimonial-service {
    display: inline-block;
    background: rgba(0, 102, 255, 0.15);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 163, 255, 0.1) 100%);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.testimonial-rating {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Verifizierte Bewertungen */
.testimonial-card.verified-review {
    border-color: rgba(0, 255, 136, 0.3);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 255, 136, 0.03) 100%);
}

.testimonial-card.verified-review:hover {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.verified-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 2px;
}

/* ===== Team Section ===== */
.team {
    padding: 6rem 0;
    background: var(--darker-bg);
}

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

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

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

.team-image {
    width: 100%;
    height: 300px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.team-content {
    padding: 2rem;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-blue);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    /* Navbar bleibt immer sichtbar */
    .navbar {
        position: fixed;
        z-index: 99999;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #0a0f14;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        z-index: 99998;
        padding: 100px 20px 40px 20px;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        display: flex !important;
    }
    
    .nav-menu li {
        width: 100%;
        max-width: 350px;
        text-align: center;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
        list-style: none;
    }
    
    .nav-menu.active li {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    
    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 18px 25px;
        margin: 8px 0;
        font-size: 1.15rem;
        font-weight: 500;
        color: #e0e0e0;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(0, 212, 255, 0.15);
        border-color: rgba(0, 212, 255, 0.4);
        color: #00d4ff;
    }
    
    .nav-menu li:last-child {
        margin-top: 25px;
    }
    
    .nav-menu .nav-booking-btn {
        background: linear-gradient(135deg, #00d4ff, #00ff88) !important;
        color: #000 !important;
        border: none !important;
        border-radius: 14px;
        font-weight: 700;
        padding: 20px 40px !important;
        font-size: 1.1rem !important;
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.35);
    }
    
    .nav-menu .nav-booking-btn:hover {
        transform: scale(1.05) !important;
        box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 100000;
        position: relative;
    }
    
    .mobile-menu-toggle.active {
        background: rgba(255, 107, 107, 0.2);
        border-color: rgba(255, 107, 107, 0.5);
    }
    
    .mobile-menu-toggle.active span {
        background: #ff6b6b;
        box-shadow: 0 0 8px rgba(255, 107, 107, 0.6);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

/* ===== Modal Microinteractions & Additional Animations ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

/* Stagger animation for form sections */
.form-section:nth-child(1) {
    animation: slideInFromBottom 0.4s ease-out 0.1s both;
}

.form-section:nth-child(2) {
    animation: slideInFromBottom 0.4s ease-out 0.2s both;
}

.form-section:nth-child(3) {
    animation: slideInFromBottom 0.4s ease-out 0.3s both;
}

/* Smooth scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
}

/* Select dropdown styling */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300a3ff' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    background-color: rgba(20, 25, 40, 0.8);
    padding-right: 3rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group select option {
    background: #0d1117;
    color: #e6edf3;
    padding: 12px 16px;
    border: none;
    font-size: 0.95rem;
}

.form-group select option:disabled {
    color: rgba(255, 255, 255, 0.4);
    background: #0d1117;
}

.form-group select option:checked {
    background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
    color: white;
}

.form-group select option:hover {
    background: rgba(0, 102, 255, 0.3);
}

/* Loading state for submit button */
.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Success checkmark animation */
@keyframes checkmark {
    0% {
        stroke-dashoffset: 100;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Add floating animation to modal icons */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.modal-icon {
    animation: float 3s ease-in-out infinite;
}

/* Service option card badge */
.service-option input[type="radio"]:checked + .service-card::after {
    content: '✓';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.4);
    animation: scaleIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 15;
}

@keyframes scaleIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Gradient border animation for focused inputs */
@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15),
                    0 0 20px rgba(0, 102, 255, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
    50% {
        box-shadow: 0 0 0 3px rgba(0, 163, 255, 0.25),
                    0 0 30px rgba(0, 163, 255, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    animation: borderGlow 2s ease-in-out infinite;
}

/* Problem-Tag zusätzliche Effekte */
.problem-tag .tag-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-tag:hover .tag-icon {
    transform: scale(1.2) rotate(8deg);
}

/* Service Icon Pulse-Effekt */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-option:hover .service-icon {
    animation: iconPulse 1.5s ease-in-out infinite;
}

/* Input Focus Icon Animation */
@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(0, 102, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(0, 163, 255, 0.6));
    }
}

.form-group:focus-within .input-icon {
    animation: iconGlow 2s ease-in-out infinite;
}

/* Tooltip styling for form hints */
.form-group[data-hint]::after {
    content: attr(data-hint);
    position: absolute;
    bottom: -30px;
    left: 0;
    font-size: 0.8rem;
    color: rgba(0, 163, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-group:focus-within[data-hint]::after {
    opacity: 1;
}

/* ================================
   WARTUNGSVERTRAG KONFIGURATOR
   ================================ */

/* Wide Modal für Konfigurator */
.modal-configurator .modal-content-wide {
    max-width: 1000px;
    width: 95%;
}

/* Progress Bar */
.configurator-progress {
    padding: 0 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    flex: 1;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.progress-step .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-num {
    background: linear-gradient(135deg, #0066ff, #00a3ff);
    border-color: #00a3ff;
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.4);
}

.progress-step.completed .step-num {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-color: #00ff88;
}

.progress-step .step-name {
    font-size: 0.75rem;
    text-align: center;
    white-space: nowrap;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0066ff, #00a3ff);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(0, 163, 255, 0.5);
}

/* Price Display - Sticky */
.price-display {
    position: sticky;
    top: 20px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 163, 255, 0.1));
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 163, 255, 0.2);
}

.price-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff88, #00a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    animation: priceUpdate 0.3s ease;
}

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

.price-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.recommended-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1f2e;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.recommended-badge svg {
    width: 16px;
    height: 16px;
    stroke: #1a1f2e;
}

/* Configurator Steps */
.configurator-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.configurator-step.active {
    display: block;
}

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

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Package Comparison Cards */
.package-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.package-card {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.95), rgba(30, 35, 50, 0.95));
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 163, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 163, 255, 0.2);
}

.package-card.featured {
    border-color: #00a3ff;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 163, 255, 0.1));
}

.package-card.selected {
    border-color: #00ff88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 163, 255, 0.1));
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.3);
}

.package-ribbon {
    position: absolute;
    top: 1rem;
    right: -0.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1f2e;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px 0 0 20px;
    box-shadow: -2px 2px 8px rgba(255, 215, 0, 0.3);
}

.package-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 1.5rem;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff88, #00a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-price .period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.package-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #00ff88;
}

.package-features li.disabled {
    opacity: 0.3;
}

.package-features li.disabled svg {
    stroke: #ff4444;
}

.package-select {
    width: 100%;
}

.package-card.selected .package-select {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #1a1f2e;
}

/* Checkbox Grid for Requirements */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.checkbox-card {
    cursor: pointer;
    display: flex;
}

.checkbox-card input[type="checkbox"] {
    display: none;
}

.checkbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    height: 160px;
}

.checkbox-content svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.75rem;
    stroke: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-content span:nth-child(2) {
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
}

.addon-price,
.checkbox-content .addon-price {
    font-size: 0.85rem;
    color: #00a3ff;
    font-weight: 600;
}

.checkbox-card:hover .checkbox-content {
    border-color: rgba(0, 163, 255, 0.5);
    background: rgba(0, 163, 255, 0.1);
}

.checkbox-card input:checked + .checkbox-content {
    border-color: #00ff88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 163, 255, 0.1));
}

.checkbox-card input:checked + .checkbox-content svg {
    stroke: #00ff88;
    animation: checkPop 0.3s ease;
}

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

/* Add-ons Grid */
.addons-grid {
    display: grid;
    gap: 1rem;
}

.addon-card {
    cursor: pointer;
}

.addon-card input[type="checkbox"] {
    display: none;
}

.addon-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.addon-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 163, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.addon-icon svg {
    width: 24px;
    height: 24px;
    stroke: #00a3ff;
}

.addon-info {
    flex: 1;
}

.addon-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.addon-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.addon-content .addon-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00a3ff;
    flex-shrink: 0;
}

.addon-card:hover .addon-content {
    border-color: rgba(0, 163, 255, 0.5);
    background: rgba(0, 163, 255, 0.1);
}

.addon-card input:checked + .addon-content {
    border-color: #00ff88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 163, 255, 0.1));
}

.addon-card input:checked + .addon-content .addon-icon {
    background: rgba(0, 255, 136, 0.3);
}

.addon-card input:checked + .addon-content .addon-icon svg {
    stroke: #00ff88;
}

/* Summary Section */
.summary-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00a3ff;
}

.summary-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.summary-package {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.1), rgba(0, 255, 136, 0.05));
    border-radius: 8px;
    border-left: 3px solid #00a3ff;
}

.summary-total {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 163, 255, 0.1));
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.total-row.final-price {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.total-row.final-price span:last-child {
    background: linear-gradient(135deg, #00ff88, #00a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
}

.total-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* Configurator Navigation */
.configurator-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.configurator-navigation .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.configurator-navigation .btn svg {
    width: 18px;
    height: 18px;
}

#submitBtn {
    margin-left: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .package-comparison {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-step .step-name {
        font-size: 0.65rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .addon-content {
        flex-direction: column;
        text-align: center;
    }
    
    .configurator-navigation {
        flex-direction: column;
    }
    
    #prevBtn {
        order: 2;
    }
    
    #nextBtn {
        order: 1;
    }
    
    #submitBtn {
        order: 1;
        margin-left: 0;
    }
}

@media (max-width: 1024px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== REPAIR MODAL - Enhanced Styles ===== */

/* Live Price Display */
.repair-price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 163, 255, 0.1) 100%);
    border: 2px solid rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    animation: priceGlow 3s ease-in-out infinite;
}

.repair-price-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

@keyframes priceGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.2),
                    inset 0 0 20px rgba(0, 102, 255, 0.05);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 102, 255, 0.4),
                    inset 0 0 30px rgba(0, 102, 255, 0.1);
    }
}

.repair-price-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.repair-price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.repair-price-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.repair-price-right {
    text-align: right;
}

.repair-price-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00a3ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pricePulse 2s ease-in-out infinite;
}

/* Bottom Price Display - More prominent before submit */
.repair-price-bottom {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 102, 255, 0.15) 100%);
    border: 2px solid rgba(0, 255, 136, 0.4);
    animation: priceGlowGreen 3s ease-in-out infinite;
}

.repair-price-bottom .repair-price-label {
    color: #00ff88;
    font-weight: 600;
}

.repair-price-bottom .repair-price-value {
    font-size: 2rem;
    background: linear-gradient(135deg, #00ff88, #00a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes priceGlowGreen {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.2),
                    0 0 40px rgba(0, 102, 255, 0.1),
                    inset 0 0 20px rgba(0, 255, 136, 0.05);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.4),
                    0 0 60px rgba(0, 102, 255, 0.2),
                    inset 0 0 30px rgba(0, 255, 136, 0.1);
    }
}

.repair-price-value.has-price {
    font-size: 2rem;
}

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

/* Enhanced Problem Tags with Price Badges */
.problem-tag .tag-content {
    flex-wrap: wrap;
    position: relative;
    padding-right: 4.5rem;
}

.tag-text {
    flex: 1;
    min-width: fit-content;
}

.tag-price {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
    transition: all 0.3s ease;
}

.problem-tag:hover .tag-price {
    background: rgba(0, 255, 136, 0.25);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.problem-tag input[type="checkbox"]:checked + .tag-content .tag-price {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Service Cards */
.service-card {
    position: relative;
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.6rem;
    background: linear-gradient(135deg, #0066ff, #00a3ff);
    color: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.service-badge-express {
    background: linear-gradient(135deg, #ff6b00, #ffaa00);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
    animation: expressBadgePulse 2s ease-in-out infinite;
}

@keyframes expressBadgePulse {
    0%, 100% { 
        box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
    }
    50% { 
        box-shadow: 0 2px 15px rgba(255, 107, 0, 0.7);
    }
}

.service-card-express {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 170, 0, 0.05) 100%) !important;
    border-color: rgba(255, 107, 0, 0.3) !important;
}

.service-option input[type="radio"]:checked + .service-card-express {
    border-color: #ff6b00 !important;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.3),
                0 8px 25px rgba(255, 107, 0, 0.2) !important;
}

.service-price-free {
    color: #00dd77 !important;
    font-weight: 600;
}

.service-price-addon {
    color: #00a3ff !important;
    font-weight: 600;
}

.service-price-express {
    color: #ff9500 !important;
    font-weight: 600;
}

/* Pulse Icon for Modal Header */
.pulse-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 5px var(--primary-blue));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px var(--primary-blue));
    }
}

/* Enhanced Submit Button */
.btn-repair-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-repair-submit .btn-text {
    position: relative;
    z-index: 1;
}

.btn-repair-submit .btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-repair-submit:hover .btn-arrow {
    transform: translateX(5px);
}

/* Form Note with Icon */
.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note .note-icon {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
}

/* Optional Hint */
.optional-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Responsive für Repair Modal */
@media (max-width: 768px) {
    .repair-price-display {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .repair-price-left {
        align-items: center;
    }
    
    .repair-price-right {
        text-align: center;
    }
    
    .problem-tag .tag-content {
        padding-right: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .tag-price {
        position: static;
        transform: none;
        margin-top: 0.25rem;
    }
    
    .problem-tag:hover .tag-price {
        transform: scale(1.05);
    }
    
    .btn-repair-submit {
        width: 100%;
    }
}

/* ===== Budget Slider ===== */
.budget-input-container {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 102, 255, 0.03) 100%);
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

/* Budget Input Row */
.budget-input-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.budget-manual-input {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.budget-manual-input:focus-within {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.budget-manual-input input {
    width: 120px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-align: right;
    font-family: inherit;
    -moz-appearance: textfield;
}

.budget-manual-input input::-webkit-outer-spin-button,
.budget-manual-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.budget-manual-input input::placeholder {
    color: rgba(0, 212, 255, 0.4);
    font-size: 1rem;
}

.budget-input-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00d4ff;
    margin-left: 0.25rem;
}

.budget-or {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.budget-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.budget-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    cursor: pointer;
    min-width: 100px;
    transition: all 0.3s ease;
}

.budget-value:hover {
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.budget-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.budget-slider {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    margin: 0.5rem 0;
}

.budget-slider::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, 
        rgba(0, 102, 255, 0.3) 0%, 
        rgba(0, 163, 255, 0.5) 50%, 
        rgba(0, 212, 255, 0.3) 100%);
}

.budget-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.6),
                0 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: -8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.budget-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.8),
                0 6px 15px rgba(0, 0, 0, 0.4);
}

.budget-slider::-moz-range-track {
    height: 8px;
    border-radius: 10px;
    background: linear-gradient(90deg, 
        rgba(0, 102, 255, 0.3) 0%, 
        rgba(0, 163, 255, 0.5) 50%, 
        rgba(0, 212, 255, 0.3) 100%);
}

.budget-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.6),
                0 4px 10px rgba(0, 0, 0, 0.3);
}

.budget-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.budget-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 0.75rem;
    text-align: center;
}

.budget-presets {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.budget-preset-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.budget-preset-btn:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.budget-preset-btn.active {
    background: var(--primary-blue);
    color: white;
}

@media (max-width: 480px) {
    .budget-value {
        font-size: 2rem;
    }
    
    .budget-presets {
        gap: 0.4rem;
    }
    
    .budget-preset-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4),
                0 0 30px rgba(0, 102, 255, 0.2);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5),
                0 0 40px rgba(0, 102, 255, 0.3);
}

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

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== Booking Modal Styles ===== */
.nav-booking-btn {
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-booking-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.4) !important;
}

/* Booking Modal Override */
.booking-modal.modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.booking-modal .modal-content {
    max-width: 650px;
    width: 95%;
    max-height: 95vh;
    padding: 0;
    overflow: hidden;
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.booking-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    line-height: 1;
}

.booking-modal .modal-close:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.5);
    transform: rotate(90deg);
}

.booking-modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    max-height: 95vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.booking-header {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 163, 255, 0.1) 100%);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
}

.booking-header-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.booking-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.booking-header p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.booking-container {
    padding: 0;
}

.booking-steps {
    display: flex;
    background: rgba(0, 102, 255, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.booking-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 0.5rem;
    position: relative;
    opacity: 0.4;
    transition: var(--transition);
}

.booking-step.active {
    opacity: 1;
    background: rgba(0, 102, 255, 0.15);
}

.booking-step.completed {
    opacity: 1;
}

.booking-step.completed .step-number {
    background: #00ff88;
    color: #000;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

.booking-form {
    padding: 1.5rem 2rem 2rem;
    overflow-y: auto;
    flex: 1;
}

.booking-form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.booking-form-step.active {
    display: block;
}

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

.booking-form-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-primary);
}

/* Service Selection */
.service-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}

.service-option {
    display: block;
}

.service-option input {
    display: none;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    min-height: 140px;
    background: rgba(13, 17, 23, 0.6);
    border: 2px solid rgba(48, 54, 61, 0.8);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.option-card:hover {
    border-color: rgba(0, 102, 255, 0.5);
    background: rgba(0, 102, 255, 0.05);
    transform: translateY(-2px);
}

.service-option input:checked + .option-card,
.type-option input:checked + .option-card {
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.25),
                inset 0 0 20px rgba(0, 102, 255, 0.05);
}

/* Wartungsvertrag full width card */
.service-option-full {
    grid-column: 1 / -1;
}

.service-option-full .option-card {
    flex-direction: row;
    min-height: auto;
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.service-option-full .option-icon {
    font-size: 2rem;
    margin: 0;
}

.service-option-full .option-title,
.service-option-full .option-desc {
    text-align: left;
}

.option-card-highlight {
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}

.option-card-highlight:hover {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.1);
}

.service-option input:checked + .option-card-highlight {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.25);
}

.option-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Type Selection (Step 2) */
.type-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.type-option {
    display: block;
}

.type-option input {
    display: none;
}

/* Customer ID Section */
.customer-id-section {
    margin-bottom: 1.5rem;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.info-box-blue {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.info-box .info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-box p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.customer-id-section .form-group {
    margin-bottom: 0;
}

.customer-id-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.customer-id-section input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--darker-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.customer-id-section input:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* No slots message */
.no-slots-msg {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
    font-size: 0.9rem;
}

.option-icon {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.option-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.option-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Calendar */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.calendar-container {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.calendar-month-year {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.calendar-nav {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    border: none;
    color: var(--text-primary);
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: rgba(0, 102, 255, 0.2);
}

.calendar-day.selected {
    background: var(--primary-blue);
    color: white;
    font-weight: 700;
}

.calendar-day.today {
    border: 2px solid var(--primary-blue);
}

.calendar-day.disabled,
.calendar-day.other-month {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Time Slots */
.time-slots-container label:first-child {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.time-slot input {
    display: none;
}

.time-slot span {
    display: block;
    padding: 0.75rem;
    background: var(--darker-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}

.time-slot span:hover {
    border-color: var(--primary-blue);
}

.time-slot input:checked + span {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* Contact Fields */
.contact-fields {
    margin-bottom: 1.5rem;
}

.contact-fields .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-fields .form-group {
    margin-bottom: 0;
}

.contact-fields .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-fields label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.contact-fields input,
.contact-fields select,
.contact-fields textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--darker-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-fields input:focus,
.contact-fields select:focus,
.contact-fields textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
}

/* Booking Navigation */
.booking-nav {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.booking-nav .btn {
    flex: 1;
    min-height: 48px;
}

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.booking-success h3 {
    color: #00ff88;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.booking-success p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.booking-summary {
    background: var(--darker-bg);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.summary-label {
    color: var(--text-secondary);
}

.summary-value {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Responsive Booking Modal */
@media (max-width: 768px) {
    .booking-modal.modal.active {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .booking-modal .modal-content {
        max-width: 100%;
        width: 100%;
        max-height: 95vh;
        margin: 0;
    }
    
    .booking-modal .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    
    .booking-modal-content {
        max-height: 95vh;
    }
    
    .booking-header {
        padding: 1rem;
        padding-top: 2.5rem;
    }
    
    .booking-header-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .booking-header h2 {
        font-size: 1.25rem;
    }
    
    .booking-header p {
        font-size: 0.8rem;
    }
    
    .booking-form {
        padding: 1rem;
        max-height: calc(100vh - 180px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .booking-form-step h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        padding: 0.5rem;
        background: var(--darker-bg);
        border-left: 3px solid var(--primary-blue);
    }
    
    .booking-steps {
        flex-wrap: nowrap;
    }
    
    .booking-step {
        padding: 0.75rem 0.25rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.6rem;
    }
    
    .service-selection {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .option-card {
        padding: 1rem 0.75rem;
        min-height: 110px;
    }
    
    .option-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .option-title {
        font-size: 0.9rem;
    }
    
    .option-desc {
        font-size: 0.7rem;
    }
    
    .datetime-selection {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .calendar-container {
        padding: 0.75rem;
        max-height: none;
        overflow: visible;
    }
    
    .calendar-header {
        margin-bottom: 0.75rem;
        padding: 0 0.25rem;
    }
    
    .calendar-month-year {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .calendar-nav {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        padding: 0;
    }
    
    .calendar-weekdays {
        gap: 4px;
        margin-bottom: 0.5rem;
    }
    
    .calendar-weekdays span {
        font-size: 0.75rem;
        padding: 0.4rem 0;
        font-weight: 700;
    }
    
    .calendar-days {
        gap: 4px;
    }
    
    .calendar-day {
        font-size: 0.9rem;
        padding: 0.75rem;
        min-height: 44px;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .time-slots-container {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(0, 163, 255, 0.05) 100%);
        border: 2px solid var(--primary-blue);
        border-radius: 10px;
        padding: 0.6rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
    }
    
    .time-slots-container > label {
        font-weight: 700;
        color: var(--primary-blue);
        text-align: center;
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .time-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        max-height: 160px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 2px;
    }
    
    .time-slot span {
        padding: 0.55rem 0.25rem;
        font-size: 0.75rem;
        font-weight: 700;
        border-radius: 6px;
    }
    
    .contact-fields .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-fields input,
    .contact-fields select,
    .contact-fields textarea {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .booking-nav {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .booking-success {
        padding: 0.5rem 0;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .booking-success h3 {
        font-size: 1.25rem;
    }
    
    .booking-summary {
        padding: 1rem;
    }
}

/* Extra kleine Smartphones */
@media (max-width: 400px) {
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar-day {
        font-size: 0.7rem;
    }
    
    .calendar-weekdays span {
        font-size: 0.65rem;
    }
    
    .calendar-month-year {
        font-size: 0.85rem;
    }
}

/* ===== Mobile Bottom Navigation (App-Style) ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(10, 15, 20, 0.98) 0%, rgba(5, 10, 15, 1) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 99999;
    padding: 0 10px;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    /* Hamburger-Menü verstecken auf Mobile */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* Nav-Menu verstecken */
    .nav-menu {
        display: none !important;
    }
    
    /* Mehr Platz unten für die Bottom-Nav */
    body {
        padding-bottom: 80px;
    }
    
    .footer {
        padding-bottom: 100px;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #8b949e;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 60px;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item:active {
    transform: scale(0.9);
}

.bottom-nav-icon {
    font-size: 1.4rem;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.bottom-nav-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: #00d4ff;
}

.bottom-nav-item.active .bottom-nav-icon,
.bottom-nav-item:hover .bottom-nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

.bottom-nav-item.active .bottom-nav-label {
    color: #00d4ff;
}

/* Center Button (Termin) - Hervorgehoben */
.bottom-nav-center {
    position: relative;
    color: #000 !important;
    background: transparent;
    margin-top: -25px;
}

.bottom-nav-icon-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
}

.bottom-nav-center:hover .bottom-nav-icon-center,
.bottom-nav-center:active .bottom-nav-icon-center {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.7);
}

.bottom-nav-center .bottom-nav-label {
    margin-top: 4px;
    color: #00d4ff;
    font-weight: 700;
}

/* Ripple Effect bei Tap */
.bottom-nav-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.bottom-nav-item:active::after {
    opacity: 1;
    transform: scale(2);
}


/* Snow Canvas - Minimal Styling */
#snow-canvas {
    pointer-events: none;
}


/* ========================================
   Photo Upload Styles - Service Forms
======================================== */
.service-form .photo-upload-grid,
#repairPhotoGrid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.5rem !important;
    margin: 0.75rem 0 !important;
    max-width: 320px;
}

.service-form .photo-upload-item,
#repairPhotoGrid .photo-upload-item {
    width: 70px !important;
    height: 70px !important;
    border: 2px dashed rgba(255, 255, 255, 0.25) !important;
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    overflow: hidden !important;
    position: relative !important;
    background: rgba(0, 0, 0, 0.2) !important;
}

.service-form .photo-upload-item:hover,
#repairPhotoGrid .photo-upload-item:hover {
    border-color: var(--primary, #00a3ff) !important;
    background: rgba(0, 163, 255, 0.1) !important;
}

.service-form .photo-upload-item .photo-preview,
#repairPhotoGrid .photo-upload-item .photo-preview {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    gap: 0.125rem !important;
}

.service-form .photo-upload-item .photo-preview svg,
#repairPhotoGrid .photo-upload-item .photo-preview svg {
    width: 18px !important;
    height: 18px !important;
    stroke: rgba(255, 255, 255, 0.5) !important;
}

.service-form .photo-upload-item .photo-preview span,
#repairPhotoGrid .photo-upload-item .photo-preview span {
    font-size: 0.6rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.service-form .photo-upload-item.has-photo,
#repairPhotoGrid .photo-upload-item.has-photo {
    border-style: solid !important;
    border-color: var(--success, #10b981) !important;
}

.service-form .photo-upload-item.has-photo .photo-preview img,
#repairPhotoGrid .photo-upload-item.has-photo .photo-preview img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.service-form .photo-upload-item .photo-remove,
#repairPhotoGrid .photo-upload-item .photo-remove {
    position: absolute !important;
    top: 2px !important;
    right: 2px !important;
    width: 16px !important;
    height: 16px !important;
    background: #ef4444 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    z-index: 2 !important;
}

.form-hint {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

@media (max-width: 480px) {
    .service-form .photo-upload-grid,
    #repairPhotoGrid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 160px;
    }
}

/* ===== Enhanced RMA Form Styles (Dashboard Integration) ===== */
.form-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.form-section-header h3 {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Problem Tags */
.problem-tag .tag-content {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.problem-tag .tag-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-tag input[type="checkbox"]:checked + .tag-content::before {
    opacity: 1;
}

.problem-tag:hover .tag-content::before {
    opacity: 0.5;
}

/* Enhanced Service Cards */
.service-option .service-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-option .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.service-option:hover .service-card::before {
    opacity: 1;
}

.service-option input[type="radio"]:checked + .service-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-option input[type="radio"]:checked + .service-card::before {
    opacity: 1;
}

/* Service Badges */
.service-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.625rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    background: #10b981;
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.service-badge-express {
    background: #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* Photo Upload Grid */
.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .photo-upload-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-upload-item {
    aspect-ratio: 1;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
}

.photo-upload-item:hover {
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.photo-upload-item.has-image {
    border-style: solid;
    border-color: #3b82f6;
    background-size: cover;
    background-position: center;
}

.photo-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.photo-preview svg {
    width: 32px;
    height: 32px;
    opacity: 0.6;
}

.has-image .photo-preview {
    display: none;
}

/* Price Display Enhancement */
.repair-price-display {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.repair-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.15s ease;
}

.repair-price-value.has-price {
    font-size: 2rem;
}

