/* ============================================================
   GLOBALE STYLES & RESET
   ============================================================ */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #FF0033;
    --primary-red-light: #FF3366;
    --primary-red-dark: #CC0029;
    --anthrazit: #1A1A1A;
    --anthrazit-light: #2D2D2D;
    --anthrazit-dark: #0A0A0A;
    --anthrazit-gray: #333333;
    --gray-dark: #444444;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --dark-white: #E8E8E8;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --fast-transition: all 0.3s ease;
    --glow: 0 0 20px rgba(255, 51, 102, 0.7);
    --glow-strong: 0 0 40px rgba(255, 51, 102, 0.9);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #000;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
   GLOBALE HERO MARGIN FÜR ALLE SEITEN
   ============================================================ */

.hero,
.schulungen-hero,
.ueber-hero,
.kontakt-verbundene-sections,
.datenschutz-hero,
.impressum-hero {
    margin-top: 90px;
}

@media (max-width: 992px) {
    .hero,
    .schulungen-hero,
    .ueber-hero,
    .kontakt-verbundene-sections,
    .datenschutz-hero,
    .impressum-hero {
        margin-top: 85px;
    }
}

@media (max-width: 768px) {
    .hero,
    .schulungen-hero,
    .ueber-hero,
    .kontakt-verbundene-sections,
    .datenschutz-hero,
    .impressum-hero {
        margin-top: 80px;
    }
}

@media (max-width: 576px) {
    .hero,
    .schulungen-hero,
    .ueber-hero,
    .kontakt-verbundene-sections,
    .datenschutz-hero,
    .impressum-hero {
        margin-top: 72px;
    }
}

@media (max-width: 400px) {
    .hero,
    .schulungen-hero,
    .ueber-hero,
    .kontakt-verbundene-sections,
    .datenschutz-hero,
    .impressum-hero {
        margin-top: 68px;
    }
}

/* ============================================================
   ALLGEMEINE KOMPONENTEN (Seitenübergreifend)
   ============================================================ */

/* Cookie Banner */
.cookie-checkbox {
    display: none;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--anthrazit-dark);
    color: var(--white);
    z-index: 9999;
    padding: 25px 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.7);
    border-top: 2px solid var(--primary-red);
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-checkbox:checked + .cookie-banner {
    transform: translateY(100%);
}
.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}
.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.cookie-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    position: relative;
}
.cookie-icon {
    font-size: 1.8rem;
    color: var(--primary-red);
}
.cookie-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 1px;
}
.cookie-light-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
}
.cookie-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}
.cookie-text p {
    margin-bottom: 15px;
}
.cookie-link {
    color: var(--primary-red-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--fast-transition);
}
.cookie-link:hover {
    color: var(--white);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}
.cookie-accept-btn,
.cookie-settings-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.cookie-accept-btn {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 0, 51, 0.4);
}
.cookie-accept-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.6);
}
.btn-text {
    position: relative;
    z-index: 2;
}
.btn-light {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
}
.cookie-accept-btn:hover .btn-light {
    left: 100%;
}
.cookie-settings-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.cookie-settings-btn:hover {
    border-color: var(--primary-red);
    background: rgba(255, 0, 51, 0.1);
    transform: translateY(-5px);
}
.cookie-light-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.1), transparent);
    animation: cookie-light-sweep 8s infinite linear;
    pointer-events: none;
}
@keyframes cookie-light-sweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Global Lights */
.global-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}
.light-beam {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    filter: blur(1px);
    opacity: 0.4;
}
.beam-1 {
    top: 15%;
    animation: beam-sweep-1 8s infinite linear;
}
.beam-2 {
    top: 50%;
    animation: beam-sweep-2 10s infinite linear reverse;
}
.beam-3 {
    top: 85%;
    animation: beam-sweep-3 12s infinite linear;
}
@keyframes beam-sweep-1 {
    0% {
        transform: translateX(-100%) rotate(10deg);
    }
    100% {
        transform: translateX(100%) rotate(10deg);
    }
}
@keyframes beam-sweep-2 {
    0% {
        transform: translateX(100%) rotate(-5deg);
    }
    100% {
        transform: translateX(-100%) rotate(-5deg);
    }
}
@keyframes beam-sweep-3 {
    0% {
        transform: translateX(-100%) rotate(15deg);
    }
    100% {
        transform: translateX(100%) rotate(15deg);
    }
}

/* Erfolgsmeldung */
.erfolg-meldung {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 50px 60px;
    border-radius: 30px;
    border: 3px solid var(--primary-red);
    z-index: 10000;
    text-align: center;
    box-shadow: 0 0 80px rgba(255, 0, 51, 0.7);
}
.erfolg-meldung i {
    font-size: 6rem;
    color: #00cc66;
    margin-bottom: 25px;
    display: block;
    text-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}
.erfolg-meldung p {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
}
#erfolg:target {
    display: block;
    animation: erfolg-ausblenden 2s ease forwards;
}
@keyframes erfolg-ausblenden {
    0% {
        opacity: 1;
        visibility: visible;
    }
    80% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

header {
    background-color: rgba(26, 26, 26, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 51, 0.4);
    backdrop-filter: blur(10px);
    animation: header-drop 0.8s ease-out;
}
@keyframes header-drop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.header-light-show {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 0, 51, 0.15) 20%,
            rgba(255, 0, 51, 0.3) 50%,
            rgba(255, 0, 51, 0.15) 80%,
            transparent 100%);
    animation: header-light-sweep 4s infinite linear;
    pointer-events: none;
}
@keyframes header-light-sweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: relative;
}
.logo-container {
    position: relative;
    z-index: 10;
}
.logo-link {
    display: inline-block;
    text-decoration: none;
    position: relative;
}
.logo-image {
    height: 70px;
    width: auto;
    transition: var(--fast-transition);
    display: block;
    filter: none !important;
}
.logo-light-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}
.logo-link:hover .logo-light-effect {
    opacity: 1;
    width: 110px;
    height: 110px;
}
.desktop-nav {
    position: relative;
}
.nav-light-stream {
    position: absolute;
    top: -15px;
    left: -25px;
    right: -25px;
    bottom: -15px;
    background: radial-gradient(ellipse at center, rgba(255, 0, 51, 0.15), transparent 70%);
    filter: blur(15px);
    animation: nav-light-pulse 4s infinite alternate;
    z-index: -1;
}
@keyframes nav-light-pulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 60px;
}
.nav-item {
    position: relative;
}
.nav-link {
    display: inline-block;
    text-decoration: none;
    color: var(--white);
    padding: 12px 8px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.nav-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.nav-link:hover .nav-text {
    color: var(--primary-red-light);
    transform: translateY(-3px);
    text-shadow: var(--glow);
}
.nav-light-trail {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s;
    z-index: 1;
}
.nav-link:hover .nav-light-trail {
    left: 100%;
}
.nav-flare {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light), var(--primary-red));
    border-radius: 2px;
    transition: width 0.5s;
    box-shadow: var(--glow);
}
.nav-link:hover .nav-flare {
    width: 100%;
}
.nav-link.active .nav-text {
    color: var(--primary-red-light);
    text-shadow: var(--glow);
}
.nav-link.active .nav-flare {
    width: 100%;
}

.mobile-checkbox {
    display: none;
}
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: var(--transition);
}
.mobile-menu-btn:hover {
    transform: scale(1.1);
}
.menu-light-burst {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(255, 0, 51, 0.25);
    border-radius: 15px;
    z-index: -1;
    animation: menu-light-burst-pulse 2s infinite alternate;
}
@keyframes menu-light-burst-pulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}
.menu-line {
    width: 100%;
    height: 4px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.mobile-menu-btn:hover .menu-line {
    background-color: var(--primary-red-light);
    box-shadow: 0 0 12px rgba(255, 51, 102, 0.7);
}
.mobile-checkbox:checked+.mobile-menu-btn .line-1 {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: var(--primary-red-light);
}
.mobile-checkbox:checked+.mobile-menu-btn .line-2 {
    opacity: 0;
}
.mobile-checkbox:checked+.mobile-menu-btn .line-3 {
    transform: rotate(-45deg) translate(8px, -8px);
    background-color: var(--primary-red-light);
}
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1002;
    transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 3px solid var(--primary-red);
    box-shadow: -15px 0 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    padding: 100px 35px 40px;
    overflow-y: auto;
}
#mobile-menu-toggle:checked~.mobile-sidebar {
    right: 0;
}
.sidebar-header {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.sidebar-logo {
    position: relative;
    margin-bottom: 25px;
}
.sidebar-logo-img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: none !important;
}
.sidebar-logo-sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.3) 0%, transparent 70%);
    animation: sidebar-logo-sparkle-pulse 2s infinite alternate;
}
.sidebar-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}
.sidebar-light-wave {
    position: absolute;
    bottom: -2px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: sidebar-light-wave-sweep 3s infinite linear;
}
.sidebar-close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    z-index: 1003;
    border: 2px solid transparent;
}
.sidebar-close-btn:hover {
    background: var(--primary-red);
    transform: rotate(90deg);
    border-color: var(--primary-red);
}
.sidebar-close-btn i {
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}
.sidebar-close-btn:hover i {
    color: var(--white);
}
.close-light-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}
.sidebar-close-btn:hover .close-light-effect {
    opacity: 1;
    width: 60px;
    height: 60px;
}
.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 40px;
}
.mobile-nav-list {
    list-style: none;
}
.mobile-nav-item {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.6s ease;
}
#mobile-menu-toggle:checked~.mobile-sidebar .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}
.mobile-nav-item:nth-child(1) {
    transition-delay: 0.1s;
}
.mobile-nav-item:nth-child(2) {
    transition-delay: 0.2s;
}
.mobile-nav-item:nth-child(3) {
    transition-delay: 0.3s;
}
.mobile-nav-item:nth-child(4) {
    transition-delay: 0.4s;
}
.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav-link:hover {
    background: rgba(255, 0, 51, 0.2);
    border-color: var(--primary-red);
    transform: translateX(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.mobile-nav-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.mobile-nav-link:hover .mobile-nav-text {
    color: var(--primary-red-light);
}
.mobile-nav-light {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}
.mobile-nav-link:hover .mobile-nav-light {
    left: 100%;
}
.mobile-nav-link.active {
    background: rgba(255, 0, 51, 0.2);
    border-color: var(--primary-red);
}
.mobile-nav-link.active .mobile-nav-text {
    color: var(--primary-red-light);
}
.sidebar-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.sidebar-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 500;
}
.sidebar-contact i {
    color: var(--primary-red);
    font-size: 1.2rem;
}
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
#mobile-menu-toggle:checked~.mobile-overlay {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   FOOTER (Seitenübergreifend)
   ============================================================ */

footer {
    background: var(--anthrazit-dark);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}
.footer-light-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 51, 102, 0.15), transparent);
    animation: footer-light-stream-sweep 10s infinite linear;
    pointer-events: none;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
}
.footer-main {
    text-align: center;
}
.footer-logo {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}
.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: none !important;
}
.footer-logo:hover .footer-logo-img {
    transform: scale(1.1);
}
.footer-logo-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.2) 0%, transparent 70%);
    animation: footer-logo-light-pulse 3s infinite alternate;
}
.footer-tagline {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}
.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}
.footer-contact,
.footer-social {
    text-align: center;
}
.footer-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.1rem;
}
.footer-contact i {
    color: var(--primary-red);
    font-size: 1.2rem;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.6);
}
.social-light {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s;
}
.social-link:hover .social-light {
    left: 100%;
}
.footer-legal {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
    padding-bottom: 8px;
    white-space: nowrap;
}
.footer-legal a:hover {
    color: var(--primary-red-light);
}
.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.4s;
}
.footer-legal a:hover::after {
    width: 100%;
}
.footer-copyright {
    position: relative;
}
.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
}
.copyright-light-trail {
    position: absolute;
    bottom: -15px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.4), transparent);
    animation: copyright-light-trail-sweep 5s infinite linear;
}

