/**
 * Semitec - Erweiterte Animationen und Effekte
 * CSS-Datei für Scroll-Animationen, Partikeleffekte und lebendigen Hero-Bereich
 * Optimiert für hohe Performance mit erweiterten visuellen Effekten
 */

/* KRITISCHE SICHTBARKEIT - Höchste Priorität für alle wichtigen Elemente */

.section-header,
.section-title,
.section-subtitle,
.section-tag,
.service-card,
.chart-container,
.chart-item,
.chart-title,
.chart-value,
.chart-bar,
.chart-bar-fill,
.contact-info,
.contact-form,
.contact-form input,
.contact-form textarea,
.contact-form select,
.faq-item,
.faq-question,
.testimonial-quote,
.cta-section,
.cta-center,
.reviews-carousel-container,
.review-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
}


/* HERO VISUAL ELEMENTE - TRANSFORM NICHT RESETTEN */
.hero-visual,
.hero-image-container,
.hero-image,
.floating-element,
.hero-3d-elements {
    opacity: 1 !important;
    visibility: visible !important;
    /* EXPLIZIT KEIN TRANSFORM RESET - BLEIBT SCHIEF! */
}

.hero-visual,
.hero-image-container,
.hero-image,
.floating-element,
.hero-3d-elements::after {
    opacity: 1 !important;
    visibility: visible !important;
    /* EXPLIZIT KEIN TRANSFORM RESET - BLEIBT SCHIEF! */
}
.hero-visual,
.hero-image-container,
.hero-image,
.floating-element,
.hero-3d-elements::before {
    opacity: 1 !important;
    visibility: visible !important;
    /* EXPLIZIT KEIN TRANSFORM RESET - BLEIBT SCHIEF! */
}

