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

:root {
    /* Logo Farben */
    --primary-black: #000000;
    --primary-blue: #0047FF;
    --primary-white: #FFFFFF;
    
    /* Zusätzliche Farben */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-gray: #a0a0a0;
    --text-light-gray: #d0d0d0;
    --border-gray: #1a1a1a;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 20px;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    border-bottom-color: var(--border-gray);
    box-shadow: 0 4px 20px rgba(0, 71, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--container-padding);
}

.navbar .logo img {
    height: 40px;
    transition: transform var(--transition-normal);
}

.navbar .logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width var(--transition-normal);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-white);
    transition: all var(--transition-fast);
}

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

.hero-background {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
    will-change: transform;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 71, 255, 0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-light-gray);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-light-gray);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-light-gray);
}

.feature-icon {
    font-size: 32px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-blue), transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    transform: translateX(-50%) rotate(45deg);
}

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

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--primary-white);
    box-shadow: 0 4px 20px rgba(0, 71, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0039cc;
    box-shadow: 0 6px 30px rgba(0, 71, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

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

.btn-full {
    width: 100%;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    font-weight: 300;
}

/* ===================================
   About Section
   =================================== */
.about {
    background-color: var(--bg-dark);
}

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

.about-text {
    padding-right: 20px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light-gray);
    margin-bottom: 25px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--border-gray);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.stat:hover {
    background-color: rgba(0, 71, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1);
    transition: transform var(--transition-slow);
}

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

.about-image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 71, 255, 0.4);
}

.badge-icon {
    font-size: 20px;
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: linear-gradient(180deg, var(--primary-black) 0%, var(--bg-dark) 100%);
}

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

.service-card {
    background-color: var(--border-gray);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 71, 255, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.1) 0%, var(--border-gray) 100%);
    border-color: var(--primary-blue);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon {
    font-size: 56px;
    margin-bottom: 30px;
    display: block;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-white);
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light-gray);
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background-color: var(--bg-dark);
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-title {
    color: var(--primary-white);
    font-size: 20px;
    font-weight: 600;
}

/* ===================================
   Showroom Section
   =================================== */
.showroom {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.showroom-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 71, 255, 0.3) 100%
    );
}

.showroom-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 60px 0;
}

.showroom-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 71, 255, 0.4);
}

.showroom-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.showroom-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light-gray);
    margin-bottom: 40px;
}

.showroom-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.showroom-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--primary-white);
}

.feature-check {
    width: 28px;
    height: 28px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.showroom-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
}

.info-item {
    display: flex;
    gap: 20px;
}

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

.info-text strong {
    display: block;
    color: var(--primary-blue);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-text p {
    color: var(--text-light-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ===================================
   Process Section
   =================================== */
.process {
    background-color: var(--primary-black);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--border-gray);
    border-radius: 16px;
    transition: all var(--transition-normal);
}

.process-step:hover {
    background-color: rgba(0, 71, 255, 0.1);
    transform: translateY(-10px);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    opacity: 0.3;
}

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

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.process-arrow {
    font-size: 32px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--primary-black) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    padding-right: 40px;
}

.contact-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light-gray);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    color: var(--primary-blue);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-text p,
.contact-text a {
    color: var(--text-light-gray);
    font-size: 16px;
    line-height: 1.6;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--border-gray);
    border-radius: 12px;
    color: var(--primary-white);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background-color: var(--border-gray);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 71, 255, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    color: var(--text-light-gray);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background-color: var(--bg-darker);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--primary-white);
    font-family: var(--font-main);
    font-size: 16px;
    transition: all var(--transition-fast);
}

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

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

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-blue);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition-fast);
}

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

.footer-contact p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
    color: var(--text-gray);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 71, 255, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #0039cc;
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 71, 255, 0.6);
}

/* ===================================
   SVG Icon Styles
   =================================== */
.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
}

.service-icon {
    width: 64px;
    height: 64px;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.contact-icon,
.info-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* ===================================
   Legal/Impressum Page
   =================================== */
.legal-content {
    padding: 120px 0 80px;
    min-height: 100vh;
    background-color: var(--bg-dark);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-gray);
}

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light-gray);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light-gray);
    margin-bottom: 15px;
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-section a:hover {
    color: var(--primary-white);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--primary-white);
    font-weight: 600;
}

.back-button-wrapper {
    margin-top: 60px;
    text-align: center;
}

/* ===================================
   Form Checkbox Styling
   =================================== */
.form-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

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

.form-group label span {
    color: var(--text-light-gray);
    font-size: 14px;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 81px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 81px);
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 30px;
        transition: left var(--transition-normal);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .showroom-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .showroom-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar .container {
        padding: 15px var(--container-padding);
    }
    
    .navbar .logo img {
        height: 35px;
    }
    
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================
   Cookie Banner & Modal
   =================================== */