/* ============================================================
   INDEX SEITE (Startseite)
   ============================================================ */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2) saturate(1.3);
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}
.video-light-show {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: video-light-show-pulse 5s infinite alternate;
}
@keyframes video-light-show-pulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 40px 20px;
    animation: hero-content-fade 1.5s ease-out;
}
@keyframes hero-content-fade {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.logo-title-fusion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 0px;
    position: relative;
    flex-wrap: nowrap;
}
.title-logo {
    height: 160px;
    width: auto;
    filter: none !important;
    margin-top: -11px;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1;
}
.title-text {
    font-size: 9rem;
    color: transparent;
    background: linear-gradient(45deg, var(--white), var(--primary-red), var(--anthrazit), var(--white));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: title-color-swirl 8s infinite linear;
    position: relative;
    display: inline-block;
}
@keyframes title-color-swirl {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.title-dash {
    color: var(--primary-red);
    animation: dash-pulse 2s infinite alternate;
}
@keyframes dash-pulse {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}
.title-color-swirl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.2), transparent 70%);
    filter: blur(30px);
    animation: title-color-swirl-rotate 10s infinite linear;
}
@keyframes title-color-swirl-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.hero-subtitle {
    margin-bottom: 50px;
}
.subtitle-container {
    display: inline-block;
    position: relative;
}
.subtitle-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 0 2px 25px rgba(0, 0, 0, 0.7);
}
.subtitle-light-stream {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: subtitle-light-stream-sweep 5s infinite linear;
}
.hero-description {
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
}
.description-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.7rem;
    color: var(--white);
    line-height: 1.9;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    animation: description-text-appear 2s ease-out;
}
.description-light-trail {
    position: absolute;
    bottom: -25px;
    left: 20%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: description-light-trail-sweep 6s infinite linear;
}
.hero-cta {
    position: relative;
    display: inline-block;
}
.cta-button {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark), var(--primary-red));
    background-size: 200% 100%;
    color: var(--white);
    padding: 28px 70px;
    border-radius: 60px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 15px 50px rgba(255, 0, 51, 0.6);
    animation: cta-button-float 3s infinite ease-in-out, cta-button-gradient 4s infinite linear;
}
@keyframes cta-button-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
@keyframes cta-button-gradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}
.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 0, 51, 0.9);
    animation: none;
}
.cta-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}
.cta-light-flow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.9s;
}
.cta-button:hover .cta-light-flow {
    left: 100%;
}
.cta-energy-pulse {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid var(--primary-red);
    border-radius: 68px;
    opacity: 0;
    animation: cta-energy-pulse-anim 2.5s infinite;
}
@keyframes cta-energy-pulse-anim {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}
.cta-light-orbits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 51, 102, 0.1) 90deg, transparent 180deg, rgba(255, 51, 102, 0.1) 270deg, transparent 360deg), conic-gradient(from 180deg, transparent 0deg, rgba(255, 51, 102, 0.05) 90deg, transparent 180deg, rgba(255, 51, 102, 0.05) 270deg, transparent 360deg);
    animation: cta-light-orbits-rotate 3s infinite linear;
    pointer-events: none;
    border-radius: 50%;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.scroll-light-beam {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    animation: scroll-light-beam-pulse 2s infinite;
}
.scroll-light-sphere {
    width: 15px;
    height: 15px;
    background-color: var(--primary-red);
    border-radius: 50%;
    margin-top: 15px;
    box-shadow: 0 0 20px var(--primary-red);
    animation: scroll-light-sphere-bounce 1.8s infinite;
}

/* Index Sections */
.leistungen-section,
.service-section,
.expertise-section,
.map-section {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(100px);
    animation: section-dark-to-light 1.5s ease-out forwards;
}

.leistungen-section {
    background: linear-gradient(180deg, #000 0%, #0A0A0A 100%);
}
.service-section {
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
}
.expertise-section {
    background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
}
.map-section {
    background: #c22234;
}

.section-light-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: section-light-reveal-pulse 4s infinite alternate;
    pointer-events: none;
}
@keyframes section-light-reveal-pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}
@keyframes section-dark-to-light {
    0% {
        opacity: 0;
        transform: translateY(100px);
        background: #000;
    }
    50% {
        opacity: 0.5;
        background: #111;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-header {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 5.5rem;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
}
.section-title-text {
    position: relative;
    z-index: 2;
}
.leistungen-section .section-title-text {
    color: var(--white);
}
.service-section .section-title-text {
    color: var(--primary-red-light);
}
.expertise-section .section-title-text {
    color: var(--off-white);
}
.map-section .section-title-text {
    color: var(--white);
}
.section-title-light-bar {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: section-title-light-bar-sweep 3s infinite linear;
}
.section-title-light-glow {
    position: absolute;
    top: -30px;
    left: -40px;
    right: -40px;
    bottom: -30px;
    background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.15), transparent 70%);
    filter: blur(25px);
    z-index: 1;
}
.section-subtitle {
    margin-top: 50px;
}
.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}
.subtitle-light-underline {
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin: 0 auto;
    animation: subtitle-light-underline-extend 2.5s infinite alternate;
}
@keyframes subtitle-light-underline-extend {
    0% {
        width: 180px;
        opacity: 0.7;
    }
    100% {
        width: 300px;
        opacity: 1;
    }
}

/* Leistungen Grid */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 70px;
    margin-top: 60px;
}
.leistung-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(50px);
    animation: leistung-card-appear 1s ease-out forwards;
}
.leistung-card:nth-child(1) {
    animation-delay: 1.2s;
}
.leistung-card:nth-child(2) {
    animation-delay: 1.4s;
}
.leistung-card:nth-child(3) {
    animation-delay: 1.6s;
}
@keyframes leistung-card-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.leistung-card:hover {
    transform: translateY(-25px) scale(1.05);
    border-color: var(--primary-red);
    box-shadow: 0 30px 60px rgba(255, 0, 51, 0.4);
    background: rgba(255, 255, 255, 0.08);
}
.leistung-icon {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.leistung-icon i {
    font-size: 5rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.icon-light-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 51, 102, 0.3);
    border-radius: 50%;
    animation: icon-light-ring-rotate 4s infinite linear;
}
@keyframes icon-light-ring-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.leistung-card:hover .leistung-icon i {
    transform: scale(1.3) rotateY(360deg);
}
.leistung-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 35px;
    transition: var(--transition);
    line-height: 1.3;
}
.leistung-card:hover .leistung-title {
    color: var(--white);
    transform: scale(1.1);
}
.leistung-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 1.1rem;
}
.leistung-light-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin: 0 auto;
    transition: width 0.4s;
}
.leistung-card:hover .leistung-light-line {
    width: 180px;
}
.card-light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 51, 102, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}
.leistung-card:hover .card-light-overlay {
    opacity: 1;
}

/* Service Grid */
.service-section {
    position: relative;
    overflow: hidden;
}
.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.service-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 42, 42, 0.85);
    z-index: 1;
}
.service-section .container {
    position: relative;
    z-index: 2;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
    margin-top: 60px;
}
.service-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(50px);
    animation: service-card-appear 1s ease-out forwards;
}
.service-card:nth-child(1) {
    animation-delay: 1.8s;
}
.service-card:nth-child(2) {
    animation-delay: 2s;
}
.service-card:nth-child(3) {
    animation-delay: 2.2s;
}
@keyframes service-card-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.service-card:hover {
    transform: translateY(-25px);
    border-color: var(--primary-red);
    box-shadow: 0 30px 60px rgba(255, 0, 51, 0.4);
    background: rgba(255, 255, 255, 0.25);
}
.service-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}
.image-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--anthrazit-dark), var(--anthrazit));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}
.service-card:hover .image-container {
    background: linear-gradient(45deg, var(--primary-red-dark), var(--primary-red));
}
.image-container i {
    font-size: 6rem;
    color: var(--white);
    z-index: 2;
    transition: var(--transition);
}
.image-light-swirl {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 70%);
    animation: image-light-swirl-rotate 6s infinite linear;
}
@keyframes image-light-swirl-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.service-card:hover .image-container i {
    transform: scale(1.3) rotate(360deg);
}
.service-content {
    padding: 50px 45px;
    position: relative;
}
.service-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    transition: var(--transition);
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
}
.service-card:hover .service-title {
    color: var(--white);
    transform: translateX(15px);
}
.service-description {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 500;
    font-size: 1.1rem;
}
.service-light-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    transition: width 0.4s;
}
.service-card:hover .service-light-line {
    width: 180px;
}