/* Hero-spezifische Fixes */
.hero .container,
.hero-container {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-stats {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

#rotating-word {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Chart-spezifische Fixes */
.chart-container.in-view,
.chart-item.in-view,
.section-header.in-view,
.service-card.in-view {
    opacity: 1 !important;
    transform: none !important;
}

/* Service Cards Fixes */
.service-card {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
}

/* Kontaktformular Fixes */
.contact-section .contact-info,
.contact-section .contact-form {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.contact-form .form-group {
    opacity: 1 !important;
    visibility: visible !important;
}

/* FALLBACK FÜR SICHTBARKEIT - Diese Regeln haben höchste Priorität */
body.ensure-content-visible .service-card,
body.ensure-content-visible .faq-item,
body.ensure-content-visible .reviews-carousel-container,
body.ensure-content-visible .review-card,
body.ensure-content-visible .contact-info,
body.ensure-content-visible .contact-form,
body.ensure-content-visible .map-container,
body.no-animations .service-card,
body.no-animations .faq-item,
body.no-animations .reviews-carousel-container,
body.no-animations .review-card,
body.no-animations .contact-info,
body.no-animations .contact-form,
body.no-animations .map-container,
body.force-visible * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: block !important;
    max-height: none !important;
    transition: none !important;
}

/* Animations-Deaktivierung für niedrige Performance */
body.no-animations * {
    transition: none !important;
    animation: none !important;
}

/* SMOOTH MOBILE ANIMATIONEN - Optimiert für Touch-Geräte */
@media (max-width: 768px) {
    /* Partikel deaktivieren für bessere Performance */
    .particle {
        display: none !important;
    }
    
    /* Smooth Scroll für Mobile aktivieren */
    html {
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    /* Alle Animationen smooth und responsiv machen */
    .fade-in-left,
    .fade-in-right,
    .fade-in-up,
    .fade-in-down,
    .zoom-in,
    .flip-card,
    .service-card,
    .chart-container,
    .chart-item,
    .section-header,
    .about-content,
    .contact-info,
    .contact-form,
    .review-card,
    .faq-item {
        opacity: 0 !important;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        will-change: transform, opacity !important;
        transform: translateZ(0) !important; /* Hardware-Beschleunigung */
    }
    
    /* Smooth In-View Animationen */
    .fade-in-left.in-view,
    .fade-in-right.in-view,
    .fade-in-up.in-view,
    .fade-in-down.in-view,
    .zoom-in.in-view,
    .flip-card.in-view,
    .service-card.in-view,
    .chart-container.in-view,
    .chart-item.in-view,
    .section-header.in-view,
    .about-content.in-view,
    .contact-info.in-view,
    .contact-form.in-view,
    .review-card.in-view,
    .faq-item.in-view {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) scale(1) !important;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    
    /* Service Cards - Mobile Optimierung */
    .service-card {
        transform: translateY(30px) scale(0.95) !important;
    }
    
    .service-card.in-view {
        transform: translateY(0) scale(1) !important;
        opacity: 1 !important;
    }
    
    /* Charts - Mobile Smooth Animation */
    .chart-container {
        transform: translateY(40px) !important;
    }
    
    .chart-container.in-view {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    /* Section Headers - Mobile Smooth */
    .section-header {
        transform: translateY(50px) scale(0.9) !important;
    }
    
    .section-header.in-view {
        transform: translateY(0) scale(1) !important;
        opacity: 1 !important;
    }
}

/* Optimierte und schlankere Wassertropfen-Animation */
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    animation: float-droplet 12s infinite ease-in-out alternate;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Einfachere Farbvarianten für bessere Performance */
.particle.blue-droplet {
    background: rgba(0, 140, 255, 0.5);
}

.particle.orange-droplet {
    background: rgba(255, 107, 0, 0.5);
}

.particle.yellow-droplet {
    background: rgba(255, 200, 0, 0.5);
}

/* Container mit Performance-Optimierungen */
.interactive-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
    transform: translateZ(0);
    will-change: opacity;
    transition: opacity 0.3s ease;
}

/* Nur im Hero-Bereich aktiv */
.hero .interactive-particles {
    visibility: visible;
    opacity: 0.7;
}

/* Performance-Optimierung: Unsichtbar machen beim Scrollen */
body.is-scrolling .interactive-particles {
    opacity: 0;
}

/* Optimierte Keyframes für Float-Animation */
@keyframes float-droplet {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}

/* Erweiterte Keyframes für Wasserbewegung */
@keyframes water-wave {
    0% {
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
        transform: scale(1);
    }
    50% {
        border-radius: 30% 70% 70% 30% / 40% 60% 40% 60%;
        transform: scale(1.05);
    }
    100% {
        border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
        transform: scale(1);
    }
}

/* Animation für Wassertropfen anwenden */
.particle.blue-droplet, 
.particle.orange-droplet, 
.particle.yellow-droplet {
    animation: float-droplet 12s infinite ease-in-out alternate, 
               water-wave 8s infinite ease-in-out;
}

/* Hero-Sektion mit optimierter 3D-Performance */
.hero {
    position: relative;
    overflow: hidden;
    transform-style: flat;
}

/* Perspective Origin für 3D-Effekt */
.hero-container {
    transform-style: flat;
}

/* Erweiterte Transitionen mit hoher Performance */
.fade-in-left {
    transform: translateX(-40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1.25);
    will-change: transform, opacity;
}

.fade-in-right {
    transform: translateX(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1.25);
    will-change: transform, opacity;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1.25);
    will-change: transform, opacity;
}

.fade-in-down {
    transform: translateY(-40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1.25);
    will-change: transform, opacity;
}

.zoom-in {
    transform: scale(0.85);
    opacity: 0;
    transition: all 1s cubic-bezier(0.17, 0.67, 0.3, 1.33);
    will-change: transform, opacity;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

/* Aktive Animation - Optimiert */
.in-view {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

/* 3D-Flip Animation - Neue Effekte */
.flip-card {
    opacity: 0;
    transform: perspective(1000px) rotateY(90deg);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.flip-card.in-view {
    opacity: 1 !important;
    transform: perspective(1000px) rotateY(0deg) !important;
}

/* Staggered-Reveal Animation - Neue Effekte */
.stagger-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1.25);
    will-change: transform, opacity;
}

.stagger-reveal.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hover-Effekte für Service-Karten - Neue erweiterte Hover-Effekte */
.service-card {
    opacity: 0;
    visibility: visible !important;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                opacity 0.8s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Neon-Effekt für Buttons */
.btn-primary, .btn-secondary, .cta-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-secondary::after, .cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, 
                rgba(255,255,255, 0) 10%,
                rgba(255,255,255, 0.2) 20%, 
                rgba(255,255,255, 0) 30%);
    transform: rotate(30deg);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 1;
}

.btn-primary:hover::after, .btn-secondary:hover::after, .cta-button:hover::after {
    transform: rotate(30deg) translate(50%, 50%);
}

/* Moderne Hover-Effekte für Service-Cards */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(255, 107, 0, 0.1) 0%, 
                rgba(255, 107, 0, 0) 50%, 
                rgba(0, 140, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

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

/* Service Card Icon Hover-Animation */
.service-card .icon-wrapper {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

/* Service Card Text Hover-Animation */
.service-card h3 {
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

/* Ultra-Moderne Chart-Animationen mit Glasmorphism und Neon-Effekten */
.chart-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 0, 0.1), 
        rgba(0, 140, 255, 0.1), 
        transparent);
    animation: chart-glow-sweep 4s infinite;
    pointer-events: none;
}

.chart-container.in-view {
    opacity: 1;
    transform: translateY(0);
}

.chart-item {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.chart-item:nth-child(1) { transition-delay: 0.1s; }
.chart-item:nth-child(2) { transition-delay: 0.2s; }
.chart-item:nth-child(3) { transition-delay: 0.3s; }
.chart-item:nth-child(4) { transition-delay: 0.4s; }

.chart-container.in-view .chart-item {
    opacity: 1;
    transform: translateX(0);
}

.chart-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    position: relative;
}

.chart-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.chart-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.5s;
}

.chart-container.in-view .chart-title::after {
    width: 100%;
}

.chart-value {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    overflow: hidden;
}

.chart-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: text-shine 2s infinite;
    animation-delay: 1s;
}