/* Cookie Banner */
.cookie-banner {
    /* Fixed Position - ÜBER allem */
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    /* Halbtransparenter Hintergrund im Website-Stil */
    background: rgba(0, 0, 0, 0.85);
    /* Fallback für ältere Browser */
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(20, 20, 20, 0.90) 100%);
    /* Blur-Effekt mit Browser-Präfixen */
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    /* Blauer Border im Website-Stil */
    border-top: 3px solid var(--primary-blue);
    box-shadow: 0 -5px 30px rgba(0, 71, 255, 0.2), 
                0 -2px 10px rgba(0, 0, 0, 0.3);
    padding: 25px 20px;
    /* Maximaler Z-Index */
    z-index: 999999 !important;
    /* Standardmäßig nach unten verschoben und unsichtbar */
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s ease,
                visibility 0.5s ease;
}

.cookie-banner.show {
    /* Banner ANZEIGEN */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-white);
    /* Bessere Lesbarkeit auf halbtransparentem Hintergrund */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.cookie-text p {
    color: var(--primary-white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    /* Bessere Lesbarkeit */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

.cookie-text a {
    color: var(--primary-blue);
    text-decoration: underline;
    text-decoration-color: rgba(0, 71, 255, 0.5);
    transition: all 0.2s ease;
    font-weight: 600;
}

.cookie-text a:hover {
    color: #0056ff;
    text-decoration-color: rgba(0, 86, 255, 1);
    text-shadow: 0 0 10px rgba(0, 71, 255, 0.5);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: var(--font-main);
    /* Bessere Sichtbarkeit */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cookie-btn-accept {
    background: var(--primary-blue);
    color: var(--primary-white);
    /* Starker Glow-Effekt */
    box-shadow: 0 4px 15px rgba(0, 71, 255, 0.4);
}

.cookie-btn-accept:hover {
    background: #0056ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 71, 255, 0.6);
}

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

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.cookie-btn-settings {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-light-gray);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings:hover {
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-white);
    border-color: var(--primary-blue);
    transform: translateY(-1px);
}

/* Cookie Modal */
.cookie-modal {
    /* Fixed Fullscreen Overlay */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    /* Dunkler halbtransparenter Overlay */
    background: rgba(0, 0, 0, 0.90);
    /* Blur mit Browser-Präfixen */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /* Über dem Banner */
    z-index: 1000000 !important;
    /* Flexbox für Zentrierung */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* Standardmäßig VERSTECKT */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.show {
    /* Modal ANZEIGEN */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-modal-content {
    /* Halbtransparenter Hintergrund im Website-Stil */
    background: rgba(10, 10, 10, 0.95);
    /* Fallback Gradient */
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    /* Blauer Border im Website-Stil */
    border: 3px solid var(--primary-blue);
    box-shadow: 0 20px 60px rgba(0, 71, 255, 0.3),
                0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    /* Verhindere Layout-Probleme */
    position: relative;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
    animation: scaleUpModal 0.3s ease-out forwards;
}

@keyframes scaleUpModal {
    from {
        transform: scale(0.9);
        opacity: 0.5;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-gray);
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-white);
    margin: 0;
}

.cookie-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-light-gray);
}

.cookie-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-white);
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 180px);
}

.cookie-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.cookie-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 71, 255, 0.3);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 20px;
}

.cookie-category-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-white);
    margin: 0 0 5px 0;
}

.cookie-category-header p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.cookie-category-info {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.cookie-category-info strong {
    color: var(--text-light-gray);
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
    border-radius: 28px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition-fast);
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--primary-blue);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    cursor: not-allowed;
    background-color: var(--primary-blue);
    opacity: 0.6;
}

/* Cookie Modal Footer */
.cookie-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-gray);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Responsive Cookie Banner */
@media (max-width: 992px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .cookie-btn {
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 15px;
        /* Mehr Sichtbarkeit auf Tablets */
        background: rgba(0, 0, 0, 0.92);
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .cookie-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 18px 15px;
        /* Maximale Sichtbarkeit auf Mobilgeräten */
        background: rgba(0, 0, 0, 0.95);
        border-top: 3px solid var(--primary-blue);
    }
    
    .cookie-content {
        gap: 15px;
    }
    
    .cookie-text h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.95rem;
    }
    
    /* Modal Mobile-Optimierung */
    .cookie-modal {
        padding: 10px;
    }
    
    .cookie-modal-content {
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .cookie-modal-header {
        padding: 18px 15px;
    }
    
    .cookie-modal-header h2 {
        font-size: 1.2rem;
    }
    
    .cookie-modal-body {
        padding: 15px;
    }
    
    .cookie-modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
    
    .cookie-category {
        padding: 15px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cookie-category-header h3 {
        font-size: 1rem;
    }
    
    .cookie-category-info {
        font-size: 0.85rem;
    }
}

/* Safari iOS Fix */
@supports (-webkit-touch-callout: none) {
    .cookie-banner {
        /* Fester Hintergrund für Safari */
        background: rgba(0, 0, 0, 0.92) !important;
    }
    
    .cookie-modal {
        background: rgba(0, 0, 0, 0.92) !important;
    }
}

/* Hochformat-Geräte */
@media (max-height: 600px) and (orientation: landscape) {
    .cookie-modal-content {
        max-height: 85vh;
    }
    
    .cookie-modal-body {
        max-height: calc(85vh - 150px);
    }
}