/* Sparkle / Funken Effekt */
.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.sparkle {
    position: absolute;
    bottom: -10px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(202, 48, 79, 0.905), rgba(255, 100, 50, 0.6));
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(195, 45, 62, 0.6), 0 0 50px rgba(255, 100, 50, 0.3);
    animation: sparkle-float linear infinite;
    opacity: 1;
}
@keyframes sparkle-float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-110vh) translateX(80px) scale(0.3);
        opacity: 0;
    }
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    margin-top: 60px;
}
.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
    backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(50px);
    animation: expertise-card-appear 1s ease-out forwards;
}
.expertise-card:nth-child(1) {
    animation-delay: 2.4s;
}
.expertise-card:nth-child(2) {
    animation-delay: 2.6s;
}
.expertise-card:nth-child(3) {
    animation-delay: 2.8s;
}
@keyframes expertise-card-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.expertise-card:hover {
    transform: translateY(-25px) scale(1.05);
    border-color: var(--primary-red);
    box-shadow: 0 30px 60px rgba(255, 0, 51, 0.4);
    background: rgba(255, 255, 255, 0.08);
}
.expertise-number {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    max-width: 100%;
}
.number {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 6rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
    word-break: break-word;
    white-space: normal;
    line-height: 1.2;
    max-width: 100%;
    display: inline-block;
}
.expertise-card:last-child .number {
    font-size: 4rem;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
}
.number-light-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 51, 102, 0.4) 0%, transparent 70%);
    animation: number-light-aura-pulse 3s infinite alternate;
}
@keyframes number-light-aura-pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}
.expertise-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
    transition: var(--transition);
    word-break: break-word;
}
.expertise-card:hover .expertise-title {
    color: var(--white);
    transform: scale(1.1);
}
.expertise-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 500;
    font-size: 1.1rem;
    word-break: break-word;
}

/* Map Container */
.map-container {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}
.map-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 500px;
    position: relative;
}
.map-address {
    padding: 50px 45px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.map-address-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.map-address-title i {
    color: #CC0000;
    font-size: 2rem;
}
.address-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
}
.address-info {
    margin-top: 30px;
}
.address-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}
.address-info i {
    color: #CC0000;
    width: 20px;
}
.address-light-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, transparent);
    animation: address-light-line-sweep 5s infinite linear;
}
.map-wrapper {
    position: relative;
    background: var(--gray-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.map-iframe-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    filter: grayscale(1) invert(0.9) contrast(1.2) hue-rotate(180deg);
}
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.1));
    z-index: 2;
    pointer-events: none;
}
.map-light-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(204, 0, 0, 0.15), transparent 70%);
    animation: map-light-pulse 4s infinite alternate;
    z-index: 3;
    pointer-events: none;
}
@keyframes map-light-pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}
.map-instructions {
    grid-column: 1 / -1;
    padding: 25px 45px;
    background: rgba(10, 10, 10, 0.9);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.map-instructions p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}
.map-instructions i {
    color: #CC0000;
    font-size: 1.3rem;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: rgba(20, 20, 20, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    border-radius: 10px;
}
.map-placeholder i {
    font-size: 4rem;
    color: #CC0000;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.map-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(180, 0, 0, 0.3);
    z-index: 0;
}
.map-section .container {
    position: relative;
    z-index: 1;
}

/* ============================================================
   SCHULUNGEN SEITE
   ============================================================ */

.schulungen-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.schulungen-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.placeholder-content {
    text-align: center;
    z-index: 2;
}
.placeholder-content i {
    font-size: 6rem;
    color: rgba(255, 50, 50, 0.25);
    margin-bottom: 20px;
    display: block;
}
.placeholder-content p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7),
            rgba(255, 0, 51, 0.1),
            rgba(0, 0, 0, 0.7));
    z-index: 1;
}
.hero-light-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    animation: hero-light-pulse-anim 5s infinite alternate;
    z-index: 1;
}
.schulungen-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 40px 20px;
    animation: hero-content-fade 1.5s ease-out;
}
.schulungen-hero-title-container {
    margin-bottom: 60px;
}
.schulungen-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 6rem;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    letter-spacing: 4px;
}
.schulungen-title-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, var(--white), var(--primary-red), var(--white));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: title-gradient-flow 4s infinite linear;
}
.title-light-trail {
    position: absolute;
    bottom: -15px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: title-light-trail-sweep 3s infinite linear;
}
.schulungen-hero-subtitle {
    margin-top: 40px;
}
.schulungen-hero-description {
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}
.schulungen-hero-cta {
    position: relative;
    display: inline-block;
}
.schulungen-cta-button {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark), var(--primary-red));
    background-size: 200% 100%;
    color: var(--white);
    padding: 25px 60px;
    border-radius: 60px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 15px 50px rgba(255, 0, 51, 0.6);
    animation: cta-button-float 3s infinite ease-in-out, cta-button-gradient 4s infinite linear;
}
.schulungen-cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 0, 51, 0.9);
    animation: none;
}
.schulungen-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.ueber-schulungen-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000 0%, #0A0A0A 100%);
    opacity: 1;
}
.schulungen-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: center;
}
.schulungen-text-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.text-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
    opacity: 1;
}
.text-block:hover {
    border-color: var(--primary-red);
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(255, 0, 51, 0.2);
}
.text-block-icon {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.text-block-icon i {
    font-size: 3rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
}
.text-block-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}
.text-block-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}
.text-block-light-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin-top: 25px;
    transition: width 0.4s;
}
.text-block:hover .text-block-light-line {
    width: 120px;
}
.schulungen-image-side {
    position: relative;
    height: 600px;
}
.image-side-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.floating-image {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}
.image-1 {
    width: 70%;
    height: 50%;
    top: 0;
    right: 0;
    animation: float-image-1 6s infinite ease-in-out;
}
.image-2 {
    width: 60%;
    height: 45%;
    bottom: 10%;
    left: 0;
    animation: float-image-2 7s infinite ease-in-out;
}
.image-3 {
    width: 50%;
    height: 40%;
    top: 50%;
    right: 10%;
    animation: float-image-3 5s infinite ease-in-out;
}
@keyframes float-image-1 {
    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(-1deg);
    }
}
@keyframes float-image-2 {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(15px) rotate(2deg);
    }
}
@keyframes float-image-3 {
    0%,
    100% {
        transform: translateY(0) rotate(3deg);
    }
    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}
.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}
.image-placeholder p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}
.image-light-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 51, 102, 0.1), transparent 70%);
    animation: image-light-pulse 4s infinite alternate;
}

.angebote-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    opacity: 1;
}
.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 80px;
}
.angebot-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
    opacity: 1;
}
.angebot-card:hover {
    transform: translateY(-20px);
    border-color: var(--primary-red);
    box-shadow: 0 30px 60px rgba(255, 0, 51, 0.3);
}
.angebot-number {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.angebot-number .number {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
}
.angebot-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
}
.angebot-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.angebot-list {
    list-style: none;
    margin-bottom: 35px;
}
.angebot-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}
.angebot-list i {
    color: var(--primary-red);
    font-size: 1.1rem;
}
.angebot-light-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    transition: width 0.4s;
}
.angebot-card:hover .angebot-light-line {
    width: 150px;
}

.galerie-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
    opacity: 1;
}
.galerie-container {
    margin-top: 80px;
}
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
.galerie-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    transition: var(--transition);
    opacity: 1;
}
.galerie-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 0, 51, 0.4);
}
.galerie-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.galerie-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333, #444);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.galerie-item:hover .galerie-placeholder {
    transform: scale(1.1);
}
.galerie-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}
.galerie-placeholder p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.3rem;
    font-weight: 600;
}
.galerie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.galerie-item:hover .galerie-overlay {
    opacity: 1;
}
.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
}
.galerie-item:hover .overlay-content {
    transform: translateY(0);
}
.overlay-content i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    display: block;
}
.overlay-content p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}
.image-light-sparkle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
}
.galerie-item:hover .image-light-sparkle {
    opacity: 1;
}
.galerie-instruction {
    margin-top: 60px;
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.galerie-instruction p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.galerie-instruction i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.kontakt-schulen-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #2D2D2D 0%, #1A1A1A 100%);
    opacity: 1;
}
.kontakt-schulen-container {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.kontakt-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.kontakt-text-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--transition);
    opacity: 1;
}
.kontakt-text-block:hover {
    border-color: var(--primary-red);
    transform: translateX(10px);
}
.kontakt-icon {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.kontakt-icon i {
    font-size: 3.5rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
}
.kontakt-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
}
.kontakt-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.kontakt-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}
.highlight-item i {
    color: var(--primary-red);
}
.vorteile-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}
.vorteil-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.vorteil-number {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}
.vorteil-text h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}
.vorteil-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}
.kontakt-form-container {
    position: relative;
}
.form-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.form-header {
    padding: 40px 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.form-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.form-title i {
    color: var(--primary-red);
    font-size: 1.8rem;
}
.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}
.form-light-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin-top: 25px;
}
.form-content {
    padding: 40px;
}
.schulungen-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.form-group {
    position: relative;
}
.form-input-wrapper {
    position: relative;
}
.form-input-wrapper input,
.form-input-wrapper textarea {
    width: 100%;
    padding: 20px 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    transition: var(--transition);
    resize: vertical;
}
.form-input-wrapper textarea {
    min-height: 120px;
}
.form-input-wrapper label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition);
}
.textarea-wrapper label {
    top: 30px;
    transform: none;
}
.form-input-wrapper input:focus,
.form-input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
}
.form-input-wrapper input:focus+label,
.form-input-wrapper textarea:focus+label,
.form-input-wrapper input:not(:placeholder-shown)+label,
.form-input-wrapper textarea:not(:placeholder-shown)+label {
    top: 10px;
    transform: none;
    font-size: 0.9rem;
    color: var(--primary-red);
}
.input-light-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    transition: width 0.5s;
}
.form-input-wrapper input:focus~.input-light-line,
.form-input-wrapper textarea:focus~.input-light-line {
    width: 100%;
}
.form-submit {
    margin-top: 20px;
}
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 22px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.4);
}
.submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 51, 0.6);
}
.button-text {
    position: relative;
    z-index: 2;
}
.button-light {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}
.submit-button:hover .button-light {
    left: 100%;
}
.submit-button i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    transition: var(--transition);
}
.submit-button:hover i {
    transform: translateX(5px);
}
.form-hinweis {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
}
.form-footer {
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.form-footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}
.form-footer i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 20px;
}

