/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-red: #dc2626;
    --secondary-red: #ef4444;
    --dark-red: #991b1b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --light-gray: #f1f5f9;
    --medium-gray: #64748b;
    --dark-gray: #334155;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-gradient: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --shadow-sm: 0 2px 8px rgba(220, 38, 38, 0.08);
    --shadow-md: 0 8px 24px rgba(220, 38, 38, 0.15);
    --shadow-lg: 0 20px 60px rgba(220, 38, 38, 0.25);
    --shadow-xl: 0 25px 80px rgba(220, 38, 38, 0.35);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    scroll-padding-top: 110px; /* Offset für fixed Navbar */
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.08);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    overflow-x: hidden;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-animation {
    width: 70px;
    height: 70px;
    position: relative;
    overflow: hidden;
}

.logo-animation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.2));
    transition: var(--transition);
}

/* Intro Animation - Nur beim Laden! */
.logo-animation.intro-animation img {
    animation: logoDriveIn 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Speed Lines Effekt beim Einfahren */
.logo-animation.intro-animation::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    top: 50%;
    left: -100px;
    animation: speedLine 1.5s ease-out;
    pointer-events: none;
}

.logo-animation.intro-animation::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-red) 50%, transparent 100%);
    top: 60%;
    left: -80px;
    animation: speedLine 1.5s ease-out 0.1s;
    pointer-events: none;
}

@keyframes speedLine {
    0% {
        opacity: 0;
        transform: translateX(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(200px);
    }
}

@keyframes logoDriveIn {
    0% {
        transform: translateX(-300px) scale(0.8);
        opacity: 0;
        filter: drop-shadow(0 0 0 rgba(220, 38, 38, 0));
    }
    40% {
        transform: translateX(-300px) scale(0.8);
        opacity: 0;
    }
    70% {
        transform: translateX(20px) scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 8px 20px rgba(220, 38, 38, 0.4));
    }
    85% {
        transform: translateX(-5px) scale(0.98);
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
        filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.2));
    }
}

/* Hover nur NACH der Intro-Animation */
.logo-animation:not(.intro-animation):hover img {
    filter: drop-shadow(0 8px 24px rgba(220, 38, 38, 0.4));
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* Text Intro Animation */
.logo-text.intro-animation {
    opacity: 0;
    animation: textFadeIn 1s ease-out 1.8s forwards;
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    line-height: 1;
    transition: var(--transition);
}

.logo-container:not(.intro-animation):hover .brand-name {
    color: var(--primary-red);
}

.brand-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-red);
    line-height: 1;
}

/* OLD HAMBURGER - DISABLED
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    position: relative;
    pointer-events: auto;
    touch-action: manipulation;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #dc2626;
    border-radius: 3px;
    pointer-events: none;
}

.menu-toggle:hover span {
    background: var(--secondary-red);
}

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

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
*/

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-gradient);
    transition: var(--transition);
    border-radius: 3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    transform: translateY(-2px);
}

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

/* Dropdown Menu - DEAKTIVIERT
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20000;
    border: 2px solid rgba(220, 38, 38, 0.1);
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: var(--light-gray);
    border-left-color: var(--primary-red);
    color: var(--primary-red);
    padding-left: 25px;
}

.dropdown-item i {
    color: var(--primary-red);
    font-size: 16px;
    width: 20px;
}
*/

/* ===================================
   Hero Section - MODERN & DYNAMIC
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
    padding-top: 80px;
}

/* Animated Background Shapes */
.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    right: -400px;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -300px;
    animation: float 15s ease-in-out infinite reverse;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 50px 20px;
    max-width: 1000px;
}

.hero-logo-large {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    position: relative;
}

/* Hero Logo Intro Animation - Auto fährt rein! */
.hero-logo-large.intro-animation img {
    animation: heroLogoDriveIn 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

/* Speed Lines für Hero Logo */
.hero-logo-large.intro-animation::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 40%, transparent 100%);
    top: 40%;
    left: -200px;
    animation: heroSpeedLine 2s ease-out;
    z-index: -1;
}