.chart-bar {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(145deg, #f0f4f8, #e2e8f0);
    height: 16px;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.1));
    border-radius: 15px;
    z-index: 2;
    pointer-events: none;
}

.chart-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 15px;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.chart-bar-fill:nth-child(1) {
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 100%);
}

.chart-item:nth-child(1) .chart-bar-fill {
    background: linear-gradient(135deg, 
        var(--primary-orange) 0%, 
        #ff6b9d 100%);
    box-shadow: 
        0 4px 15px rgba(255, 107, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.chart-item:nth-child(2) .chart-bar-fill {
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%, 
        #667eea 100%);
    box-shadow: 
        0 4px 15px rgba(0, 140, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.chart-item:nth-child(3) .chart-bar-fill {
    background: linear-gradient(135deg, 
        #11998e 0%, 
        #38ef7d 100%);
    box-shadow: 
        0 4px 15px rgba(17, 153, 142, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.chart-item:nth-child(4) .chart-bar-fill {
    background: linear-gradient(135deg, 
        #fc466b 0%, 
        #3f5efb 100%);
    box-shadow: 
        0 4px 15px rgba(252, 70, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.chart-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transform: translateX(-100%);
    animation: chart-shine 3s ease-in-out infinite;
    animation-delay: 2s;
    pointer-events: none;
    z-index: 3;
}

/* Pulsing Glow-Effekt für aktive Charts */
.chart-container.in-view .chart-bar-fill {
    animation: chart-pulse 4s ease-in-out infinite;
    animation-delay: 1s;
}

/* Keyframes für alle Animationen */
@keyframes chart-glow-sweep {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

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

@keyframes chart-shine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

@keyframes chart-pulse {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(255, 107, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(255, 107, 0, 0.6),
            0 0 20px rgba(255, 107, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Responsive Design für Charts */
@media (max-width: 768px) {
    .chart-container {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .chart-value {
        font-size: 1.5rem;
    }
    
    .chart-bar {
        height: 12px;
        border-radius: 10px;
    }
    
    .chart-bar-fill {
        border-radius: 10px;
    }
}

/* 3D Transform-Effekte für Hover */
.chart-item:hover {
    transform: translateX(0) translateY(-5px) rotateX(5deg);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.chart-item:hover .chart-bar-fill {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Verbesserte Review-Card-Animation */
.review-card {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateZ(0);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.review-card.filtered-out {
    transform: scale(0.95);
    filter: grayscale(0.8);
    pointer-events: none;
}

/* Verbesserte FAQ Items mit erweiterten Hover-Effekten */
.faq-item {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
    border-left: 3px solid var(--primary-orange);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-question::after {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-orange);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1.25);
    will-change: max-height;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Anpassbar an Content-Größe */
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
}

/* Verbesserte Kontaktformular-Elemente */
.contact-form input,
.contact-form textarea,
.contact-form select {
    transition: all 0.3s ease;
    border: 2px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 140, 255, 0.1);
    transform: translateY(-2px);
}

.contact-form .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.contact-form .btn:hover::before {
    transform: translateX(100%);
}

/* Verbesserte Einblend-Animationen für Sektionen */
.service-card.visible,
.service-card.in-view,
.service-card[style*="opacity: 1"] {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) rotateY(0) !important;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                opacity 0.8s ease;
}

.reviews-carousel-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1.25);
}

.reviews-carousel-container.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1.25);
}

.contact-section.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1.25);
}

.contact-form {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1.25);
}

.contact-info.animated,
.contact-form.animated {
    opacity: 1;
    transform: translateX(0);
}

.map-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1.25);
}

.map-container.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Button-Hover-Effekte */
.btn-primary, 
.btn-secondary,
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 5;
}

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

.btn-primary:hover::before, 
.btn-secondary:hover::before,
.cta-button:hover::before {
    left: 100%;
}

.btn-primary:hover, 
.btn-secondary:hover,
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0,0,0,0.1);
}

/* 3D-Rotations-Effekt für Bilder */
.about-image img,
.service-image img {
    transition: all 0.5s ease-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.about-image:hover img,
.service-image:hover img {
    transform: perspective(1000px) rotateY(5deg) rotateX(3deg);
    filter: brightness(1.05);
}

/* Neue Skewing-Animation für CTA-Sections */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    opacity: 0.05;
    transform: skewY(-3deg);
    z-index: -1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cta-section:hover::before {
    opacity: 0.1;
    transform: skewY(-4deg);
}

/* Responsive Anpassungen für Mobile */
@media (max-width: 768px) {
    .about-us .container {
        flex-direction: column-reverse;
    }
    
    .about-content {
        transform: translateY(30px);
    }
    
    .about-image {
        transform: translateY(-30px);
        margin-bottom: 1.5rem;
    }
}

/* NEUE ANIMATIONSEFFEKTE */

/* Glitzy-Text-Effekt für Überschriften */
@keyframes glitzy-text {
    0%, 100% {
        text-shadow: 0 0 0 transparent;
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 107, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.3);
    }
}

h1.animated-heading, h2.animated-heading {
    animation: glitzy-text 3s infinite ease-in-out;
}

/* Gestaffelte Erscheinung für Listen mit Verzögerung */
.staggered-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.staggered-list.in-view li:nth-child(1) { transition-delay: 0.1s; }
.staggered-list.in-view li:nth-child(2) { transition-delay: 0.2s; }
.staggered-list.in-view li:nth-child(3) { transition-delay: 0.3s; }
.staggered-list.in-view li:nth-child(4) { transition-delay: 0.4s; }
.staggered-list.in-view li:nth-child(5) { transition-delay: 0.5s; }
.staggered-list.in-view li:nth-child(6) { transition-delay: 0.6s; }
.staggered-list.in-view li:nth-child(7) { transition-delay: 0.7s; }
.staggered-list.in-view li:nth-child(8) { transition-delay: 0.8s; }
.staggered-list.in-view li:nth-child(9) { transition-delay: 0.9s; }
.staggered-list.in-view li:nth-child(10) { transition-delay: 1.0s; }

.staggered-list.in-view li {
    opacity: 1;
    transform: translateX(0);
}

/* Parallax-Scrolleffekt für Hintergrundbilder */
.parallax-section {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Erweiterte Keyframe-Animationen */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

.float-element {
    animation: floatAnimation 4s ease-in-out infinite;
}

/* Pulse-Effekt für Hervorhebungen */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.pulse-element {
    animation: pulse 3s infinite;
}

/* Neon-Glühen für spezielle Texte */
@keyframes neon-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 140, 255, 0.7),
                    0 0 20px rgba(0, 140, 255, 0.5),
                    0 0 30px rgba(0, 140, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 5px rgba(0, 140, 255, 0.5),
                    0 0 10px rgba(0, 140, 255, 0.3),
                    0 0 15px rgba(0, 140, 255, 0.2);
    }
}

.neon-text {
    animation: neon-glow 2s infinite alternate;
    color: var(--primary-blue);
}

/* Service-Cards alternierend von links und rechts */
/* Diese Stile unterstützen die JS-Animation für Service-Cards */
.service-card:nth-child(odd) {
    transform: translateX(-100px) translateY(20px) rotateY(15deg);
}

.service-card:nth-child(even) {
    transform: translateX(100px) translateY(20px) rotateY(-15deg);
}

/* Sicherstellen, dass Services-Cards sichtbar sind */
#leistungen .service-card {
    visibility: visible !important;
    display: block !important;
}

/* ==================================================
   ULTRA-MODERNE SEKTION ANIMATIONEN
   ================================================== */

/* Hineinfliegende Überschriften */
.section-header {
    opacity: 0;
    transform: translateY(80px) scale(0.8);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.section-header.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section-title {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 0, 0.2), 
        rgba(0, 140, 255, 0.2), 
        transparent);
    animation: title-glow 3s infinite;
    animation-delay: 0.5s;
}