.hero-schulungen {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-content-schulungen {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 40px 20px;
    animation: hero-content-fade 1.5s ease-out;
}
.hero-title-container {
    margin-bottom: 60px;
}
.hero-title-schulungen {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    letter-spacing: 4px;
    line-height: 1.1;
}
.title-text-schulungen {
    font-size: 6.5rem;
    color: transparent;
    background: linear-gradient(45deg, var(--white), var(--primary-red-light), var(--white));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: title-color-swirl 8s infinite linear;
    position: relative;
    display: inline-block;
}
.title-highlight {
    color: var(--primary-red);
    animation: dash-pulse 2s infinite alternate;
}
.hero-subtitle-schulungen {
    margin-bottom: 50px;
}
.subtitle-text-schulungen {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: 3px;
    color: var(--white);
    text-shadow: 0 2px 25px rgba(0, 0, 0, 0.7);
    animation: subtitle-text-glow 4s infinite alternate;
}
.hero-description-schulungen {
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
}
.description-text-schulungen {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.7rem;
    color: var(--white);
    line-height: 1.9;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}
.hero-cta-schulungen {
    position: relative;
    display: inline-block;
}
.cta-button-schulungen {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark), var(--primary-red));
    background-size: 200% 100%;
    color: var(--white);
    padding: 28px 70px;
    border-radius: 60px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: 0 15px 50px rgba(255, 0, 51, 0.6);
    animation: cta-button-float 3s infinite ease-in-out, cta-button-gradient 4s infinite linear;
}
.cta-button-schulungen:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(255, 0, 51, 0.9);
    animation: none;
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.7));
    z-index: 2;
}
.image-light-show {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, 0.15) 0%,
            transparent 70%);
    animation: video-light-show-pulse 5s infinite alternate;
    z-index: 3;
}

.schulungen-description-section {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000 0%, #0A0A0A 100%);
    opacity: 1;
}
.schulungen-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}
.schulungen-text-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.schulungen-text-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    opacity: 1;
}
.schulungen-text-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 0, 51, 0.3);
    background: rgba(255, 255, 255, 0.08);
}
.text-card-icon {
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.text-card-icon i {
    font-size: 3.5rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.schulungen-text-card:hover .text-card-icon i {
    transform: scale(1.2) rotateY(180deg);
}
.text-card-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
    transition: var(--transition);
}
.schulungen-text-card:hover .text-card-title {
    color: var(--primary-red-light);
}
.text-card-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 500;
    font-size: 1.1rem;
}
.schulungen-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    opacity: 1;
}
.feature-item:hover {
    background: rgba(255, 0, 51, 0.1);
    border-color: var(--primary-red);
    transform: translateX(15px);
}
.feature-icon {
    position: relative;
    flex-shrink: 0;
}
.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
}

.gallery-section {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    opacity: 1;
}
.gallery-container {
    margin-top: 80px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    opacity: 1;
}
.gallery-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 51, 0.4);
}
.gallery-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.gallery-item:hover .overlay-content {
    transform: translateY(0);
}
.overlay-content i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    display: block;
}
.overlay-content p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 1px;
}
.gallery-notice {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 1;
}
.notice-icon {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.notice-icon i {
    font-size: 4rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
}
.notice-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 2px;
}
.notice-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-schools-section {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
    opacity: 1;
}
.contact-schools-content {
    margin-top: 80px;
}
.contact-schools-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.contact-schools-header {
    padding: 60px 50px;
    background: linear-gradient(90deg, rgba(255, 0, 51, 0.2), rgba(255, 0, 51, 0.1));
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-schools-icon {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.contact-schools-icon i {
    font-size: 5rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
}
.contact-schools-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}
.contact-schools-body {
    padding: 60px 50px;
}
.contact-benefits {
    margin-bottom: 60px;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 1;
}
.benefit-item:hover {
    background: rgba(255, 0, 51, 0.1);
    border-color: var(--primary-red);
    transform: translateX(10px);
}
.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
}
.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
}
.contact-schools-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.contact-info-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 1;
}
.contact-info-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 51, 0.2);
}
.info-icon {
    margin-bottom: 25px;
}
.info-icon i {
    font-size: 3rem;
    color: var(--primary-red);
}
.info-content h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.info-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}
.contact-schools-cta {
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.15), rgba(255, 0, 51, 0.05));
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 51, 0.3);
    opacity: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}
.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}
.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-phone-btn,
.cta-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 25px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cta-phone-btn {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.4);
}
.cta-email-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.cta-phone-btn:hover,
.cta-email-btn:hover {
    transform: translateY(-10px);
}
.cta-phone-btn:hover {
    box-shadow: 0 15px 40px rgba(255, 0, 51, 0.6);
}
.cta-email-btn:hover {
    background: rgba(255, 0, 51, 0.2);
    border-color: var(--primary-red);
}

/* ============================================================
   ÜBER UNS SEITE
   ============================================================ */

/* HERO */
.ueber-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ueber-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ueber-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2) saturate(1.3);
}
.ueber-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 140px 20px 0;
    animation: hero-content-fade 1.5s ease-out;
}
.ueber-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 7rem;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    letter-spacing: 4px;
}
.ueber-title-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, var(--white), var(--primary-red), var(--white));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: title-color-swirl 8s infinite linear;
}
.ueber-title-light-bar {
    position: absolute;
    bottom: -15px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: title-light-trail-sweep 3s infinite linear;
}
.ueber-title-glow {
    position: absolute;
    top: -30px;
    left: -40px;
    right: -40px;
    bottom: -30px;
    background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.3), transparent 70%);
    filter: blur(30px);
    z-index: 1;
}
.ueber-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.6;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
    animation: subtitle-text-glow 4s infinite alternate;
}
.ueber-hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================================
   GESCHICHTE SECTION - NEUER STIL (weißer Container)
   ============================================================ */

.geschichte-section {
    padding: 150px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.geschichte-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: line-glow 3s infinite;
}

@keyframes line-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.geschichte-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 70px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
}

.geschichte-box.visible {
    transform: translateY(0);
    opacity: 1;
}

.geschichte-box h2 {
    color: #000;
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.geschichte-box h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

.geschichte-content p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

/* BILD CONTAINER */
.geschichte-bild-container {
    margin: 30px 0 35px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.geschichte-bild-container:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.geschichte-firma-bild {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
    transition: all 0.5s ease;
}

.geschichte-bild-container:hover .geschichte-firma-bild {
    transform: scale(1.02);
}

/* HIGHLIGHT TAGS */
.geschichte-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.highlight-tag {
    display: inline-block;
    background: #000;
    color: var(--primary-red);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.95rem;
    border: 2px solid var(--primary-red);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: var(--primary-red);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.4);
}

/* ============================================================
   FLIEGENDES AUTO - WIE IM BEISPIEL
   ============================================================ */

.flying-auto {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    opacity: 0;
    filter: drop-shadow(0 0 30px rgba(255, 0, 51, 0.9));
}

.flying-auto.desktop {
    width: 500px;
    height: auto;
    top: 40%;
    left: calc(100% + 600px);
    display: block;
}

.flying-auto.mobile {
    width: 300px;
    height: auto;
    top: 40%;
    left: calc(100% + 400px);
    display: none;
}

.flying-auto.visible {
    opacity: 1;
    animation: driveForwardsRightToLeft 1.8s linear forwards !important;
}

@keyframes driveForwardsRightToLeft {
    0% {
        left: calc(100% + 600px);
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
    20% {
        left: 70%;
        transform: translateY(-50%) scale(1.3);
        opacity: 1;
    }
    40% {
        left: 50%;
        transform: translateY(-50%) scale(1.4);
        opacity: 1;
    }
    60% {
        left: 30%;
        transform: translateY(-50%) scale(1.5);
        opacity: 1;
    }
    80% {
        left: 10%;
        transform: translateY(-50%) scale(1.4);
        opacity: 1;
    }
    100% {
        left: -600px;
        transform: translateY(-50%) scale(1.2);
        opacity: 0;
    }
}

.speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    will-change: opacity;
}

.speed-lines.active {
    animation: speedLinesFade 1.8s linear forwards;
}

@keyframes speedLinesFade {
    0% { opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; }
}

.speed-line {
    position: absolute;
    height: 1px;
    background: var(--primary-red);
    opacity: 0.4;
}

/* ============================================================
   PHILOSOPHIE SECTION
   ============================================================ */

.philosophie-section {
    padding: 180px 0;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    opacity: 1;
}
.philosophie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.philosophie-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    backdrop-filter: blur(15px);
    opacity: 1;
}
.philosophie-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 0, 51, 0.2);
}
.philosophie-card i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    transition: var(--transition);
}
.philosophie-card:hover i {
    transform: scale(1.2) rotateY(360deg);
}
.philosophie-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}
.philosophie-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ============================================================
   FAKTEN SECTION
   ============================================================ */

.fakten-section {
    padding: 180px 0;
    background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
    opacity: 1;
}
.fakten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.fakten-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    opacity: 1;
}
.fakten-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 0, 51, 0.2);
}
.fakten-zahl {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--primary-red);
    text-shadow: var(--glow);
    line-height: 1;
    margin-bottom: 15px;
}
.fakten-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #2D2D2D 0%, #1A1A1A 100%);
    opacity: 1;
}
.cta-card {
    background: linear-gradient(135deg, rgba(255, 0, 51, 0.2), rgba(255, 0, 51, 0.05));
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    border: 2px solid rgba(255, 0, 51, 0.3);
    box-shadow: 0 30px 60px rgba(255, 0, 51, 0.2);
}
.cta-card .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    padding: 20px 50px;
    border-radius: 60px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.5);
}
.cta-card .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 51, 0.8);
}

/* ============================================================
   RESPONSIVE - ÜBER UNS
   ============================================================ */

@media (max-width: 1400px) {
    .ueber-hero-title {
        font-size: 6rem;
    }
    .flying-auto.desktop {
        width: 450px;
        left: calc(100% + 500px);
    }
    @keyframes driveForwardsRightToLeft {
        0% { left: calc(100% + 500px); transform: translateY(-50%) scale(1.1); opacity: 1; }
        20% { left: 65%; transform: translateY(-50%) scale(1.2); opacity: 1; }
        40% { left: 45%; transform: translateY(-50%) scale(1.3); opacity: 1; }
        60% { left: 25%; transform: translateY(-50%) scale(1.35); opacity: 1; }
        80% { left: 8%; transform: translateY(-50%) scale(1.3); opacity: 1; }
        100% { left: -500px; transform: translateY(-50%) scale(1.1); opacity: 0; }
    }
}