.hero-logo-large.intro-animation::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-red) 40%, transparent 100%);
    top: 60%;
    left: -150px;
    animation: heroSpeedLine 2s ease-out 0.15s;
    z-index: -1;
}

@keyframes heroSpeedLine {
    0% {
        opacity: 0;
        transform: translateX(0);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(400px);
    }
}

@keyframes heroLogoDriveIn {
    0% {
        transform: translateX(-600px) scale(0.5) rotate(-20deg);
        opacity: 0;
        filter: drop-shadow(0 0 0 rgba(220, 38, 38, 0));
    }
    30% {
        transform: translateX(-600px) scale(0.5) rotate(-20deg);
        opacity: 0;
    }
    65% {
        transform: translateX(30px) scale(1.15) rotate(5deg);
        opacity: 1;
        filter: drop-shadow(0 20px 50px rgba(220, 38, 38, 0.5));
    }
    80% {
        transform: translateX(-10px) scale(0.95) rotate(-2deg);
    }
    100% {
        transform: translateX(0) scale(1) rotate(0deg);
        opacity: 1;
        filter: drop-shadow(0 15px 40px rgba(220, 38, 38, 0.3));
    }
}

/* Logo Entrance für Container - sanfter */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(220, 38, 38, 0.3));
}

/* Float Animation - NUR wenn NICHT intro-animation */
.hero-logo-large:not(.intro-animation) img {
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Puls-Effekt - NUR wenn NICHT intro-animation */
.hero-logo-large:not(.intro-animation)::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.2;
    }
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
    color: #ffffff;
    animation: titleSlide 1s ease-out 0.3s both;
}

@keyframes titleSlide {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

@keyframes highlightGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.8));
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 400;
    animation: subtitleFade 1s ease-out 0.5s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsPop 1s ease-out 0.7s both;
}

@keyframes buttonsPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.btn {
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: #ffffff;
    color: var(--primary-red);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary-red);
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 35px;
    color: var(--primary-red);
    filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -25px); }
    60% { transform: translate(-50%, -15px); }
}

/* ===================================
   Sections Common Styles
   =================================== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '• • •';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: var(--primary-red);
    letter-spacing: 8px;
    animation: dotsPulse 1.5s ease-in-out infinite;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 30px auto 0;
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--light-gray);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 38, 38, 0.03) 100%);
    pointer-events: none;
}

/* Services Intro Text */
.services-intro-text {
    max-width: 900px;
    margin: 40px auto 50px;
    text-align: center;
}

.services-intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.services-intro-text strong {
    color: var(--primary-red);
    font-weight: 600;
}

.services-highlight {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: var(--white) !important;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    box-shadow: var(--shadow-lg);
    animation: pulse-subtle 3s ease-in-out infinite;
}

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

.services-highlight i {
    font-size: 1.3rem;
    animation: rotate-star 4s linear infinite;
}

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

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

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

/* Services Video Container */
.services-video-container {
    width: 200px;
    height: 200px;
    margin: 30px auto 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    background: #000;
}

.services-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card > a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card.featured {
    border: 3px solid var(--primary-red);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: 15px;  /* INNERHALB der Karte statt -15px */
    right: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    z-index: 10;  /* Über dem Inhalt */
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.service-card-link:hover .service-card {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
    position: relative;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 14px;
}

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

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    transition: var(--transition);
}

.service-features li:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.service-features i {
    color: var(--primary-red);
    font-size: 16px;
    transition: var(--transition);
}

.service-features li:hover i {
    transform: scale(1.3);
}