.section-tag {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.2s;
}

.section-header.in-view .section-tag {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.4s;
}

.section-header.in-view .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Hineinfliegende Cards von links */
.animate-from-left {
    opacity: 0;
    transform: translateX(-120px) rotateY(-15deg);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    backface-visibility: hidden;
    perspective: 1000px;
}

.animate-from-left.in-view {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

/* Hineinfliegende Cards von rechts */
.animate-from-right {
    opacity: 0;
    transform: translateX(120px) rotateY(15deg);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    backface-visibility: hidden;
    perspective: 1000px;
}

.animate-from-right.in-view {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

/* Hineinfliegende Cards von oben */
.animate-from-top {
    opacity: 0;
    transform: translateY(-80px) rotateX(15deg);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    backface-visibility: hidden;
    perspective: 1000px;
}

.animate-from-top.in-view {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* Hineinfliegende Cards von unten */
.animate-from-bottom {
    opacity: 0;
    transform: translateY(80px) rotateX(-15deg);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    backface-visibility: hidden;
    perspective: 1000px;
}

.animate-from-bottom.in-view {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* Staggered Animationen für mehrere Cards */
.stagger-left:nth-child(1) { transition-delay: 0.1s; }
.stagger-left:nth-child(2) { transition-delay: 0.2s; }
.stagger-left:nth-child(3) { transition-delay: 0.3s; }
.stagger-left:nth-child(4) { transition-delay: 0.4s; }
.stagger-left:nth-child(5) { transition-delay: 0.5s; }
.stagger-left:nth-child(6) { transition-delay: 0.6s; }

.stagger-right:nth-child(1) { transition-delay: 0.1s; }
.stagger-right:nth-child(2) { transition-delay: 0.2s; }
.stagger-right:nth-child(3) { transition-delay: 0.3s; }
.stagger-right:nth-child(4) { transition-delay: 0.4s; }
.stagger-right:nth-child(5) { transition-delay: 0.5s; }
.stagger-right:nth-child(6) { transition-delay: 0.6s; }

/* Moderne Service-Cards mit Glasmorphism */
.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 0, 0.1), 
        rgba(0, 140, 255, 0.1), 
        transparent);
    transition: left 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(255, 107, 0, 0.1);
}

/* Floating Animation für Cards */
.float-card {
    animation: float-gentle 6s ease-in-out infinite;
}

.float-card:nth-child(2n) {
    animation-delay: -3s;
}

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

/* Morphing Button Effekte */
.btn-morph {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
}

.btn-morph::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

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

.btn-morph:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(255, 107, 0, 0.4),
        0 5px 15px rgba(0, 140, 255, 0.3);
}