@media (max-width: 1200px) {
    .ueber-hero-title {
        font-size: 5rem;
    }
    .ueber-hero-subtitle {
        font-size: 1.5rem;
    }
    .geschichte-box {
        padding: 40px 30px;
    }
    .geschichte-box h2 {
        font-size: 2.5rem;
    }
    .flying-auto.desktop {
        width: 400px;
        left: calc(100% + 450px);
    }
    @keyframes driveForwardsRightToLeft {
        0% { left: calc(100% + 450px); transform: translateY(-50%) scale(1.1); opacity: 1; }
        20% { left: 60%; transform: translateY(-50%) scale(1.2); opacity: 1; }
        40% { left: 40%; transform: translateY(-50%) scale(1.3); opacity: 1; }
        60% { left: 20%; transform: translateY(-50%) scale(1.35); opacity: 1; }
        80% { left: 5%; transform: translateY(-50%) scale(1.3); opacity: 1; }
        100% { left: -450px; transform: translateY(-50%) scale(1.1); opacity: 0; }
    }
}

@media (max-width: 992px) {
    .ueber-hero-title {
        font-size: 4.5rem;
    }
    .flying-auto.desktop {
        width: 350px;
        left: calc(100% + 400px);
    }
    @keyframes driveForwardsRightToLeft {
        0% { left: calc(100% + 400px); transform: translateY(-50%) scale(1.1); opacity: 1; }
        20% { left: 55%; transform: translateY(-50%) scale(1.15); opacity: 1; }
        40% { left: 35%; transform: translateY(-50%) scale(1.25); opacity: 1; }
        60% { left: 15%; transform: translateY(-50%) scale(1.3); opacity: 1; }
        80% { left: 2%; transform: translateY(-50%) scale(1.25); opacity: 1; }
        100% { left: -400px; transform: translateY(-50%) scale(1.1); opacity: 0; }
    }
}

@media (max-width: 768px) {
    .ueber-hero-title {
        font-size: 4rem;
    }
    .ueber-hero-subtitle {
        font-size: 1.2rem;
    }
    .ueber-hero-content {
        padding-top: 100px;
    }
    .geschichte-section {
        min-height: 600px;
        padding: 100px 0;
    }
    .geschichte-box {
        padding: 30px 25px;
    }
    .geschichte-box h2 {
        font-size: 2rem;
    }
    .geschichte-box h3 {
        font-size: 1.4rem;
    }
    .geschichte-content p {
        font-size: 1rem;
    }
    .highlight-tag {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    .geschichte-bild-container {
        margin: 20px 0 25px;
        border-radius: 12px;
    }
    .geschichte-firma-bild {
        max-height: 250px;
    }
    .philosophie-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fakten-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .fakten-card {
        padding: 30px 20px;
    }
    .fakten-zahl {
        font-size: 3.5rem;
    }
    .fakten-text {
        font-size: 1.2rem;
    }
    .cta-card {
        padding: 40px 30px;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-text {
        font-size: 1rem;
    }
    .flying-auto.desktop {
        display: none;
    }
    .flying-auto.mobile {
        display: block;
        width: 280px;
        top: 40%;
        left: calc(100% + 350px);
    }
    @keyframes driveForwardsRightToLeft {
        0% { left: calc(100% + 350px); transform: translateY(-50%) scale(1.1); opacity: 1; }
        20% { left: 50%; transform: translateY(-50%) scale(1.15); opacity: 1; }
        40% { left: 30%; transform: translateY(-50%) scale(1.25); opacity: 1; }
        60% { left: 10%; transform: translateY(-50%) scale(1.3); opacity: 1; }
        80% { left: -5%; transform: translateY(-50%) scale(1.25); opacity: 1; }
        100% { left: -350px; transform: translateY(-50%) scale(1.1); opacity: 0; }
    }
    .geschichte-section,
    .philosophie-section,
    .fakten-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .ueber-hero-title {
        font-size: 3rem;
    }
    .ueber-hero-subtitle {
        font-size: 1rem;
    }
    .ueber-hero-content {
        padding-top: 80px;
    }
    .geschichte-section {
        min-height: 500px;
        padding: 60px 0;
    }
    .geschichte-box {
        padding: 25px 20px;
    }
    .geschichte-box h2 {
        font-size: 1.8rem;
    }
    .geschichte-box h3 {
        font-size: 1.2rem;
    }
    .geschichte-content p {
        font-size: 0.95rem;
    }
    .highlight-tag {
        font-size: 0.8rem;
        padding: 5px 14px;
    }
    .geschichte-bild-container {
        margin: 15px 0 20px;
        border-radius: 10px;
    }
    .geschichte-firma-bild {
        max-height: 200px;
    }
    .philosophie-grid {
        grid-template-columns: 1fr;
    }
    .fakten-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .cta-card {
        padding: 30px 20px;
    }
    .cta-title {
        font-size: 1.6rem;
    }
    .cta-text {
        font-size: 0.95rem;
    }
    .cta-card .cta-button {
        padding: 15px 35px;
        font-size: 1.2rem;
    }
    .flying-auto.mobile {
        width: 220px;
        top: 40%;
        left: calc(100% + 280px);
    }
    @keyframes driveForwardsRightToLeft {
        0% { left: calc(100% + 280px); transform: translateY(-50%) scale(1.1); opacity: 1; }
        20% { left: 40%; transform: translateY(-50%) scale(1.15); opacity: 1; }
        40% { left: 20%; transform: translateY(-50%) scale(1.2); opacity: 1; }
        60% { left: 5%; transform: translateY(-50%) scale(1.25); opacity: 1; }
        80% { left: -10%; transform: translateY(-50%) scale(1.2); opacity: 1; }
        100% { left: -280px; transform: translateY(-50%) scale(1.1); opacity: 0; }
    }
    .geschichte-section,
    .philosophie-section,
    .fakten-section {
        padding: 60px 0;
    }
}

@media (max-width: 400px) {
    .ueber-hero-title {
        font-size: 2.5rem;
    }
    .geschichte-box {
        padding: 20px 15px;
    }
    .geschichte-box h2 {
        font-size: 1.5rem;
    }
    .highlight-tag {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    .geschichte-firma-bild {
        max-height: 150px;
    }
    .flying-auto.mobile {
        width: 180px;
        top: 40%;
        left: calc(100% + 220px);
    }
    @keyframes driveForwardsRightToLeft {
        0% { left: calc(100% + 220px); transform: translateY(-50%) scale(1.1); opacity: 1; }
        20% { left: 30%; transform: translateY(-50%) scale(1.15); opacity: 1; }
        40% { left: 15%; transform: translateY(-50%) scale(1.2); opacity: 1; }
        60% { left: 2%; transform: translateY(-50%) scale(1.25); opacity: 1; }
        80% { left: -15%; transform: translateY(-50%) scale(1.2); opacity: 1; }
        100% { left: -220px; transform: translateY(-50%) scale(1.1); opacity: 0; }
    }
}



/* ============================================================
   KONTAKT SEITE
   ============================================================ */

.kontakt-verbundene-sections {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 180px;
    background: linear-gradient(180deg, #000 0%, #0A0A0A 100%);
}

.police-light-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.police-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.light-red-1,
.light-red-2,
.light-red-3,
.light-red-4,
.light-red-5 {
    background: radial-gradient(circle, rgba(255, 0, 0, 1) 0%, rgba(255, 0, 0, 0.6) 40%, rgba(255, 0, 0, 0) 70%);
    animation-name: flashRed;
    box-shadow: 0 0 80px rgba(255, 0, 0, 0.8);
}
.light-blue-1,
.light-blue-2,
.light-blue-3,
.light-blue-4,
.light-blue-5 {
    background: radial-gradient(circle, rgba(0, 80, 255, 1) 0%, rgba(0, 80, 255, 0.6) 40%, rgba(0, 80, 255, 0) 70%);
    animation-name: flashBlue;
    box-shadow: 0 0 80px rgba(0, 80, 255, 0.8);
}

@keyframes flashRed {
    0% { opacity: 0.4; transform: scale(0.85); }
    15% { opacity: 1; transform: scale(1.15); }
    30% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.2); }
    65% { opacity: 0.6; transform: scale(0.85); }
    80% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.4; transform: scale(0.85); }
}
@keyframes flashBlue {
    0% { opacity: 1; transform: scale(1.15); }
    15% { opacity: 0.4; transform: scale(0.85); }
    30% { opacity: 1; transform: scale(1.2); }
    50% { opacity: 0.5; transform: scale(0.9); }
    65% { opacity: 1; transform: scale(1.1); }
    80% { opacity: 0.6; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1.15); }
}

.light-red-1 { width: 500px; height: 500px; animation-duration: 2.8s; }
.light-red-2 { width: 400px; height: 400px; animation-duration: 2.4s; animation-delay: 0.5s; }
.light-red-3 { width: 350px; height: 350px; animation-duration: 3.2s; animation-delay: 1.0s; }
.light-red-4 { width: 300px; height: 300px; animation-duration: 2.2s; animation-delay: 0.3s; }
.light-red-5 { width: 250px; height: 250px; animation-duration: 2.6s; animation-delay: 1.5s; }

.light-blue-1 { width: 500px; height: 500px; animation-duration: 2.8s; animation-delay: 1.2s; }
.light-blue-2 { width: 400px; height: 400px; animation-duration: 2.4s; animation-delay: 1.8s; }
.light-blue-3 { width: 350px; height: 350px; animation-duration: 3.2s; animation-delay: 0.6s; }
.light-blue-4 { width: 300px; height: 300px; animation-duration: 2.2s; animation-delay: 1.4s; }
.light-blue-5 { width: 250px; height: 250px; animation-duration: 2.6s; animation-delay: 0.9s; }

.light-red-1 { animation-name: flashRed, moveRed1; animation-duration: 2.8s, 14s; }
.light-red-2 { animation-name: flashRed, moveRed2; animation-duration: 2.4s, 18s; }
.light-red-3 { animation-name: flashRed, moveRed3; animation-duration: 3.2s, 20s; }
.light-red-4 { animation-name: flashRed, moveRed4; animation-duration: 2.2s, 22s; }
.light-red-5 { animation-name: flashRed, moveRed5; animation-duration: 2.6s, 25s; }

@keyframes moveRed1 { 0%{top:-10%;left:-5%} 25%{top:20%;left:30%} 50%{top:60%;left:70%} 75%{top:40%;left:20%} 100%{top:80%;left:15%} }
@keyframes moveRed2 { 0%{top:30%;left:30%} 25%{top:10%;left:60%} 50%{top:50%;left:80%} 75%{top:70%;left:40%} 100%{top:20%;left:10%} }
@keyframes moveRed3 { 0%{top:10%;left:50%} 25%{top:40%;left:10%} 50%{top:70%;left:50%} 75%{top:30%;left:80%} 100%{top:60%;left:20%} }
@keyframes moveRed4 { 0%{top:50%;left:5%} 25%{top:20%;left:40%} 50%{top:10%;left:80%} 75%{top:60%;left:60%} 100%{top:85%;left:15%} }
@keyframes moveRed5 { 0%{top:5%;left:10%} 25%{top:45%;left:85%} 50%{top:75%;left:20%} 75%{top:25%;left:60%} 100%{top:65%;left:40%} }