.service-cta {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.cta-link i {
    transition: transform 0.3s;
}

.service-card:hover .cta-link i {
    transform: translateX(5px);
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 35px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.about-feature i {
    font-size: 40px;
    color: var(--primary-red);
    min-width: 45px;
    transition: var(--transition);
}

.about-feature:hover i {
    transform: scale(1.2) rotate(5deg);
}

.about-feature h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
}

.about-feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Services List Styling */
.about-text > p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.about-text > p strong {
    color: var(--primary-red);
    font-weight: 600;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 5px solid var(--primary-red);
}

.services-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-column li {
    padding: 12px 0;
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.services-column li:hover {
    color: var(--primary-red);
    transform: translateX(8px);
}

.services-column li i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* Authorities Section */
.authorities-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    padding: 35px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid rgba(220, 38, 38, 0.1);
}

.authorities-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.authorities-section h3 i {
    color: var(--primary-red);
}

.authorities-section > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.authorities-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.authorities-badges .badge {
    background: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid var(--primary-red);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.authorities-badges .badge:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.authorities-badges .badge i {
    font-size: 1rem;
}

/* Kennzeichen Highlight */
.kennzeichen-highlight {
    background: var(--primary-red);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-lg);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-lg);
    }
    50% {
        box-shadow: 0 20px 60px rgba(220, 38, 38, 0.5);
    }
}

.kennzeichen-highlight i {
    font-size: 45px;
    min-width: 50px;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.kennzeichen-highlight h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.kennzeichen-highlight p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    color: var(--white);
}