/* Keyframe Animationen */
@keyframes title-glow {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Magnetischer Hover-Effekt für interaktive Elemente */
.magnetic-element {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

/* Parallax-Container für Sektionen */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -1;
    will-change: transform;
}

/* Particle System Basis */
.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 20s infinite linear;
}

.particle-element:nth-child(1) { animation-delay: 0s; }
.particle-element:nth-child(2) { animation-delay: -5s; }
.particle-element:nth-child(3) { animation-delay: -10s; }
.particle-element:nth-child(4) { animation-delay: -15s; }

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Anpassungen - ERWEITERT FÜR SMOOTH MOBILE */
@media (max-width: 768px) {
    /* Alle Richtungs-Animationen smooth machen */
    .animate-from-left,
    .animate-from-right {
        opacity: 0 !important;
        transform: translateY(50px) !important;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        will-change: transform, opacity !important;
    }
    
    .animate-from-left.in-view,
    .animate-from-right.in-view {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    
    /* Touch-optimierte Interaktion statt Hover */
    .service-card:active {
        transform: scale(0.98) !important;
        transition: transform 0.1s ease !important;
    }
    
    /* Smooth Scroll für alle internen Links */
    html {
        scroll-behavior: smooth !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-from-left,
    .animate-from-right,
    .animate-from-top,
    .animate-from-bottom,
    .section-header {
        transition: opacity 0.3s ease;
        transform: none;
    }
}

/* ==================================================
   FALLBACK ANIMATIONEN UND ERWEITERTE RESPONSIVE
   ================================================== */

/* CSS-only Fallbacks für Browser ohne JavaScript */
.no-js .chart-container,
.fallback-animations .chart-container {
    opacity: 1;
    transform: none;
    animation: gentle-fade-in 1s ease-out;
}

.no-js .chart-bar-fill,
.fallback-animations .chart-bar-fill {
    animation: bar-fill-fallback 2s ease-out forwards;
}

.no-js .service-card,
.fallback-animations .service-card {
    animation: card-appear 0.8s ease-out forwards;
}

.no-js .section-header,
.fallback-animations .section-header {
    animation: header-appear 1s ease-out forwards;
}

/* Fallback Keyframes */
@keyframes gentle-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bar-fill-fallback {
    from {
        width: 0;
    }
    to {
        width: var(--target-width, 100%);
    }
}

@keyframes card-appear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes header-appear {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progressive Enhancement für moderne Browser */
@supports (backdrop-filter: blur(10px)) {
    .chart-container {
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .service-card {
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
}

@supports not (backdrop-filter: blur(10px)) {
    .chart-container {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .service-card {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Erweiterte Responsive Breakpoints */
@media (max-width: 1400px) {
    .chart-container {
        padding: 1.8rem;
    }
    
    .chart-value {
        font-size: 1.6rem;
    }
}

@media (max-width: 1200px) {
    .chart-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .chart-bar {
        height: 14px;
        border-radius: 12px;
    }
    
    .chart-bar-fill {
        border-radius: 12px;
    }
    
    .service-card {
        border-radius: 16px;
    }
}

@media (max-width: 992px) {
    .animate-from-left,
    .animate-from-right {
        transform: translateY(40px);
    }
    
    .animate-from-left.in-view,
    .animate-from-right.in-view {
        transform: translateY(0);
    }
    
    .chart-title {
        font-size: 1rem;
    }
    
    .chart-value {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .chart-container {
        padding: 1.2rem;
        border-radius: 12px;
        margin: 1rem 0;
    }
    
    .chart-item {
        margin-bottom: 1.5rem;
    }
    
    .chart-bar {
        height: 10px;
        border-radius: 8px;
    }
    
    .chart-bar-fill {
        border-radius: 8px;
    }
    
    .chart-value {
        font-size: 1.2rem;
    }
    
    .chart-title {
        font-size: 0.9rem;
    }
    
    .service-card {
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .service-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Mobile-optimierte Partikel */
    .particle-element {
        display: none;
    }
}

@media (max-width: 576px) {
    .chart-container {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .chart-item {
        margin-bottom: 1.2rem;
    }
    
    .chart-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .chart-value {
        font-size: 1.1rem;
        align-self: flex-end;
    }
    
    .chart-title {
        font-size: 0.85rem;
    }
    
    .chart-bar {
        height: 8px;
        border-radius: 6px;
        margin-top: 0.5rem;
    }
    
    .chart-bar-fill {
        border-radius: 6px;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    /* Vereinfachte Animationen für schwächere Geräte */
    .animate-from-left,
    .animate-from-right,
    .animate-from-top,
    .animate-from-bottom {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .chart-container {
        background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }
    
    .chart-title {
        color: #f8f9fa;
    }
    
    .chart-bar {
        background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .chart-container {
        background: #ffffff;
        border: 2px solid #000000;
    }
    
    .chart-title {
        color: #000000;
        font-weight: 700;
    }
    
    .chart-bar {
        background: #f0f0f0;
        border: 1px solid #666666;
    }
    
    .chart-bar-fill {
        background: linear-gradient(135deg, #0066cc, #ff3300) !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .chart-container,
    .chart-item,
    .section-header,
    .service-card,
    .animate-from-left,
    .animate-from-right,
    .animate-from-top,
    .animate-from-bottom {
        transition: opacity 0.2s ease;
        transform: none !important;
        animation: none !important;
    }
    
    .chart-bar-fill {
        transition: width 0.8s ease;
    }
    
    .particle-element,
    .floating-element,
    .float-card {
        animation: none !important;
    }
    
    .btn-morph:hover {
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .chart-container {
        background: #ffffff !important;
        border: 1px solid #000000 !important;
        box-shadow: none !important;
        page-break-inside: avoid;
    }
    
    .chart-bar-fill {
        background: #333333 !important;
        width: 100% !important;
    }
    
    .particle-system,
    .floating-element {
        display: none !important;
    }
    
    .service-card {
        background: #ffffff !important;
        border: 1px solid #cccccc !important;
        box-shadow: none !important;
        page-break-inside: avoid;
        margin-bottom: 1rem !important;
    }
}

/* Performance-optimierte Animationen für schwächere Geräte */
@media (max-width: 768px) and (max-resolution: 150dpi) {
    .chart-container,
    .service-card {
        will-change: auto;
        transform: translateZ(0);
    }
    
    .chart-bar-fill {
        will-change: width;
    }
    
    .animate-from-left,
    .animate-from-right {
        will-change: opacity, transform;
    }
}

/* Touch-optimierte Hover-Effekte */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .chart-item:hover,
    .btn-morph:hover {
        transform: none;
        scale: 1;
    }
    
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .btn-morph:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
}

/* HERO IMAGE 3D-EFFEKT SCHUTZ - HÖCHSTE PRIORITÄT */
.hero-image-container {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) !important;
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) scale(1.03) !important;
}

/* FLOATING ELEMENTS 3D-SCHUTZ */
.floating-element.element-1 {
    transform: perspective(1000px) rotateX(15deg) rotateY(15deg) translateZ(20px) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-element.element-2 {
    transform: perspective(1000px) rotateX(15deg) rotateY(-15deg) translateZ(20px) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-element.element-3 {
    transform: perspective(1000px) rotateX(-5deg) rotateY(10deg) translateZ(20px) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-element.element-4 {
    transform: perspective(1000px) rotateX(10deg) rotateY(5deg) translateZ(20px) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-element.element-5 {
    transform: perspective(1000px) rotateX(-10deg) rotateY(-5deg) translateZ(20px) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.floating-element.element-6 {
    transform: perspective(1000px) rotateX(5deg) rotateY(-10deg) translateZ(20px) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* CTA-SECTION SICHTBARKEITS-SCHUTZ */
.cta-section,
.cta-content,
.cta-center {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.cta-content h2,
.cta-content p,
.cta-center p {
    opacity: 1 !important;
    visibility: visible !important;
}

/* HERO VISUAL ALLGEMEIN SCHUTZ */
.hero-visual,
.hero-image,
.hero-3d-elements {
    opacity: 1 !important;
    visibility: visible !important;
    transform-style: preserve-3d !important;
}

/* VERBIETE TRANSFORM-RESETS FÜR HERO-ELEMENTE */
.hero-visual *,
.hero-image-container *,
.hero-3d-elements *,
.floating-element * {
    transform-style: preserve-3d !important;
    backface-visibility: hidden !important;
}

/* FORCE VISIBLE - ANTI-FADE KLASSEN */
.hero .fade-in-left,
.hero .fade-in-right,
.hero .fade-in-up,
.hero .fade-in-down {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
}

/* SERVICE CARDS VISIBLE */
.service-card,
.service-card h3,
.service-card h4,
.service-card p {
    opacity: 1 !important;
    visibility: visible !important;
}

/* REVIEWS SECTION VISIBLE */
.reviews-section,
.reviews-carousel-container,
.reviews-carousel,
.review-card {
    opacity: 1 !important;
    visibility: visible !important;
}

/* GENERELLE SICHTBARKEITS-GARANTIE */
.section-header,
.section-title,
.section-subtitle,
.chart-container,
.chart-item,
.contact-info,
.contact-form,
.faq-container,
.faq-item {
    opacity: 1 !important;
    visibility: visible !important;
} 