.light-blue-1 { animation-name: flashBlue, moveBlue1; animation-duration: 2.8s, 16s; }
.light-blue-2 { animation-name: flashBlue, moveBlue2; animation-duration: 2.4s, 15s; }
.light-blue-3 { animation-name: flashBlue, moveBlue3; animation-duration: 3.2s, 19s; }
.light-blue-4 { animation-name: flashBlue, moveBlue4; animation-duration: 2.2s, 21s; }
.light-blue-5 { animation-name: flashBlue, moveBlue5; animation-duration: 2.6s, 24s; }

@keyframes moveBlue1 { 0%{top:-10%;right:-5%} 25%{top:30%;right:40%} 50%{top:70%;right:60%} 75%{top:50%;right:10%} 100%{top:90%;right:20%} }
@keyframes moveBlue2 { 0%{bottom:-10%;right:-5%} 25%{bottom:30%;right:50%} 50%{bottom:60%;right:70%} 75%{bottom:40%;right:20%} 100%{bottom:80%;right:10%} }
@keyframes moveBlue3 { 0%{top:20%;left:10%} 25%{top:10%;left:70%} 50%{top:50%;left:90%} 75%{top:80%;left:50%} 100%{top:40%;left:5%} }
@keyframes moveBlue4 { 0%{top:10%;left:20%} 25%{top:30%;left:70%} 50%{top:70%;left:30%} 75%{top:90%;left:70%} 100%{top:50%;left:10%} }
@keyframes moveBlue5 { 0%{top:15%;left:30%} 25%{top:5%;left:80%} 50%{top:55%;left:90%} 75%{top:85%;left:30%} 100%{top:35%;left:5%} }

/* Social Lichter */
.social-red-1,
.social-red-2,
.social-red-3 {
    background: radial-gradient(circle, rgba(255, 0, 0, 1) 0%, rgba(255, 0, 0, 0.6) 40%, rgba(255, 0, 0, 0) 70%);
    animation-name: flashRed;
    box-shadow: 0 0 80px rgba(255, 0, 0, 0.8);
}
.social-blue-1,
.social-blue-2,
.social-blue-3 {
    background: radial-gradient(circle, rgba(0, 80, 255, 1) 0%, rgba(0, 80, 255, 0.6) 40%, rgba(0, 80, 255, 0) 70%);
    animation-name: flashBlue;
    box-shadow: 0 0 80px rgba(0, 80, 255, 0.8);
}
.social-red-1 { width: 400px; height: 400px; animation-duration: 2.8s; }
.social-red-2 { width: 320px; height: 320px; animation-duration: 2.4s; animation-delay: 0.5s; }
.social-red-3 { width: 260px; height: 260px; animation-duration: 3.0s; animation-delay: 1.2s; }
.social-blue-1 { width: 400px; height: 400px; animation-duration: 2.8s; animation-delay: 1.0s; }
.social-blue-2 { width: 320px; height: 320px; animation-duration: 2.4s; animation-delay: 1.8s; }
.social-blue-3 { width: 260px; height: 260px; animation-duration: 3.0s; animation-delay: 0.6s; }

.social-red-1 { animation-name: flashRed, socialMoveR1; animation-duration: 2.8s, 15s; }
.social-red-2 { animation-name: flashRed, socialMoveR2; animation-duration: 2.4s, 18s; }
.social-red-3 { animation-name: flashRed, socialMoveR3; animation-duration: 3.0s, 22s; }
.social-blue-1 { animation-name: flashBlue, socialMoveB1; animation-duration: 2.8s, 17s; }
.social-blue-2 { animation-name: flashBlue, socialMoveB2; animation-duration: 2.4s, 20s; }
.social-blue-3 { animation-name: flashBlue, socialMoveB3; animation-duration: 3.0s, 24s; }

@keyframes socialMoveR1 { 0%{top:-5%;left:-5%} 33%{top:40%;left:30%} 66%{top:70%;left:80%} 100%{top:90%;left:10%} }
@keyframes socialMoveR2 { 0%{top:30%;left:20%} 33%{top:10%;left:70%} 66%{top:50%;left:85%} 100%{top:70%;left:5%} }
@keyframes socialMoveR3 { 0%{top:15%;left:40%} 33%{top:45%;left:10%} 66%{top:75%;left:50%} 100%{top:30%;left:80%} }
@keyframes socialMoveB1 { 0%{top:-5%;right:-5%} 33%{top:30%;right:40%} 66%{top:60%;right:70%} 100%{top:85%;right:15%} }
@keyframes socialMoveB2 { 0%{bottom:10%;right:10%} 33%{bottom:30%;right:60%} 66%{bottom:60%;right:80%} 100%{bottom:80%;right:5%} }
@keyframes socialMoveB3 { 0%{top:40%;left:10%} 33%{top:20%;left:60%} 66%{top:60%;left:85%} 100%{top:10%;left:30%} }

/* Hero Box */
.hero-box-neu {
    background: rgba(0, 0, 0, 0.85);
    border: 3px solid var(--primary-red);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 1000px;
    width: 90%;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(255, 0, 51, 0.3);
    margin: 60px auto 80px;
}
.kontakt-title-neu {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--white), var(--primary-red), var(--white));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 51, 0.5);
    animation: titleGlowRed 2s ease-in-out infinite alternate;
}
@keyframes titleGlowRed {
    0% { text-shadow: 0 0 30px rgba(255, 0, 51, 0.5); }
    100% { text-shadow: 0 0 60px rgba(255, 0, 51, 0.8), 0 0 100px rgba(255, 0, 51, 0.4); }
}
.kontakt-subtitle-neu {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
}
.kontakt-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Kontakt Info Grid */
.info-container {
    position: relative;
    z-index: 2;
}
.kontakt-info-grid-neu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}
.kontakt-info-card-neu {
    background: rgba(255, 0, 51, 0.15);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid rgba(255, 0, 51, 0.4);
    backdrop-filter: blur(15px);
    opacity: 1;
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.1);
}
.kontakt-info-card-neu:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-red);
    box-shadow: 0 30px 50px rgba(255, 0, 51, 0.4);
    background: rgba(255, 0, 51, 0.25);
}
.kontakt-icon-neu {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.kontakt-icon-neu i {
    font-size: 3.5rem;
    color: var(--primary-red);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.kontakt-info-card-neu:hover .kontakt-icon-neu i {
    transform: scale(1.3) rotateY(360deg);
}
.kontakt-info-title-neu {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
    transition: var(--transition);
}
.kontakt-info-card-neu:hover .kontakt-info-title-neu {
    color: var(--primary-red-light);
}
.kontakt-info-text-neu {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.1rem;
}
.kontakt-link-neu {
    color: var(--primary-red-light);
    text-decoration: none;
    transition: var(--fast-transition);
}
.kontakt-link-neu:hover {
    color: var(--white);
    text-decoration: underline;
}
.kontakt-light-line-neu {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin: 25px auto 0;
    transition: width 0.4s;
}
.kontakt-info-card-neu:hover .kontakt-light-line-neu {
    width: 150px;
}

/* Kontakt Form Section */
.kontakt-form-section-heller {
    padding: 180px 0;
    background: linear-gradient(180deg, #1A1A1A 0%, #2D2D2D 100%);
    position: relative;
    opacity: 1;
}
.kontakt-form-card-neu {
    max-width: 800px;
    margin: 60px auto 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 1;
}
.submit-button-neu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 22px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.4);
}
.submit-button-neu:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 51, 0.6);
}
.button-text {
    position: relative;
    z-index: 2;
}
.button-light {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}
.submit-button-neu:hover .button-light {
    left: 100%;
}
.form-hinweis {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
}

/* Kontakt Form Inputs */
.kontakt-form-card-neu .form-group {
    position: relative;
    margin-bottom: 25px;
}
.kontakt-form-card-neu .form-input-wrapper {
    position: relative;
}
.kontakt-form-card-neu .form-input-wrapper input,
.kontakt-form-card-neu .form-input-wrapper textarea {
    width: 100%;
    padding: 20px 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    transition: var(--transition);
    resize: vertical;
}
.kontakt-form-card-neu .form-input-wrapper textarea {
    min-height: 120px;
}
.kontakt-form-card-neu .form-input-wrapper label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition);
}
.kontakt-form-card-neu .textarea-wrapper label {
    top: 30px;
    transform: none;
}
.kontakt-form-card-neu .form-input-wrapper input:focus,
.kontakt-form-card-neu .form-input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
}
.kontakt-form-card-neu .form-input-wrapper input:focus + label,
.kontakt-form-card-neu .form-input-wrapper textarea:focus + label,
.kontakt-form-card-neu .form-input-wrapper input:not(:placeholder-shown) + label,
.kontakt-form-card-neu .form-input-wrapper textarea:not(:placeholder-shown) + label {
    top: 10px;
    transform: none;
    font-size: 0.9rem;
    color: var(--primary-red);
}
.kontakt-form-card-neu .input-light-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    transition: width 0.5s;
}
.kontakt-form-card-neu .form-input-wrapper input:focus ~ .input-light-line,
.kontakt-form-card-neu .form-input-wrapper textarea:focus ~ .input-light-line {
    width: 100%;
}
.kontakt-form-card-neu .form-submit {
    margin-top: 20px;
}

/* Kontakt Social Section */
.kontakt-social-section-neu {
    padding: 180px 0;
    background: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    position: relative;
    overflow: hidden;
    opacity: 1;
}
.kontakt-social-grid-neu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}
.kontakt-social-item-neu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px 20px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 51, 0.3);
    backdrop-filter: blur(10px);
    opacity: 1;
}
.kontakt-social-item-neu:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: 0 30px 50px rgba(255, 0, 51, 0.3);
    background: rgba(255, 255, 255, 0.15);
}
.kontakt-social-item-neu i {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    transition: var(--transition);
}
.kontakt-social-item-neu:hover i {
    transform: scale(1.2) rotate(360deg);
}
.social-label-neu {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}
.kontakt-social-item-neu .social-light-neu {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.8s;
}
.kontakt-social-item-neu:hover .social-light-neu {
    left: 100%;
}

/* Kontakt Map Section */
/* ============================================================
   KONTAKT MAP - FINALER FIX
   ============================================================ */