.kennzeichen-highlight strong {
    font-weight: 700;
    text-decoration: underline;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.stat-card {
    background: var(--light-gray);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::before {
    opacity: 0.08;
}

.stat-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

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

.stat-label {
    color: var(--text-secondary);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    background: var(--white);
}

/* Why Us Intro Text */
.why-us-intro {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.why-us-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.why-us-intro p:first-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.why-us-intro strong {
    color: var(--primary-red);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-box {
    background: var(--light-gray);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-box:hover::after {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

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

.feature-box:hover {
    transform: translateY(-12px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.feature-box i {
    font-size: 55px;
    color: var(--primary-red);
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-box:hover i {
    transform: scale(1.2) rotateY(360deg);
}

.feature-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background: var(--light-gray);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    background: var(--white);
    border: 2px solid rgba(220, 38, 38, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(220, 38, 38, 0.95) 0%, transparent 100%);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-xl);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--text-secondary);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, var(--white) 100%);
}

.gallery-placeholder i {
    font-size: 70px;
    color: var(--primary-red);
    opacity: 0.6;
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder i {
    transform: scale(1.2) rotateY(180deg);
    opacity: 0.9;
}

.gallery-placeholder p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===================================
   Kennzeichen & Typisierung Section
   =================================== */
.kennzeichen-service {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.kennzeichen-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 60px;
    animation: pulse-glow 3s ease-in-out infinite;
}

.banner-icon {
    font-size: 80px;
    color: var(--white);
    animation: shake 2s ease-in-out infinite;
}

.banner-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 800;
}

.banner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
}

/* Process Steps */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center; /* Center instead of space-between */
    gap: 15px; /* Reduced gap */
    margin: 60px 0;
    flex-wrap: nowrap; /* Prevent wrapping */
}

/* Force 3 columns on desktop */
@media (min-width: 769px) {
    .process-steps {
        display: flex !important;
        flex-wrap: nowrap !important;
    }
    
    .step-card {
        flex: 1 1 30%; /* Equal width for 3 cards */
        max-width: 350px; /* Limit max width */
    }
    
    .step-arrow {
        flex: 0 0 40px; /* Fixed arrow width */
    }
}

.step-card {
    flex: 1;
    min-width: 0; /* Allow shrinking */
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 60px;
    color: var(--primary-red);
    margin: 20px 0;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.2) rotateY(360deg);
}

.step-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.step-arrow {
    font-size: 40px;
    color: var(--primary-red);
    flex-shrink: 0;
    width: 40px; /* Fixed width */
    text-align: center;
    animation: arrow-bounce 2s ease-in-out infinite;
}

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

/* Success Stats */
.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.success-badge {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.success-badge:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 50px;
    color: var(--primary-red);
    min-width: 60px;
}

.badge-text h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.badge-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Service Details */
.service-details {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    margin: 60px 0;
    border-left: 5px solid var(--primary-red);
    box-shadow: var(--shadow-md);
}

.service-details h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.service-detail-item:hover {
    background: rgba(220, 38, 38, 0.08);
    transform: translateX(8px);
}

.service-detail-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.service-detail-item span {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Trust Partners */
.trust-partners {
    text-align: center;
    margin: 60px 0;
}

.trust-title {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badge {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 25px;
    border: 2px solid var(--primary-red);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.trust-badge:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-badge i {
    font-size: 1.2rem;
}

.trust-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    border: 3px solid var(--primary-red);
}

.cta-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-section > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-large i {
    font-size: 1.3rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: var(--shadow-md);
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.contact-item h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.contact-form {
    background: var(--light-gray);
    padding: 45px;
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0.08);
    transition: var(--transition);
}

.contact-form:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    background: var(--white);
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

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

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-primary);
    color: var(--white);
    border-top: 3px solid var(--primary-red);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--secondary-red);
    padding-left: 8px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */ /* Removed - show original logo colors */
}

.footer-logo h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.footer-logo h3 span {
    color: var(--secondary-red);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-red);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.whatsapp-float i {
    animation: whatsapp-shake 1s ease-in-out infinite;
}

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

@keyframes whatsapp-shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

/* ===================================
   Phone Call Float Button
   =================================== */
.phone-float {
    position: fixed;
    bottom: 170px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: var(--transition);
    animation: phone-pulse 2s ease-in-out infinite;
}

.phone-float:hover {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
    background: var(--dark-red);
}

.phone-float i {
    animation: phone-ring 1.5s ease-in-out infinite;
}

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

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20% { transform: rotate(15deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
}

/* ===================================
   Responsive Design
   =================================== */
@media screen and (max-width: 768px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .navbar {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .nav-container {
        padding: 0 10px;
        gap: 5px;
        width: 100%;
        max-width: 100%;
    }
    
    .logo-container {
        flex-shrink: 1;
        gap: 8px;
        max-width: calc(100vw - 80px);
    }
    
    .logo-animation {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .logo-text {
        flex-shrink: 1;
        min-width: 0;
    }
    
    .brand-name {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .brand-tagline {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    /* OLD MENU-TOGGLE - DISABLED
    .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 10001 !important;
        flex-shrink: 0;
        margin-left: 10px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        cursor: pointer !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(220, 38, 38, 0.2);
        background: rgba(220, 38, 38, 0.05);
        border-radius: 8px;
    }
    
    .menu-toggle span {
        pointer-events: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: #fff;
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px;
        gap: 25px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(220, 38, 38, 0.1);
        box-shadow: var(--shadow-md);
        z-index: 10002;
    }
    
    .nav-menu.active {
        left: 0;
    }
    */
    
    /* Desktop Navigation auf Mobile verstecken */
    .desktop-nav {
        display: none !important;
    }
    
    .hero {
        background-image: url('../images/hero-bg-mobile.jpg');
        background-position: center center;
        background-size: cover;
    }
    
    /* Video in mobiler Version kleiner */
    .services-video-container {
        width: 150px;
        height: 150px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 180px;
        padding: 10px 18px;
        font-size: 12px;
        margin: 0 auto;
        justify-content: center;
        white-space: nowrap;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        padding: 10px 20px;
        font-size: 13px;
        margin: 0 auto;
        justify-content: center;
        white-space: nowrap;
    }
    
    .services-grid,
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 80px 0;
    }
    
    /* Authorities badges für Tablet/Mobile */
    .authorities-badges {
        justify-content: center;
    }
    
    .authorities-badges .badge {
        padding: 12px 22px;
        font-size: 0.9rem;
        white-space: nowrap;
        flex: 0 1 auto;
    }
    
    /* About Text kompakter in mobiler Version */
    .about .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .about-text {
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-text > p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 18px;
        padding: 0 15px;
        text-align: left;
    }
    
    .section-header {
        padding: 0;
        text-align: center;
    }
    
    .services-list {
        margin: 20px 0;
        padding: 20px 15px;
    }
    
    .authorities-section {
        margin: 20px 0;
        padding: 25px 20px;
    }
    
    .kennzeichen-highlight {
        margin: 20px 0;
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .logo-animation {
        width: 55px;
        height: 55px;
    }
    
    .brand-name {
        font-size: 22px;
    }
    
    .brand-tagline {
        font-size: 12px;
    }
    
    .hero-logo-large {
        width: 150px;
        height: 150px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .why-us {
        padding-top: 15px;
    }
    
    .why-us-intro {
        margin: 0 auto 30px;
        padding: 0 15px;
    }
    
    .why-us-intro p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .why-us-intro p:first-child {
        font-size: 1.1rem;
    }
    
    /* Feature-Boxen VIEL kleiner für Mobile */
    .feature-box {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .feature-box i {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .feature-box h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature-box p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    /* Kennzeichen Service Mobile */
    .kennzeichen-banner {
        flex-direction: column;
        padding: 35px 25px;
        text-align: center;
    }
    
    .banner-icon {
        font-size: 60px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        font-size: 30px;
    }
    
    .step-card {
        padding: 35px 20px;
    }
    
    .step-card h3 {
        font-size: 1.3rem;
    }
    
    .step-card p {
        font-size: 0.9rem;
    }
    
    .service-details {
        padding: 30px 20px;
    }
    
    .service-details h3 {
        font-size: 1.5rem;
    }
    
    .service-list-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .success-badge {
        padding: 25px 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        padding: 15px 20px;
        font-size: 0.95rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    
    .btn-large i {
        font-size: 1.1rem;
    }
    
    .trust-logos {
        flex-direction: column;
        align-items: stretch;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float {
        bottom: 85px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .phone-float {
        bottom: 145px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    /* Authorities badges in mobiler Version größer */
    .authorities-badges .badge {
        padding: 12px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    /* About Text noch kompakter für kleine Screens */
    .about .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .about-text {
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }
    
    .about-text > p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 16px;
        padding: 0 10px;
        text-align: left;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0;
        text-align: center;
    }
    
    .services-list {
        margin: 15px 0;
        padding: 20px 12px;
    }
    
    .authorities-section {
        margin: 15px 0;
        padding: 20px 15px;
    }
    
    .authorities-section h3 {
        font-size: 1.4rem;
    }
    
    .kennzeichen-highlight {
        margin: 15px 0;
        padding: 20px 12px;
        flex-direction: column;
        gap: 15px;
    }
    
    .kennzeichen-highlight i {
        font-size: 35px;
    }
    
    .kennzeichen-highlight h4 {
        font-size: 1.3rem;
    }
    
    .kennzeichen-highlight p {
        font-size: 0.95rem;
    }
    
    /* Statistik-Karten VIEL kleiner für Mobile */
    .stat-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .about-stats {
        gap: 4px;
        grid-template-columns: 1fr;
        margin-top: 15px;
    }
}

/* ===================================
   Selection & Scrollbar
   =================================== */
::selection {
    background: var(--primary-red);
    color: white;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

/* ===================================
   Smooth Scroll Offset
   =================================== */
section {
    scroll-margin-top: 100px;
}

/* ===================================
   Loading Animation
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease-in;
}

/* ===================================
   TUNING PAGE STYLES
   =================================== */
.tuning-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(220, 38, 38, 0.3) 100%), 
                url('../images/gallery/civic-red.jpg') center/cover no-repeat;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    margin-right: 8px;
    color: #fbbf24;
}

.tuning-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.intro-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.tuning-services {
    padding: 80px 0;
    background: var(--light-gray);
}

.tuning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.tuning-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tuning-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.tuning-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tuning-card:hover::before {
    opacity: 1;
}

.tuning-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(239, 68, 68, 0.03) 100%);
}

.tuning-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.tuning-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: white;
}

.tuning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.tuning-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tuning-features {
    list-style: none;
    margin: 25px 0;
}

.tuning-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--light-gray);
}

.tuning-features li:last-child {
    border-bottom: none;
}

.tuning-features i {
    color: var(--primary-red);
    margin-right: 10px;
    width: 20px;
}

.tuning-highlight {
    margin-top: 25px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    text-align: center;
}

.tuning-highlight strong {
    font-size: 1.3rem;
    color: var(--primary-red);
}

.tuning-process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    max-width: 900px;
    margin: 60px auto 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    position: relative;
}

.process-step::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    margin-bottom: -40px;
    z-index: 2;
    position: relative;
}

.step-content {
    flex: 1;
    padding: 60px 30px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    width: 100%;
}

.process-step:hover .step-content {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}

.process-steps {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-content h3 i {
    color: var(--primary-red);
    margin-right: 10px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.tuning-benefits {
    padding: 80px 0;
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Subtle background gradient */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.testimonial-avatar i {
    font-size: 32px;
    color: var(--primary-red);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
    font-style: italic;
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

/* Quote marks */
.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 60px;
    color: rgba(220, 38, 38, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid rgba(220, 38, 38, 0.1);
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 500;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(220, 38, 38, 0.1);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--primary-red);
    font-weight: 600;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(220, 38, 38, 0.1);
}

.card-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 15px;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 10px;
}

.card-time i {
    color: var(--primary-red);
}

.card-pricing {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(220, 38, 38, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-row:last-child {
    border-bottom: none;
}

.car-type {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
}

.tuning-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content h2 .highlight {
    color: white;
}

.cta-content > p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    min-width: 260px;
}

/* CTA Section Buttons - Force White Text */
.tuning-cta .btn-large {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.tuning-cta .btn-large:hover {
    background: white;
    color: var(--primary-red) !important;
    transform: translateY(-4px) scale(1.05);
}

.tuning-cta .btn-large i {
    color: inherit;
}

.cta-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: white;
}

.info-item i {
    font-size: 1.3rem;
    color: white;
}

/* Price Grid Styles */
.card-price-info {
    margin-top: auto;
    padding-top: 25px;
    border-top: 2px solid rgba(220, 38, 38, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

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

.price-row .price-label i {
    margin-right: 6px;
    color: var(--primary-red);
}

.price-row .price-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.price-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

.price-item .price-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-item .price-value {
    font-size: 1.1rem;
    color: var(--primary-red);
    font-weight: 700;
}

/* Compact Card Style for Stage 4 */
.tuning-card-compact {
    padding: 25px 20px;
}

.tuning-card-compact .card-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 15px;
}

.tuning-card-compact h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.tuning-card-compact p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tuning-card-compact .card-features {
    gap: 8px;
    margin-bottom: 20px;
}

.tuning-card-compact .card-features li {
    font-size: 0.85rem;
    padding: 6px 0;
}

.tuning-card-compact .card-features i {
    font-size: 12px;
}

.tuning-card-compact .card-price-info {
    padding-top: 15px;
}

.tuning-card-compact .price-row {
    padding: 10px 12px;
    margin-bottom: 12px;
}

.tuning-card-compact .price-row .price-label {
    font-size: 0.8rem;
}

.tuning-card-compact .price-row .price-value {
    font-size: 0.85rem;
}

.tuning-card-compact .price-grid {
    gap: 8px;
    margin-bottom: 12px;
}

.tuning-card-compact .price-item {
    padding: 10px 8px;
}

.tuning-card-compact .price-item .price-label {
    font-size: 0.75rem;
}

.tuning-card-compact .price-item .price-value {
    font-size: 0.95rem;
}

.tuning-card-compact .card-price {
    font-size: 1.5rem;
    padding: 12px;
}

/* Spezielle Grid-Varianten für Aufbereitungs-Seite */
.tuning-grid-2cols {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.tuning-grid-compact {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tuning-grid-versiegelung {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

/* Mobile Styles for Tuning Page */
@media (max-width: 768px) {
    .tuning-hero {
        min-height: 60vh;
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .tuning-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .tuning-hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .intro-content .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .tuning-grid {
        grid-template-columns: 1fr;
    }
    
    /* Override alle Grid-Varianten auf Mobile */
    .tuning-grid-2cols,
    .tuning-grid-compact,
    .tuning-grid-versiegelung {
        grid-template-columns: 1fr !important;
        gap: 25px;
        max-width: 100%;
    }
    
    /* Compact cards on mobile - reduce padding further */
    .tuning-card-compact {
        padding: 20px 15px;
    }
    
    .tuning-card-compact .card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .tuning-card-compact h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .tuning-card-compact p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .tuning-card-compact .card-features {
        margin-bottom: 12px;
    }
    
    .tuning-card-compact .card-features li {
        font-size: 0.75rem;
        padding: 4px 0;
    }
    
    /* Mobile: Reduce card padding */
    .tuning-card {
        padding: 25px 18px;
    }
    
    .tuning-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .tuning-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .tuning-card .card-features {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .tuning-card .card-features li {
        font-size: 0.88rem;
        padding: 7px 0;
    }
    
    /* Mobile: Badge adjustments */
    .featured-badge,
    .tuning-badge {
        top: 12px;
        right: 12px;
        padding: 6px 18px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .tuning-card .card-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    /* Mobile: Price Grid adjustments */
    .price-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .price-item {
        padding: 12px 10px;
    }
    
    .price-item .price-label {
        font-size: 0.85rem;
    }
    
    .price-item .price-value {
        font-size: 1.05rem;
        font-weight: 700;
    }
    
    .price-row {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .price-row .price-label {
        font-size: 0.9rem;
    }
    
    .price-row .price-value {
        font-size: 0.95rem;
        font-weight: 700;
    }
    
    .card-price {
        font-size: 1.8rem;
        padding: 18px;
        margin-top: 15px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
        margin-bottom: -35px;
    }
    
    .step-content {
        padding: 55px 25px 25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Hide desktop-only testimonials on mobile */
    .testimonial-card.desktop-only {
        display: none !important;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .tuning-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .info-item {
        font-size: 0.95rem;
    }
    
    .cta-info {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===================================
   BULLETPROOF MOBILE HAMBURGER + MENU
   =================================== */
.hamburger-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    position: relative;
    z-index: 999999; /* sehr hoch, damit nichts drüber liegt */
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger-lines {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    height: 2px;
    background: #dc2626;
    transform: translateY(-50%);
    transition: background 0.2s;
}

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

.shop-categories {
    padding: 80px 0;
    background: var(--white);
}

.category-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0.08);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.category-link:hover {
    gap: 12px;
}

.category-link i {
    transition: var(--transition);
}

/* Shop Products */
.shop-products {
    padding: 80px 0;
    background: var(--light-gray);
}

.product-category {
    margin-bottom: 80px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-red);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: var(--primary-red);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    border: 2px solid rgba(220, 38, 38, 0.08);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
}

.product-image {
    width: 120px;
    height: 120px;
    background: var(--light-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: var(--primary-red);
}

.product-card h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    min-height: 50px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--primary-red);
    font-size: 14px;
}

.product-cta {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.price-on-request {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.product-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    margin-bottom: 5px;
}

.product-price .price-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Shop Benefits */
.shop-benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefit-card {
    background: var(--light-gray);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #dc2626; /* Solid red background */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px; /* Larger for emojis */
    line-height: 1;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: #b91c1c; /* Darker red on hover */
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Styles for Shop */
@media (max-width: 768px) {
    .category-card {
        padding: 25px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card {
        padding: 25px 20px;
    }
    
    .product-image {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .product-card h4 {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .product-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .product-price .price {
        font-size: 1.6rem;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 32px; /* Smaller emojis on mobile */
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
    }
}

/* ===================================
   JOSHI HERO - FULL BANNER
   =================================== */

.joshi-hero {
    min-height: auto;
    height: auto;
    padding: 90px 0 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Modern gradient line divider */
.joshi-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626 20%, #dc2626 80%, transparent);
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

.hero-banner-full {
    width: 100%;
    max-width: 1400px; /* Limit max width */
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.joshi-hero-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 400px;
    animation: pulse 3s ease-in-out infinite;
}

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

/* Mobile Styles for Joshi Hero */
@media (max-width: 768px) {
    .joshi-hero {
        padding: 80px 0 40px;
    }
    
    .joshi-hero::after {
        width: 90%;
        height: 3px;
    }
    
    .hero-banner-full {
        padding: 0 15px;
    }
    
    .joshi-hero-banner {
        width: 100%;
        max-height: 250px;
    }
}

/* ===================================
   JOSHI BANNER IN HERO
   =================================== */

.hero-banner-image {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    border-radius: 10px;
}

/* Mobile Styles for Hero Banner */
@media (max-width: 768px) {
    .hero-banner-image {
        margin-bottom: 20px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-banner-img {
        border-radius: 8px;
    }
}

/* ===================================
   JOSHI BANNER SECTION
   =================================== */

.joshi-banner {
    padding: 60px 0;
    background: var(--white);
}

.banner-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.full-width-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Mobile Styles for Banner */
@media (max-width: 768px) {
    .joshi-banner {
        padding: 40px 0;
    }
    
    .banner-image {
        border-radius: 10px;
    }
}

/* ===================================
   CONTACT FORM CHECKBOX
   =================================== */

.form-checkbox {
    margin: 25px 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    user-select: none;
}

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

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: var(--white);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-red);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

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

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    display: block;
}

.checkbox-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Mobile Styles for Checkbox */
@media (max-width: 768px) {
    .checkbox-container {
        padding-left: 32px;
    }
    
    .checkmark {
        height: 20px;
        width: 20px;
    }
    
    .checkbox-container .checkmark:after {
        left: 6px;
        top: 2px;
        width: 5px;
        height: 9px;
    }
    
    .checkbox-text {
        font-size: 0.85rem;
    }
}

/* ===================================
   IMPRESSUM & LEGAL PAGES
   =================================== */

.impressum-section {
    padding: 120px 0 80px;
    background: var(--light-gray);
    min-height: 100vh;
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-title {
    font-size: 3rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.impressum-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.impressum-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(220, 38, 38, 0.08);
}

.impressum-box h2 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.impressum-item {
    margin-bottom: 25px;
}

.impressum-item:last-child {
    margin-bottom: 0;
}

.impressum-item h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.impressum-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.impressum-item p:last-child {
    margin-bottom: 0;
}

.impressum-item a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

.impressum-item a:hover {
    text-decoration: underline;
}

.impressum-item i {
    color: var(--primary-red);
    margin-right: 8px;
    width: 20px;
}

.impressum-contact {
    background: var(--accent-gradient);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.impressum-contact h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.impressum-contact p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    min-width: 200px;
}

/* Mobile Styles for Impressum */
@media (max-width: 768px) {
    .impressum-section {
        padding: 100px 0 60px;
    }
    
    .impressum-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .impressum-box {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .impressum-box h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .impressum-item h3 {
        font-size: 1.1rem;
    }
    
    .impressum-item p {
        font-size: 0.95rem;
    }
    
    .impressum-contact {
        padding: 30px 20px;
    }
    
    .impressum-contact h2 {
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}



.hamburger-lines::before,
.hamburger-lines::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #dc2626;
    transition: all 0.3s;
}

.hamburger-lines::before {
    top: -10px;
}

.hamburger-lines::after {
    top: 10px;
}

.hamburger-btn.is-open .hamburger-lines {
    background: transparent;
}

.hamburger-btn.is-open .hamburger-lines::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger-btn.is-open .hamburger-lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999998;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px; /* Reduced from 320px */
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 999999;
    padding: 80px 15px 30px; /* Reduced padding */
    display: flex;
    flex-direction: column;
    gap: 8px; /* Reduced from 16px */
    transition: right 0.25s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto; /* Allow scrolling if content is too long */
    overflow-x: hidden;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px; /* Reduced from 18px */
    padding: 10px 14px; /* Reduced from 12px 16px */
    border-radius: 6px; /* Reduced from 8px */
    transition: all 0.3s;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu a[style*="padding-left"] {
    padding-left: 25px !important; /* Reduced sub-menu indent */
    font-size: 14px !important; /* Smaller for sub-items */
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background: var(--light-gray);
    border-left-color: var(--primary-red);
    transform: translateX(4px);
}

.desktop-nav {
    display: flex;
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: inline-block;
    }
    
    .desktop-nav {
        display: none;
    }
}