/* Überschreibt ALLE anderen Regeln für die Kontakt-Map */
.kontakt-map-section,
#kontakt-map,
.page-kontakt .map-section {
    background: #0d0713 !important;
}

.kontakt-map-section .map-address,
#kontakt-map .map-address,
.page-kontakt .map-section .map-address {
    background: linear-gradient(135deg, rgba(20, 20, 40, 0.95), rgba(40, 20, 30, 0.95)) !important;
}

.kontakt-map-section .map-address-title i,
#kontakt-map .map-address-title i,
.page-kontakt .map-section .map-address-title i {
    color: #FF3366 !important;
}

.kontakt-map-section .address-light-line,
#kontakt-map .address-light-line,
.page-kontakt .map-section .address-light-line {
    background: linear-gradient(90deg, #FF3366, transparent) !important;
}

.kontakt-map-section .map-instructions i,
#kontakt-map .map-instructions i,
.page-kontakt .map-section .map-instructions i {
    color: #FF3366 !important;
}

.kontakt-map-section .map-placeholder i,
#kontakt-map .map-placeholder i,
.page-kontakt .map-section .map-placeholder i {
    color: #FF3366 !important;
}

.kontakt-map-section .map-card,
#kontakt-map .map-card,
.page-kontakt .map-section .map-card {
    background: rgba(13, 13, 19, 0.95) !important;
    border-color: rgba(255, 51, 102, 0.3) !important;
}

.kontakt-map-section .section-title-text,
#kontakt-map .section-title-text,
.page-kontakt .map-section .section-title-text {
    color: #ffffff !important;
}

/* ============================================================
   DATENSCHUTZ SEITE
   ============================================================ */

.datenschutz-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}
.datenschutz-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.datenschutz-light-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 51, 102, 0.1) 0%, transparent 50%);
    animation: datenschutz-pulse 8s infinite alternate;
}
@keyframes datenschutz-pulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.05); }
}
.datenschutz-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 20px 80px;
    animation: hero-content-fade 1.5s ease-out;
}
.datenschutz-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 6rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    letter-spacing: 4px;
}
.datenschutz-title-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, var(--white), var(--primary-red), var(--white));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: title-color-swirl 8s infinite linear;
}
.datenschutz-title-light-bar {
    position: absolute;
    bottom: -15px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: title-light-trail-sweep 3s infinite linear;
}
.datenschutz-title-glow {
    position: absolute;
    top: -30px;
    left: -40px;
    right: -40px;
    bottom: -30px;
    background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.3), transparent 70%);
    filter: blur(30px);
    z-index: 1;
}
.datenschutz-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.datenschutz-content-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    opacity: 1;
}
.datenschutz-content-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 80px 70px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}
.datenschutz-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}
.datenschutz-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 15px;
    display: inline-block;
}
.datenschutz-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--primary-red-light);
    margin: 50px 0 25px;
    letter-spacing: 1px;
}
.datenschutz-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}
.datenschutz-text a {
    color: var(--primary-red-light);
    text-decoration: underline;
    transition: color 0.3s;
}
.datenschutz-text a:hover {
    color: var(--white);
}
.datenschutz-hinweis {
    margin-top: 60px;
    padding: 25px 30px;
    background: rgba(255, 51, 102, 0.1);
    border-left: 5px solid var(--primary-red);
    border-radius: 0 15px 15px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ============================================================
   IMPRESSUM SEITE
   ============================================================ */

.impressum-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}
.impressum-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.impressum-light-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 51, 102, 0.1) 0%, transparent 50%);
    animation: impressum-pulse 8s infinite alternate;
}
@keyframes impressum-pulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.05); }
}
.impressum-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 20px 80px;
    animation: hero-content-fade 1.5s ease-out;
}
.impressum-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 900;
    font-size: 6rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    letter-spacing: 4px;
}
.impressum-title-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(45deg, var(--white), var(--primary-red), var(--white));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: title-color-swirl 8s infinite linear;
}
.impressum-title-light-bar {
    position: absolute;
    bottom: -15px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    animation: title-light-trail-sweep 3s infinite linear;
}
.impressum-title-glow {
    position: absolute;
    top: -30px;
    left: -40px;
    right: -40px;
    bottom: -30px;
    background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.3), transparent 70%);
    filter: blur(30px);
    z-index: 1;
}
.impressum-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.impressum-content-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    opacity: 1;
}
.impressum-content-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    padding: 80px 70px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}
.impressum-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}
.impressum-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 15px;
    display: inline-block;
}
.impressum-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--primary-red-light);
    margin: 50px 0 25px;
    letter-spacing: 1px;
}
.impressum-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}
.impressum-text a {
    color: var(--primary-red-light);
    text-decoration: underline;
    transition: color 0.3s;
}
.impressum-text a:hover {
    color: var(--white);
}

/* ============================================================
   RESPONSIVE ANPASSUNGEN (Alle Seiten)
   ============================================================ */

/* --- 1400px --- */
@media (max-width: 1400px) {
    .title-text { font-size: 7.5rem; }
    .title-logo { height: 140px; }
    .section-title { font-size: 4.5rem; }
    .ueber-hero-title { font-size: 6rem; }
    .datenschutz-hero-title { font-size: 5rem; }
    .impressum-hero-title { font-size: 5rem; }
}

/* --- 1200px --- */
@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    .header-container { padding: 20px 30px; }
    .title-text { font-size: 6.5rem; }
    .title-logo { height: 120px; }
    .section-title { font-size: 4rem; }
    .ueber-hero-title { font-size: 5rem; }
    .datenschutz-hero-title { font-size: 4rem; }
    .impressum-hero-title { font-size: 4rem; }
    .leistungen-grid, .service-grid, .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .map-card { grid-template-columns: 1fr; }
    .map-address { padding: 40px 35px; }
    .datenschutz-content-card { padding: 60px 50px; }
    .impressum-content-card { padding: 60px 50px; }
}

/* --- 992px --- */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .logo-title-fusion { gap: 5px; }
    .title-text { font-size: 5.5rem; }
    .title-logo { height: 100px; }
    .section-title { font-size: 3.5rem; }
    .subtitle-text { font-size: 1.8rem; }
    .description-text { font-size: 1.4rem; }
    .cta-button { padding: 24px 55px; font-size: 1.5rem; }
    .cookie-buttons { flex-direction: column; align-items: flex-start; }
    .footer-legal { gap: 25px; }
    .ueber-hero-title { font-size: 5rem; }
    .ueber-hero-subtitle { font-size: 1.5rem; }
    .datenschutz-hero-title { font-size: 4rem; }
    .impressum-hero-title { font-size: 4rem; }
    .datenschutz-hero-subtitle { font-size: 1.4rem; }
    .impressum-hero-subtitle { font-size: 1.4rem; }
    .datenschutz-text h2 { font-size: 2.4rem; }
    .impressum-text h2 { font-size: 2.4rem; }
    .datenschutz-text h3 { font-size: 1.8rem; }
    .impressum-text h3 { font-size: 1.8rem; }
    .erfolg-meldung { padding: 40px 50px; }
    .erfolg-meldung i { font-size: 5rem; }
    .erfolg-meldung p { font-size: 2rem; }
    .schulungen-content { grid-template-columns: 1fr; gap: 60px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-schools-info { grid-template-columns: repeat(2, 1fr); }
    .title-text-schulungen { font-size: 5.5rem; }
    .contact-schools-header, .contact-schools-body { padding: 50px 40px; }
}

/* --- 768px --- */
@media (max-width: 768px) {
    .header-container { padding: 15px 20px; }
    .logo-image { height: 55px; }
    .logo-title-fusion { flex-wrap: nowrap; gap: 5px; }
    .title-logo { height: 80px; }
    .title-text { font-size: 3.8rem; letter-spacing: 2px; }
    .subtitle-text { font-size: 1.5rem; }
    .description-text { font-size: 1.2rem; }
    .cta-button { padding: 22px 45px; font-size: 1.3rem; }
    .leistungen-grid, .service-grid, .expertise-grid { grid-template-columns: 1fr; gap: 50px; }
    .section-title { font-size: 3rem; }
    .mobile-sidebar { width: 320px; padding: 90px 25px 30px; }
    .leistung-card, .service-card, .expertise-card { padding: 50px 35px; }
    .footer-info { flex-direction: column; gap: 50px; }
    .map-card { min-height: auto; }
    .map-address-title { font-size: 1.8rem; }
    .address-text { font-size: 1.1rem; }
    .footer-contact p { font-size: 1rem; gap: 12px; justify-content: flex-start; padding-left: 10px; }
    .footer-contact p i { width: 25px; text-align: center; flex-shrink: 0; }
    .footer-legal { gap: 20px; flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 0 10px; }
    .footer-legal a { font-size: 0.9rem; white-space: nowrap; padding: 5px 8px; }
    .footer-info { gap: 40px; }
    .ueber-hero { min-height: 80vh; }
    .ueber-hero-content { padding-top: 120px; }
    .ueber-hero-title { font-size: 4rem; }
    .ueber-hero-subtitle { font-size: 1.2rem; }
    .philosophie-grid { grid-template-columns: 1fr 1fr; }
    .fakten-grid { grid-template-columns: 1fr 1fr; }
    .cta-card { padding: 50px 30px; }
    .cta-title { font-size: 2.5rem; }
    .cta-text { font-size: 1.1rem; }
    .geschichte-section, .philosophie-section, .fakten-section { padding: 100px 0; }
    .datenschutz-hero { min-height: 50vh; }
    .datenschutz-hero-content { padding-top: 120px; }
    .datenschutz-hero-title { font-size: 3.5rem; }
    .datenschutz-hero-subtitle { font-size: 1.2rem; }
    .datenschutz-content-card { padding: 40px 30px; }
    .datenschutz-text h2 { font-size: 2rem; }
    .datenschutz-text h3 { font-size: 1.6rem; }
    .datenschutz-text p { font-size: 1rem; }
    .impressum-hero { min-height: 50vh; }
    .impressum-hero-content { padding-top: 120px; }
    .impressum-hero-title { font-size: 3.5rem; }
    .impressum-hero-subtitle { font-size: 1.2rem; }
    .impressum-content-card { padding: 40px 30px; }
    .impressum-text h2 { font-size: 2rem; }
    .impressum-text h3 { font-size: 1.6rem; }
    .impressum-text p { font-size: 1rem; }
    .schulungen-hero { min-height: 80vh; }
    .title-text-schulungen { font-size: 4.5rem; }
    .subtitle-text-schulungen { font-size: 1.8rem; }
    .description-text-schulungen { font-size: 1.4rem; }
    .cta-button-schulungen { padding: 24px 55px; font-size: 1.5rem; }
    .gallery-image-container { height: 250px; }
    .contact-schools-title { font-size: 1.8rem !important; word-break: break-word; hyphens: auto; }
    .contact-schools-header { padding: 40px 25px !important; }
    .cta-email-btn, .cta-phone-btn { padding: 18px 25px !important; font-size: 1.1rem !important; gap: 12px; width: 100%; justify-content: center; }
    .contact-cta-buttons { flex-direction: column; gap: 15px; width: 100%; }
    .hero-video, .ueber-hero-video, .kontakt-hero-video { object-fit: cover !important; width: 100% !important; height: 100% !important; -webkit-transform: translateZ(0); transform: translateZ(0); will-change: transform; }
    .hero-video-container, .ueber-hero-video-container, .kontakt-hero-video-container { will-change: transform; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
    .kontakt-verbundene-sections { padding: 40px 0 100px; }
    .kontakt-title-neu { font-size: 2.5rem; }
    .kontakt-subtitle-neu { font-size: 1rem; }
    .hero-box-neu { padding: 30px 20px; width: 95%; margin: 40px auto 60px; }
    .kontakt-info-grid-neu { grid-template-columns: 1fr; gap: 30px; }
    .kontakt-form-card-neu { padding: 40px 30px; }
    .kontakt-social-grid-neu { grid-template-columns: 1fr 1fr; gap: 20px; }
    .kontakt-social-item-neu { padding: 25px 15px; }
    .kontakt-social-item-neu i { font-size: 2.5rem; }
    .social-label-neu { font-size: 1rem; }
    .kontakt-form-section-heller, .kontakt-social-section-neu { padding: 100px 0; }
    .police-light { filter: blur(35px) !important; }
    .light-red-1, .light-blue-1 { width: 350px !important; height: 350px !important; }
    .light-red-2, .light-blue-2 { width: 280px !important; height: 280px !important; }
    .light-red-3, .light-blue-3 { width: 230px !important; height: 230px !important; }
    .light-red-4, .light-blue-4 { width: 200px !important; height: 200px !important; }
    .light-red-5, .light-blue-5 { width: 170px !important; height: 170px !important; }
}

/* --- 576px --- */
@media (max-width: 576px) {
    .container { padding: 0 15px; }
    .header-container { padding: 12px 15px; }
    .logo-image { height: 45px; }
    .logo-title-fusion { flex-direction: row; gap: 3px; }
    .title-logo { height: 50px; }
    .title-text { font-size: 2.5rem; letter-spacing: 1px; }
    .title-dash { margin: 0 2px; }
    .subtitle-text { font-size: 1.1rem; }
    .description-text { font-size: 1rem; }
    .cta-button { padding: 18px 35px; font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; margin-bottom: 25px; }
    .mobile-sidebar { width: 280px; padding: 85px 20px 25px; }
    .mobile-nav-link { padding: 20px 25px; }
    .mobile-nav-text { font-size: 1.2rem; }
    .leistung-icon i, .image-container i { font-size: 4rem; }
    .number { font-size: 4.5rem; }
    .expertise-card:last-child .number { font-size: 3rem; }
    .cookie-container { padding: 0 20px; }
    .cookie-title { font-size: 1.5rem; }
    .cookie-text { font-size: 0.9rem; }
    .cookie-accept-btn, .cookie-settings-btn { padding: 12px 25px; font-size: 0.9rem; }
    .footer-contact { text-align: left; padding: 0 5px; }
    .footer-contact p { font-size: 0.9rem; gap: 10px; justify-content: flex-start; padding-left: 5px; flex-wrap: wrap; }
    .footer-contact p i { width: 22px; font-size: 1rem; flex-shrink: 0; }
    .footer-legal { gap: 12px; flex-direction: row; flex-wrap: wrap; justify-content: center; padding: 0 5px; }
    .footer-legal a { font-size: 0.8rem; white-space: nowrap; padding: 4px 6px; }
    .footer-title { font-size: 1.2rem; }
    .footer-tagline { font-size: 1rem; }
    .footer-logo-img { height: 70px; }
    .map-address { padding: 30px 20px !important; }
    .map-address-title { font-size: 1.4rem !important; }
    .address-text { font-size: 1rem !important; }
    .address-info p { font-size: 0.9rem !important; }
    .ueber-hero-content { padding-top: 100px; }
    .ueber-hero-title { font-size: 3rem; }
    .ueber-hero-subtitle { font-size: 1rem; }
    .geschichte-highlight { flex-direction: column; text-align: center; }
    .cta-card .cta-button { padding: 15px 35px; font-size: 1.2rem; }
    .philosophie-grid { grid-template-columns: 1fr; }
    .fakten-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .fakten-card { padding: 30px 20px; }
    .fakten-zahl { font-size: 3.5rem; }
    .fakten-text { font-size: 1.2rem; }
    .cta-card { padding: 40px 20px; }
    .cta-title { font-size: 2rem; }
    .cta-text { font-size: 1rem; }
    .geschichte-section, .philosophie-section, .fakten-section { padding: 80px 0; }
    .datenschutz-hero-title { font-size: 2.8rem; }
    .datenschutz-hero-subtitle { font-size: 1rem; }
    .datenschutz-content-card { padding: 30px 20px; }
    .datenschutz-text h2 { font-size: 1.8rem; }
    .datenschutz-text h3 { font-size: 1.4rem; }
    .impressum-hero-title { font-size: 2.8rem; }
    .impressum-hero-subtitle { font-size: 1rem; }
    .impressum-content-card { padding: 30px 20px; }
    .impressum-text h2 { font-size: 1.8rem; }
    .impressum-text h3 { font-size: 1.4rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .title-text-schulungen { font-size: 3.5rem; }
    .subtitle-text-schulungen { font-size: 1.5rem; }
    .description-text-schulungen { font-size: 1.2rem; }
    .cta-button-schulungen { padding: 22px 45px; font-size: 1.3rem; }
    .gallery-image-container { height: 280px; }
    .gallery-notice { padding: 40px 30px; }
    .notice-title { font-size: 1.8rem; }
    .notice-text { font-size: 1.1rem; }
    .contact-schools-header, .contact-schools-body { padding: 40px 30px; }
    .contact-schools-title { font-size: 1.4rem !important; letter-spacing: 1px; }
    .contact-schools-header { padding: 30px 15px !important; }
    .contact-schools-icon i { font-size: 3.5rem !important; }
    .cta-email-btn, .cta-phone-btn { padding: 15px 20px !important; font-size: 0.95rem !important; gap: 10px; }
    .cta-email-btn span, .cta-phone-btn span { font-size: 0.85rem; word-break: break-all; }
    .cta-email-btn i, .cta-phone-btn i { font-size: 1rem; }
    .contact-schools-body { padding: 30px 20px !important; }
    .contact-schools-card { border-radius: 15px !important; }
    .benefit-item { padding: 15px 18px !important; gap: 12px; }
    .benefit-item span { font-size: 0.95rem !important; }
    .benefit-item i { font-size: 1.2rem !important; }
    .contact-info-item { padding: 25px 20px !important; }
    .contact-info-item h4 { font-size: 1.1rem !important; }
    .contact-info-item p { font-size: 0.9rem !important; }
    .contact-schools-cta { padding: 35px 25px !important; }
    .cta-title { font-size: 1.6rem !important; }
    .cta-text { font-size: 0.95rem !important; }
    .erfolg-meldung { padding: 25px 30px; }
    .erfolg-meldung i { font-size: 3.5rem; }
    .erfolg-meldung p { font-size: 1.5rem; }
    .map-instructions { padding: 15px 15px !important; }
    .map-instructions p { font-size: 0.85rem !important; justify-content: flex-start; }
    .map-instructions strong { display: inline-block; width: 100%; margin-bottom: 3px; }
    .service-card:nth-child(3) .service-title { font-size: 1.6rem !important; }
    .service-content { padding: 35px 25px !important; }
    .service-title { font-size: 1.6rem !important; word-break: break-word; }
    .service-card:hover .service-title { transform: translateX(0) !important; }
    .kontakt-verbundene-sections { padding: 20px 0 80px; }
    .kontakt-title-neu { font-size: 2rem; }
    .hero-box-neu { padding: 25px 15px; margin: 30px auto 50px; }
    .kontakt-form-card-neu { padding: 30px 20px; }
    .kontakt-social-grid-neu { grid-template-columns: 1fr 1fr; gap: 15px; }
    .kontakt-form-section-heller, .kontakt-social-section-neu { padding: 80px 0; }
    .kontakt-info-card-neu { padding: 35px 25px; }
    .kontakt-info-title-neu { font-size: 1.4rem; }
}

/* --- 480px --- */
@media (max-width: 480px) {
    .logo-title-fusion { flex-direction: row; align-items: center; }
    .title-logo { height: 40px; }
    .title-text { font-size: 2rem; }
    .hero-title { line-height: 0.9; }
    .footer-legal a { font-size: 0.75rem; padding: 3px 4px; }
    .footer-legal { gap: 8px; }
    .footer-contact p { font-size: 0.8rem; }
    .service-title { font-size: 1.4rem !important; }
    .service-card:nth-child(3) .service-title { font-size: 1.3rem !important; }
    .map-instructions p { font-size: 0.8rem !important; }
    .kontakt-social-grid-neu { grid-template-columns: 1fr 1fr; gap: 12px; }
    .kontakt-social-item-neu { padding: 20px 12px; border-radius: 15px; }
    .kontakt-social-item-neu i { font-size: 2rem; }
    .social-label-neu { font-size: 0.85rem; }
    .contact-schools-title { font-size: 1.2rem !important; }
    .cta-email-btn, .cta-phone-btn { padding: 12px 15px !important; font-size: 0.85rem !important; gap: 8px; border-radius: 40px; }
    .cta-email-btn span, .cta-phone-btn span { font-size: 0.78rem; }
    .contact-schools-body { padding: 20px 15px !important; }
    .benefit-item { padding: 12px 15px !important; }
    .benefit-item span { font-size: 0.85rem !important; }
    .contact-info-item h4 { font-size: 1rem !important; }
    .contact-info-item p { font-size: 0.8rem !important; }
    .cta-title { font-size: 1.3rem !important; }
    .cta-text { font-size: 0.85rem !important; }
}