/* 
* Semitec - Main Stylesheet
* Moderne Version mit 3D-Effekten
*/

:root {
    /* Primäre Farben basierend auf dem Semitec Logo */
    --primary-orange: #ff5722;
    --primary-blue: #0088cc;
    --primary-yellow: #ffc107;
    
    /* Erweiterte Farbpalette für Gradienten */
    --gradient-orange-start: #ff7043;
    --gradient-orange-end: #ff3d00;
    --gradient-blue-start: #29b6f6;
    --gradient-blue-end: #0277bd;
    
    /* Neue Premium-Verläufe */
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    --gradient-premium: linear-gradient(135deg, #ff7043, #ff3d00, #0277bd, #29b6f6);
    --gradient-glow: linear-gradient(135deg, var(--gradient-orange-start), var(--primary-orange), var(--primary-blue), var(--gradient-blue-end));
    --gradient-glass: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
    --gradient-hero-bg: radial-gradient(circle at top right, rgba(255, 114, 94, 0.1), rgba(0, 136, 204, 0.1)), linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 245, 0.8));
    
    /* Überarbeitete Verlaufsfarben für atemberaubende Verläufe */
    --gradient-dark: linear-gradient(135deg, #2c3e50, #1a1a1a);
    --gradient-light: linear-gradient(135deg, #ffffff, #f5f5f5);
    
    /* Neue 3D-Verlaufseffekte */
    --gradient-premium-3d: linear-gradient(135deg, #ff7043, #ff3d00 40%, #0277bd 60%, #29b6f6);
    --gradient-hero-text: linear-gradient(90deg, var(--primary-orange), var(--primary-blue) 50%);
    --gradient-hero-3d: linear-gradient(to right, var(--primary-orange), var(--primary-blue));
    
    /* Neutrale Farben */
    --dark: #1a1a1a;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    
    /* Text-Farben für bessere Lesbarkeit */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    
    /* Glassmorphism Effekte */
    --glass-background: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --glass-blur: 15px;
    
    /* 3D-Effekt Farben */
    --shadow-light: rgba(255, 255, 255, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    
    /* Zusätzliche Farben */
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    
    /* Typografie */
    --font-primary: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.5;
    
    /* Spacing - Reduzierte Abstände für bessere Kompaktheit */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;    /* Reduziert von 2rem */
    --spacing-xl: 2.5rem;    /* Reduziert von 4rem */
    --spacing-xxl: 4rem;     /* Reduziert von 8rem */
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-xxl: 32px;
    --border-radius-circle: 50%;
    
    /* Transitions & Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-very-slow: 1s ease;
    --easing-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    
    /* Element Heights */
    --header-height: 80px;
    --hero-height: 100vh;
    
    /* Container */
    --container-max-width: 1600px;
    --container-padding: 1.5rem;
    
    /* Z-Index Layers */
    --z-background: -1;
    --z-base: 1;
    --z-above: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* Reset & Basis */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    color: var(--dark-gray);
    background-color: transparent; /* Geändert von var(--white) zu transparent */
    overflow-x: hidden;
    position: relative;
    min-height: 100vh; /* Hinzugefügt, um sicherzustellen, dass der Body die gesamte Höhe einnimmt */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--primary-orange);
}

::selection {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

/* Hintergrund-Elemente für die gesamte Webseite */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-background);
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: var(--border-radius-circle);
    filter: blur(100px);
    opacity: 0.15;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 60vh;
    height: 60vh;
    background: var(--primary-orange);
    animation: float-slow 20s ease-in-out infinite alternate;
}

.orb-2 {
    bottom: -20%;
    right: -10%;
    width: 70vh;
    height: 70vh;
    background: var(--primary-blue);
    animation: float-slow 25s ease-in-out infinite alternate-reverse;
}

.orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vh;
    height: 40vh;
    background: var(--primary-yellow);
    opacity: 0.05;
    animation: pulse 15s ease-in-out infinite;
}

.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    transform-origin: center;
    animation: grid-animation 60s linear infinite;
}


.interactive-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                     rgba(255, 87, 34, 0.1) 0%, 
                     rgba(0, 136, 204, 0.08) 30%, 
                     rgba(0, 0, 0, 0) 70%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

/* SEO-Optimierter H1 */
.seo-optimized {
    font-size: 2.5rem;
    opacity: 0.95;
    max-width: 100%;
    margin-bottom: 1rem;
    text-wrap: balance;
    text-rendering: optimizeLegibility;
}

/* Untertitel als H2 */
.hero-subtitle {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: var(--gradient-hero-text);
    -webkit-background-clip: text;
    background-clip: text;
    display: flex;
    flex-direction: column;
    animation: text-glow 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.hero-subtitle .for-text {
    font-size: 3rem;
    font-weight: 600;
    white-space: nowrap;
    filter: blur(0) !important;
    -webkit-filter: blur(0) !important;
    text-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    background: var(--gradient-hero-text);
    background-clip: text;
}

/* Neuer Flex-Container für Logo und "steht für" */
.logo-title-flex {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.for-text {
    font-size: 3rem;
    font-weight: 600;
    white-space: nowrap;
    filter: blur(0); /* Blur-Effekt entfernen */
}

.title-second-line {
    display: flex;
    flex-direction: column;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 87, 34, 0.1);
}

.section-title {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
}

.section-divider {
    height: 4px;
    width: 80px;
    margin: 1.5rem auto;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.left-aligned {
    text-align: left;
}

.left-aligned .section-divider {
    margin-left: 0;
}

.gradient-text {
    color: transparent !important;
    display: inline-block;
    background: var(--gradient-hero-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-gradient-animation 2s ease infinite alternate;
}

@keyframes text-gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.rotating-text {
    position: relative;
    display: inline-block;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0 5px;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
    }
}


.btn-primary {
    background: var(--gradient-premium);
    color: var(--white);
    padding: 1.2rem 2.4rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    border-radius: 100px !important;
}

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

.btn-primary:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 20px 30px rgba(255, 87, 34, 0.4);
}

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

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--primary-orange);
    padding: 1.2rem 2.4rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 87, 34, 0.3);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 87, 34, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    transform: translateY(-7px) scale(1.03);
    color: var(--primary-orange);
    border-color: rgba(255, 87, 34, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* 3D-Stats-Bereich */


.stat-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.7);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    transform: perspective(800px) translateZ(0);
}

/* Glaseffekt Overlay */
.stat-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.5) 0%, 
        rgba(255, 255, 255, 0.2) 100%);
    border-radius: 24px 24px 100px 100px / 24px 24px 50px 50px;
    z-index: 0;
    opacity: 0.8;
    transition: all 0.5s ease;
}

/* Hintergrund-Akzent */
.stat-badge::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, 
        var(--primary-orange) 0%, 
        rgba(255, 87, 34, 0) 70%);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(20px);
    transition: all 0.5s ease;
    z-index: -1;
}

.stat-badge:nth-child(2)::after {
    background: radial-gradient(circle, 
        var(--primary-blue) 0%, 
        rgba(0, 136, 204, 0) 70%);
    bottom: -60px;
    left: -60px;
}

.stat-badge:hover {
    transform: perspective(800px) translateZ(15px) translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(0, 0, 0, 0.08),
        inset 0 2px 2px rgba(255, 255, 255, 0.9);
}

.stat-badge:hover::before {
    opacity: 1;
    height: 60%;
}

.stat-badge:hover::after {
    opacity: 0.18;
    filter: blur(15px);
    transform: scale(1.2);
}

/* Icon-Container mit 3D-Effekt */
.stat-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--gradient-premium);
    box-shadow: 
        0 15px 25px rgba(255, 87, 34, 0.25),
        0 5px 10px rgba(0, 0, 0, 0.1),
        inset 0 2px 3px rgba(255, 255, 255, 0.4);
    z-index: 2;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateZ(10px);
}

.stat-badge:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #29b6f6, #0277bd);
}

.stat-badge:hover .stat-icon {
    transform: translateZ(25px) scale(1.12);
    box-shadow: 
        0 20px 30px rgba(255, 87, 34, 0.3),
        0 10px 15px rgba(0, 0, 0, 0.15),
        inset 0 2px 3px rgba(255, 255, 255, 0.4);
}

.stat-badge:nth-child(2):hover .stat-icon {
    box-shadow: 
        0 20px 30px rgba(0, 136, 204, 0.3),
        0 10px 15px rgba(0, 0, 0, 0.15),
        inset 0 2px 3px rgba(255, 255, 255, 0.4);
}

/* Glowing Effekt für das Icon */
.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-premium);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.5s ease;
}

.stat-badge:hover .stat-icon::before {
    opacity: 0.7;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: white;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.15));
    transition: all 0.5s ease;
    transform: translateZ(5px);
}

.stat-badge:hover .stat-icon svg {
    transform: translateZ(10px) scale(1.1);
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.2));
}

/* Stat Content */
.stat-content {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    transform: translateZ(5px);
}

.stat-badge:hover .stat-content {
    transform: translateZ(20px);
}

.stat-value {
    position: relative;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translateZ(5px);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.stat-badge:nth-child(2) .stat-value {
    background: linear-gradient(135deg, #29b6f6, #0277bd);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-badge:hover .stat-value {
    transform: translateZ(15px) scale(1.05);
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.stat-badge:hover .stat-label {
    color: var(--dark);
    opacity: 1;
    transform: translateZ(15px);
}

/* Ultra-modern Hero Visual Bereich */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-above);
    opacity: 1 !important;
    visibility: visible !important;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(0, 0, 0, 0.1),
        0 -5px 15px rgba(255, 255, 255, 0.5) inset,
        0 5px 15px rgba(0, 0, 0, 0.1) inset;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: var(--z-above);
    width: 100%;
    height: 550px;
    border: 10px solid white;
    opacity: 1 !important;
    visibility: visible !important;
    animation: pulse-effect 15s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes float-container {
    0% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0);
    }
    100% {
        transform: perspective(1000px) rotateY(-8deg) rotateX(3deg) translateY(-20px);
    }
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.05);
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(0, 0, 0, 0.1),
        0 -5px 15px rgba(255, 255, 255, 0.5) inset,
        0 5px 15px rgba(0, 0, 0, 0.1) inset;
}

.hero-image-container:hover img {
    transform: scale(1.1);
}

.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 1 !important;
    visibility: visible !important;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.floating-element {
    position: absolute;
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 -1px 2px rgba(255, 255, 255, 0.5) inset;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform: perspective(1000px) rotateX(15deg) rotateY(15deg) translateZ(20px);
    z-index: 6;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: -1;
}

.floating-element img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    opacity: 1 !important;
    visibility: visible !important;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
    transform: translateZ(10px);
}

.element-1 {
    top: 8%;
    left: -50px;
    animation: float-element-1 8s ease-in-out infinite;
}

.element-2 {
    top: 55%;
    right: -40px;
    animation: float-element-2 9s ease-in-out 0.5s infinite;
}

.element-3 {
    bottom: 10%;
    left: 15%;
    animation: float-element-3 7s ease-in-out 1s infinite;
}

@keyframes float-element-1 {
    0%, 100% {
        transform: perspective(1000px) rotateX(15deg) rotateY(15deg) translateZ(20px) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateX(10deg) rotateY(20deg) translateZ(20px) translateY(-30px);
    }
}

@keyframes float-element-2 {
    0%, 100% {
        transform: perspective(1000px) rotateX(15deg) rotateY(-15deg) translateZ(20px) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateX(20deg) rotateY(-10deg) translateZ(20px) translateY(-25px);
    }
}

@keyframes float-element-3 {
    0%, 100% {
        transform: perspective(1000px) rotateX(-5deg) rotateY(10deg) translateZ(20px) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateX(-10deg) rotateY(15deg) translateZ(20px) translateY(-35px);
    }
}

/* Moderner Scroll-Indikator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.9;
    transition: all var(--transition-normal);
    z-index: 100;
}

.scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    position: relative;
}

/* Komplett neue Definition für den Scroll-Button */
.scroll-arrow-btn {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    background: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid rgba(255, 87, 34, 0.7) !important;
    cursor: pointer !important;
    margin-top: 1rem !important;
    position: relative !important;
    transition: all var(--transition-normal) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
    z-index: 100 !important;
}

.scroll-arrow-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all var(--transition-normal);
}

.scroll-arrow-btn:hover::before {
    opacity: 1;
}

.scroll-arrow-btn svg {
    width: 32px !important;
    height: 32px !important;
    stroke: var(--primary) !important;
    stroke-width: 2.5 !important;
    transition: all var(--transition-normal) !important;
}

.scroll-arrow-btn:hover svg {
    stroke: var(--white);
    transform: scale(1.1);
}

/* Pulsierende Animation für den Scroll-Button */
.pulse-animation {
    animation: pulse-arrow 2s infinite ease-in-out !important;
}

@keyframes pulse-arrow {
    0% {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
    }
    50% {
        transform: translateY(10px);
        box-shadow: 0 15px 35px rgba(255, 87, 34, 0.5);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
    }
}

.scroll-arrow-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
    animation: pulse-arrow 2s infinite;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: -4.5rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-fixed);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
    overflow: hidden;
    outline: none;
}

.back-to-top.visible {
    bottom: 2rem;
    opacity: 1;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.back-to-top:hover::before {
    opacity: 0.2;
}

.back-to-top svg {
    width: 1.6rem;
    height: 1.6rem;
    color: var(--dark-gray);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

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

.back-to-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
    z-index: 1;
    animation: pulse-arrow 2s infinite;
}

/* Hero-Sektion - Verbesserte 3D-Effekte und Animationen */

.hero .container {
    position: relative;
    z-index: var(--z-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    transform-style: preserve-3d;
    flex-wrap: wrap;
    overflow: visible;
}

.hero h1 {
    background: var(--gradient-hero-text);
    background-clip: text;
    animation: text-glow 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.hero h1::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: var(--border-radius-circle);
    filter: blur(40px);
    opacity: 0.3;
    z-index: var(--z-background);
    animation: float-shape 12s ease-in-out infinite;
    transform: translateZ(-5px);
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 20%;
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: var(--border-radius-circle);
    filter: blur(50px);
    opacity: 0.4;
    z-index: var(--z-background);
    animation: float-shape 15s ease-in-out infinite reverse;
    transform: translateZ(-10px);
}

.rotating-text {
    display: inline-block;
    position: relative;
    color: var(--primary-orange);
    transition: color var(--transition-slow);
    animation: pulse-effect 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    transform-style: preserve-3d;
}


.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    position: relative;
    transform-style: preserve-3d;
    animation: smooth-fade-in 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.7s;
    opacity: 0;
    transform: translateY(20px);
}



.stat-badge:hover {
    transform: translateZ(30px) scale(1.05);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 10px 15px rgba(0, 0, 0, 0.05),
        inset 0 -5px 10px rgba(255, 255, 255, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.stat-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
    border-radius: var(--border-radius-circle);
    background: var(--gradient-premium);
    color: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
    transform: translateZ(5px);
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-circle);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
    animation: pulse-glow 3s infinite alternate;
}

.stat-badge:hover .stat-icon::before {
    opacity: 1;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.stat-content {
    flex-grow: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    transform: translateZ(5px);
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: count-pulse 0.5s var(--easing-bounce) backwards;
}

.stat-value::after {
    content: attr(data-suffix, '');
    font-size: 60%;
    margin-left: 2px;
    opacity: 0.7;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-top: -5px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: visual-intro 1.8s var(--easing-bounce) forwards;
    min-height: 400px;
}

.hero-image-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
    transform: translateZ(40px) rotateY(-5deg) rotateX(3deg);
    animation: float-container 8s ease-in-out infinite alternate;
    transition: all var(--transition-slow);
    border: 3px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 3;
    border-radius: calc(var(--border-radius-xl) - 3px);
    backdrop-filter: blur(5px);
    mix-blend-mode: overlay;
    animation: shine-sweep 5s infinite alternate ease-in-out;
}

.hero-image {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform var(--transition-slow);
    filter: contrast(1.05) saturate(1.1);
}

.hero-image-container:hover {
    transform: translateZ(50px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 
        0 35px 60px rgba(0, 0, 0, 0.2),
        0 25px 40px rgba(0, 0, 0, 0.15),
        0 15px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-image-container:hover img {
    transform: scale(1.02);
}

.hero-3d-elements {
    position: absolute;
    inset: 0;
    z-index: 5;
    transform-style: preserve-3d;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-circle);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 2px rgba(255, 255, 255, 0.5);
    transition: all var(--transition-slow);
    transform-style: preserve-3d;
    border: 2px solid rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.floating-element::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-circle);
    background: var(--gradient-premium);
    opacity: 0.1;
    transition: opacity var(--transition-slow);
    z-index: -1;
}

.floating-element img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    transition: all var(--transition-slow);
    transform: translateZ(10px);
}

.floating-element:hover::before {
    opacity: 0.25;
}

.floating-element:hover img {
    transform: translateZ(20px) scale(1.2);
}

.element-1 {
    top: 12%;
    left: 10%;
    animation: float-element 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.3s;
}

.element-2 {
    top: 40%;
    left: 5%;
    animation: float-element-2 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.9s;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation: float-element-3 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.6s;
}

.element-4 {
    top: 10%;
    right: 10%;
    animation: float-element 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1.2s;
}

.element-5 {
    top: 35%;
    right: 5%;
    animation: float-element-2 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1.5s;
}

.element-6 {
    bottom: 15%;
    right: 5%;
    animation: float-element 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1.8s;
}

/* Neue Animationen für die Hero-Sektion */
@keyframes hero-intro {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hero-shape-intro {
    from {
        opacity: 0;
        transform: translateZ(-50px) scale(0.9);
    }
    to {
        opacity: 0.5;
        transform: translateZ(-10px) scale(1);
    }
}

@keyframes content-intro {
    from {
        opacity: 0;
        transform: translateZ(0) translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateZ(30px) translateX(0);
    }
}

@keyframes visual-intro {
    from {
        opacity: 0;
        transform: translateZ(0) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateZ(0) translateX(0);
    }
}

@keyframes element-intro {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes text-pop {
    0%, 100% {
        transform: translateZ(0) scale(1);
        color: var(--primary-orange);
    }
    50% {
        transform: translateZ(15px) scale(1.05);
        color: var(--primary-blue);
    }
}

@keyframes line-grow {
    0%, 100% {
        width: 0%;
        left: 50%;
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        width: 100%;
        left: 0;
    }
}

@keyframes shine-sweep {
    from {
        transform: translateX(-100%) rotate(20deg);
    }
    to {
        transform: translateX(100%) rotate(20deg);
    }
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 10px rgba(255, 87, 34, 0.2);
    }
    to {
        text-shadow: 0 0 15px rgba(0, 136, 204, 0.3);
    }
}

@keyframes count-pulse {
    0% {
        transform: translateZ(5px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateZ(5px) scale(1.1);
    }
    100% {
        transform: translateZ(5px) scale(1);
        opacity: 1;
    }
}

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

/* Services Section */
.services {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    z-index: var(--z-base);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Entferne bestehende Hintergründe */
    background-image: none;
    z-index: -1;
}

/* Neue Struktur für Services-Sektion */
.service-category-section {
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.service-category-section:last-of-type {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.category-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: var(--z-above);
}

.services-row:last-child {
    margin-bottom: 0;
}

.services-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(to right, rgba(255, 87, 34, 0.05), rgba(0, 136, 204, 0.05));
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 500;
}

/* Verbesserte Animation für die Leistungs-Karten */
.service-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: var(--z-above);
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
                0 0 30px rgba(255, 87, 34, 0.15);
    border-color: rgba(255, 87, 34, 0.3);
    background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.97) 0%, 
                rgba(248, 248, 255, 0.97) 100%);
}

.card-3d-effect {
    padding: 2.5rem;
    height: 100%;
    transform-style: preserve-3d;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover .card-3d-effect {
    transform: translateZ(20px) rotateX(2deg);
}

.service-card .card-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.4) 25%, 
        rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover .card-shine {
    opacity: 1;
    animation: shine 2s ease infinite;
}

.icon-container {
    width: 90px;
    height: 90px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(0, 136, 204, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: all 0.5s ease;
    position: relative;
}

.icon-container::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05), rgba(0, 136, 204, 0.05));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.service-card:hover .icon-container::after {
    opacity: 1;
    transform: scale(1.1);
}

.service-card:hover .icon-container {
    background: linear-gradient(135deg, 
                rgba(255, 87, 34, 0.2), 
                rgba(0, 136, 204, 0.2));
    transform: scale(1.1) translateZ(10px);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.15);
}

.icon-container img {
    width: 45px;
    height: 45px;
    transition: all var(--transition-normal);
}

.service-card:hover .icon-container img {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h3, 
.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.service-card:hover h3,
.service-card:hover h4 {
    color: var(--primary);
    transform: translateZ(15px);
    text-shadow: 0 2px 10px rgba(255, 87, 34, 0.1);
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    transition: all 0.4s ease;
}

.service-card:hover p {
    color: var(--dark);
    transform: translateZ(10px);
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.service-card:hover .service-price {
    transform: translateZ(15px) scale(1.05);
    color: #ff5722;
    text-shadow: 0 2px 10px rgba(255, 87, 34, 0.2);
}

.service-price::before {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.service-card:hover .service-price::before {
    width: 100%;
    background: linear-gradient(90deg, #ff5722, #ff9800);
}

.btn-service {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(0, 136, 204, 0.1));
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 30px;
    transition: all var(--transition-normal);
    z-index: -1;
    opacity: 0;
}

.service-card:hover .btn-service {
    transform: translateY(-3px) translateZ(15px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
    font-weight: 600;
}

.btn-service:hover {
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.3);
}

.btn-service:hover::before {
    opacity: 1;
    animation: gradient-shift 3s ease infinite;
}

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

@keyframes shine {
    0% {
        background-position: -200% 0;
        opacity: 0.5;
    }
    100% {
        background-position: 200% 0;
        opacity: 0;
    }
}

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

@media (max-width: 768px) {
    .services-row {
        grid-template-columns: 1fr;
    }
    
    .service-category-section {
        margin-bottom: 3rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
}

/* ÜBER UNS SEKTION NEU GESTALTET */
.about-us {
    position: relative;
    z-index: var(--z-base);
    padding: var(--spacing-xl) 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    right: -300px;
    top: -300px;
    width: 600px;
    height: 600px;
    background: transparent; /* Entferne bestehende Hintergründe */
    background-image: none;
    border-radius: 50%;
    z-index: -1;
}

.about-us::after {
    content: '';
    position: absolute;
    left: -300px;
    bottom: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.05) 0%, rgba(0, 136, 204, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.about-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: var(--z-above);
}

.about-content {
    position: relative;
    z-index: var(--z-above);
}

.left-aligned {
    text-align: left;
}

.left-aligned .section-divider {
    margin-left: 0;
    margin-right: auto;
}

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

.stats-container {
    display: flex;
    gap: 3.5rem;
    margin-top: 3rem;
    z-index: var(--z-above);
}

.stat-item {
    position: relative;
    z-index: var(--z-above);
    text-align: center;
}

.stat-progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    width: 120px;
    height: 120px;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring-circle {
    stroke: var(--gradient-orange-start);
    fill: transparent;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    position: relative;
}

.stat-label {
    text-align: center;
    font-size: 1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.about-image {
    position: relative;
    z-index: var(--z-above);
    border-radius: var(--border-radius-lg);
    overflow: visible;
}

.about-image-main {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.5s ease;
    height: 100%;
}

.about-image-main:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.about-image-overlay {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 8px solid white;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-image-overlay:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Platzhalterbilder für die About-Section */
.about-image-placeholder {
    position: absolute;
    width: 200px;
    height: 150px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border: 6px solid white;
    transform: perspective(1000px) rotateY(-5deg);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    opacity: 0;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-placeholder:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.about-image-placeholder.placeholder-1 {
    top: 10%;
    left: -20%;
    transform: rotate(-5deg);
}

.about-image-placeholder.placeholder-2 {
    top: 45%;
    right: -15%;
    transform: rotate(3deg);
}

.about-image-placeholder.placeholder-3 {
    bottom: -10%;
    left: 20%;
    transform: rotate(-8deg);
}

/* CTA SECTION NEU GESTALTET */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 136, 204, 0.1) 0%,
        rgba(255, 107, 0, 0.05) 50%,
        rgba(0, 136, 204, 0.08) 100%);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 136, 204, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 0, 0.03), transparent, rgba(0, 136, 204, 0.03), transparent);
    animation: rotate-background 20s linear infinite;
    z-index: 1;
}

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

.cta-content {
    position: relative;
    text-align: center;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.05), rgba(0, 136, 204, 0.05));
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-content:hover::before {
    opacity: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%, 
        var(--primary-orange) 50%, 
        var(--primary-blue) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: gradient-flow 3s ease-in-out infinite;
    line-height: 1.2;
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ultra-moderne CTA-Center Section */
.cta-center {
    position: relative;
    text-align: center;
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at center, rgba(0, 136, 204, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(15px);
    border-radius: 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.cta-center::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-orange), 
        var(--primary-blue), 
        var(--primary-orange));
    background-size: 400% 400%;
    border-radius: 2rem;
    z-index: -1;
    animation: gradient-border 4s ease-in-out infinite;
}

.cta-center::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(0, 136, 204, 0.1) 0%, transparent 40%);
    z-index: 1;
}

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

.cta-center > * {
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.cta-center p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, 
        var(--text-dark) 0%, 
        var(--primary-blue) 50%, 
        var(--text-dark) 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 4s ease-in-out infinite;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Premium Button Styles */
.btn-glow {
    position: relative;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c00 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(255, 107, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-glow::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: left 0.6s ease;
}

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

.btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 107, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-glow:active {
    transform: translateY(-1px) scale(1.02);
}

/* Floating Animation Effects */
@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float-glow {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
    }
}

.cta-content,
.cta-center {
    animation: float-glow 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-center {
        margin: 2rem 1rem;
        padding: 2.5rem 1.5rem;
    }
    
    .cta-center p {
        font-size: 1.1rem;
    }
}

/* Premium Hover Effects */
.cta-section:hover .cta-content {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-center:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Footer Fixierung */
.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    position: relative;
    z-index: var(--z-above);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.link-group h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group ul li {
    margin-bottom: var(--spacing-sm);
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.link-group a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* KONTAKT SEKTION NEU GESTALTET */
.contact-section {
    position: relative;
    z-index: var(--z-base);
    padding: var(--spacing-xxl) 0;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(245, 245, 245, 0.05));
    z-index: var(--z-background);
}

/* CONTACT SECTION - DESKTOP FIRST RESPONSIVE LAYOUT */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Desktop: Contact Info links, Formular rechts (größer) */
    gap: 4rem;
    position: relative;
    z-index: var(--z-above);
    margin-bottom: 5rem;
}

/* Contact Info - Links positioniert */
.contact-info {
    position: relative;
    z-index: var(--z-above);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    order: 1; /* Explizit links */
}

/* Contact Form - Rechts positioniert */
.contact-form {
    position: relative;
    z-index: var(--z-above);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    order: 2; /* Explizit rechts */
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item .icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.info-item .info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.info-item .info p, 
.info-item .info a {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.info-item .info a:hover {
    color: var(--primary-orange);
}

.business-hours {
    margin-top: 3rem;
}

.business-hours h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--dark);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.hours-item .day {
    font-weight: 600;
    color: var(--dark);
}

.hours-item .time {
    color: var(--medium-gray);
}

/* Kontaktformular */
.contact-form {
    position: relative;
    z-index: var(--z-above);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.1);
    outline: none;
    transform: translateY(-2px);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 0.3rem;
}

.form-group.checkbox label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Map Container */
.map-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.map-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.map-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.map-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.map-iframe {
    height: 100%;
    width: 100%;
}

.map-iframe iframe {
    border-radius: 20px;
}

/* FOOTER NEU GESTALTET */
.footer {
    position: relative;
    z-index: var(--z-base);
    background-color: var(--dark);
    color: var(--white);
    padding-top: 0;
    overflow: hidden;
    margin-top: var(--spacing-lg);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    margin-bottom: 4rem;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: var(--z-above);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.link-group ul {
    list-style: none;
    padding: 0;
}

.link-group ul li {
    margin-bottom: 0.75rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
    font-size: 1rem;
    display: inline-block;
    position: relative;
}

.link-group a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-orange);
}

.link-group a:hover::after {
    width: 100%;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
} 

/* Neuer Header mit modernem Glasmorphism-Stil */
.header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    transition: all var(--transition-normal);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    height: var(--header-height);
    position: relative;
    z-index: var(--z-fixed);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-links li {
    margin: 0 0.1rem;
}

.nav-item {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    transition: all var(--transition-normal);
}

.nav-item:hover, .nav-item.active {
    color: var(--primary-orange);
    background: rgba(255, 87, 34, 0.1);
}

.nav-btn {
    margin-left: 0.75rem;
    padding: 0.6rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 600;
    color: var(--white) !important;
    background: var(--gradient-primary);
    border-radius: 100px;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
    transition: all var(--transition-normal);
    border: none;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.4);
}

.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--primary-orange);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--primary-orange);
}

.header.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.9);
}

/* Verbesserte Scrolling-Performance */
body {
    will-change: auto;
    overflow-x: hidden;
    position: relative;
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    color: var(--dark-gray);
    background-color: transparent; /* Geändert von var(--white) zu transparent */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: var(--font-size-base);
}

/* Optimize rendering */
.hero, .services, .about-us, .cta-section, .contact-section, .footer {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-content, .hero-visual, .hero-image-container, .floating-element, .stat-badge {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Hero Section Fix */
.hero h1, .hero p, .hero-buttons, .hero-stats, .rotating-text, .hero-visual {
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-value, .stat-label, .stat-icon {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Verbesserte Animations-Performance */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
} 

.hero-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: var(--z-above);
}


.static-title {
    display: block;
    margin-bottom: 0.2em;
}


/* Verbesserte Animation für flüssigeres Scrollen */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Optimierungen für bessere Performance */
.hero, .services, .about-us, .cta-section, .contact-section, .footer {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

body.is-scrolling .hero-3d-elements,
body.is-scrolling .floating-element,
body.is-scrolling .gradient-orb {
    transition: none !important;
    animation-play-state: paused !important;
}

/* Verbesserte Sichtbarkeit kritischer Elemente */
.hero h1, 
.hero-description, 
.hero-buttons, 
.hero-stats, 
.rotating-text, 
.stat-badge, 
.hero-visual, 
.hero-image,
.hero-image img {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Verbesserte Styles für Statistiken */
.stat-badge {
    position: relative;
    z-index: 20;
}

.stat-value {
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
} 

/* Hero-Section: Verbesserte Styles für modernes Design 2024 */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--header-height) + 2rem) 0 2rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 240, 0.8) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 80%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(255, 87, 34, 0.15), rgba(255, 87, 34, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.8;
    animation: pulse-bg 12s ease-in-out infinite alternate;
    transform: translateZ(-10px) rotate(-10deg);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(0, 136, 204, 0.15), rgba(0, 136, 204, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.8;
    animation: pulse-bg 15s ease-in-out infinite alternate-reverse;
    transform: translateZ(-5px) rotate(15deg);
    z-index: 0;
}

/* Verbesserte Styles für den linken Content-Bereich */
.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    position: relative;
    z-index: 5;
    padding-right: 1rem;
    transform: translateZ(0);
    transform-style: preserve-3d;
    animation: content-intro 1.5s var(--easing-bounce) forwards;
}

/* Rechter Visual-Bereich mit größerem Bild */
.hero-visual {
    flex: 1.2;
    min-width: 340px;
    position: relative;
    z-index: 5;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 1200px;
}

/* Größeres, moderneres Bild-Container */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.18),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 3px rgba(255, 255, 255, 0.6);
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) scale(1.02);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 12px solid white;
    background: white;
    z-index: 5;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 3;
    border-radius: 16px;
    backdrop-filter: blur(3px);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease-out;
    filter: contrast(1.05) brightness(1.02) saturate(1.1);
    transform: scale(1.04);
}

.hero-image-container:hover {
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) scale(1.04);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.6);
}

.hero-image-container:hover img {
    transform: scale(1.02);
}

/* Modernere Styles für den Titel */
#hero-title {
    margin-bottom: 1.8rem;
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
    width: 100%;
    text-align: center;
}

.static-title {
    display: block;
    margin-bottom: 0.15em;
}

#rotating-word {
    position: relative;
    display: inline-block;
    color: var(--primary-orange);
    transition: opacity 0.7s ease, transform 0.7s ease;
    font-size: 1.1em;
}

#rotating-word::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: -8px;
    left: 0;
    background: var(--gradient-premium);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
    opacity: 0.9;
}

/* Verbesserte Schriftgröße für die Beschreibung */
.hero-description {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
    max-width: 95%;
}

/* Modernere Buttons */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    opacity: 1 !important;
    visibility: visible !important;
}


.btn-secondary {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 87, 34, 0.2);
}

/* Verbesserte Stat-Badges */

.stat-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.6rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-badge:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--gradient-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.stat-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.2rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Verbesserte 3D-Elemente */
.hero-3d-elements {
    position: absolute;
    inset: 0;
    z-index: 6;
    transform-style: preserve-3d;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08);
    transform-style: preserve-3d;
    border: 2px solid rgba(255, 255, 255, 0.7);
    z-index: 10;
}

.element-1 {
    top: -30px;
    left: -40px;
    animation: float-element 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: -30px;
    animation: float-element 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.7s;
}

.element-3 {
    bottom: 5%;
    left: 10%;
    animation: float-element 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1.4s;
}

/* Rechte Floating-Elemente */
.element-4 {
    top: 10%;
    right: -20px;
    animation: float-element 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.3s;
}

.element-5 {
    top: 40%;
    right: 15%;
    animation: float-element 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1.1s;
}

.element-6 {
    bottom: 15%;
    right: 5%;
    animation: float-element 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1.8s;
}

/* Verbesserte Animationen für die schwebenden Elemente */
@keyframes float-element {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes float-element-2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(-5deg);
    }
}

@keyframes float-element-3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

/* Verbesserter Scroll-Indikator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    z-index: 10;
    letter-spacing: 1px;
}

.logo-title-flex .for-text {
    filter: blur(0) !important;
    -webkit-filter: blur(0) !important;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: none !important;
    animation: none !important;
}

/* Optimierte Hero-Animationen */
@keyframes float-element {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes pulse-effect {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes smooth-fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kundenrezensionen Sektion */
.reviews-section {
    position: relative;
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, rgba(0, 136, 204, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at 30% 20%, rgba(255, 107, 0, 0.03) 0%, transparent 50%);
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 136, 204, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.03) 0%, transparent 40%);
    z-index: 1;
}

/* ROBUSTES CAROUSEL CONTAINER SYSTEM */
.reviews-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 10;
}

.reviews-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float-orb 8s ease-in-out infinite;
}

.floating-orb.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-orb.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.15) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: -3s;
}

.floating-orb.orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    bottom: 20%;
    left: 50%;
    animation-delay: -6s;
}

@keyframes float-orb {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* CAROUSEL WRAPPER - ROBUSTE NAVIGATION */
.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.reviews-carousel {
    display: flex !important;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    gap: 2rem;
    padding: 1rem 0;
}

/* PREMIUM REVIEW CARDS */
.review-card.premium-card {
    min-width: 400px;
    max-width: 400px;
    flex-shrink: 0;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at top left, rgba(0, 136, 204, 0.05) 0%, transparent 50%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.review-card.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 0, 0.03) 0%, 
        rgba(0, 136, 204, 0.03) 100%);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.review-card.premium-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 107, 0, 0.1) 50%, 
        transparent 70%);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.review-card.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(255, 107, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.review-card.premium-card:hover .card-glow {
    opacity: 1;
}

.special-badge {
    top: 3px !important;
}




/* REVIEW CONTENT STYLING */
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.review-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-blue));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.review-card.premium-card:hover .avatar-glow {
    opacity: 0.7;
    animation: avatar-pulse 2s ease-in-out infinite;
}

@keyframes avatar-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.review-card.premium-card:hover .review-avatar img {
    transform: scale(1.1);
}

.review-meta {
    flex: 1;
}

.reviewer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.review-date i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.premium-stars {
    font-size: 1.1rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: stars-twinkle 2s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes stars-twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.rating-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(0, 136, 204, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
}

.review-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    font-style: italic;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-orange);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
    font-family: serif;
}

/* PROJECT TAGS */
.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.project-tag i {
    font-size: 1rem;
}

.heizung-tag {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 87, 34, 0.15) 100%);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.sanitaer-tag {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.15) 0%, rgba(30, 144, 255, 0.15) 100%);
    color: var(--primary-blue);
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.klima-tag {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.15) 0%, rgba(0, 255, 255, 0.15) 100%);
    color: #20b2aa;
    border: 1px solid rgba(32, 178, 170, 0.3);
}

.notdienst-tag {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(255, 69, 58, 0.15) 100%);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.review-card.premium-card:hover .project-tag {
    transform: scale(1.05);
}

/* ULTRA-MODERNE CAROUSEL CONTROLS */
.carousel-controls.premium-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.carousel-arrow.premium-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at center, rgba(0, 136, 204, 0.1) 0%, transparent 70%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-arrow.premium-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.carousel-arrow.premium-arrow:hover::before {
    opacity: 0.1;
}

.arrow-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-blue));
    border-radius: 50%;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.carousel-arrow.premium-arrow:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.carousel-arrow.premium-arrow:hover .arrow-glow {
    opacity: 0.6;
}

.arrow-icon {
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.carousel-arrow.premium-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.carousel-arrow.premium-arrow:hover svg {
    color: var(--primary-orange);
    transform: scale(1.2);
}

.carousel-arrow.premium-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

/* PREMIUM DOTS */
.carousel-dots.premium-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 136, 204, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-blue));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--primary-orange);
    transform: scale(1.4);
}

.carousel-dot.active::before,
.carousel-dot:hover::before {
    opacity: 0.3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .review-card.premium-card {
        min-width: 350px;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .reviews-carousel {
        gap: 1rem;
    }
    
    .review-card.premium-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .carousel-arrow.premium-arrow {
        width: 50px;
        height: 50px;
    }
    
    .carousel-arrow.premium-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* PREMIUM FOOTER */
.reviews-footer.premium-footer {
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.stats-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Premium Rating Circle */
.average-rating.premium-rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), #FF8C00);
    border-radius: 50%;
    box-shadow: 
        0 8px 24px rgba(255, 107, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rating-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-45deg);
    animation: shine-sweep 3s ease-in-out infinite;
}

@keyframes shine-sweep {
    0%, 100% { transform: rotate(-45deg) translateX(-100%); }
    50% { transform: rotate(-45deg) translateX(100%); }
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rating-circle .rating-stars {
    font-size: 0.7rem;
    margin-top: 0.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.rating-count {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.rating-source {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Review CTA Button */
.review-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-orange), #FF8C00);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.review-cta:hover::before {
    left: 100%;
}

.review-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
    animation: star-twinkle 1.5s ease-in-out infinite;
}

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

/* Premium Testimonial */
.testimonial-quote.premium-testimonial {
    position: relative;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.quote-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 136, 204, 0.03) 0%,
        rgba(255, 107, 0, 0.02) 50%,
        rgba(0, 200, 150, 0.03) 100%);
    pointer-events: none;
}

.premium-testimonial blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
        text-align: center;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Times New Roman', serif;
    z-index: 0;
}

.premium-testimonial blockquote p {
        font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.premium-testimonial cite {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    font-style: normal;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .stats-container {
        gap: 2rem;
    }
    
    .trust-indicators {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .reviews-footer.premium-footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .rating-circle {
        width: 70px;
        height: 70px;
    }
    
    .rating-number {
        font-size: 1.3rem;
    }
    
    .premium-testimonial {
        padding: 2rem 1.5rem;
    }
    
    .premium-testimonial blockquote p {
        font-size: 1.1rem;
    }
}

/* RESPONSIVE DESIGN VERBESSERUNGEN */

/* Desktop First - Base Styles bereits vorhanden */

/* Tablets & kleinere Laptops */
@media (max-width: 1200px) {
    :root {
        --container-padding: 1.25rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }
    
    .container {
        padding: 0 var(--container-padding);
    }
    
    /* Hero Anpassungen */
    .hero-container {
        grid-template-columns: 1fr;
    gap: 2rem;
        text-align: center;
    }
    
    #hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .logo-title-flex {
        justify-content: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Services Anpassungen */
    .services-row {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .service-card {
    margin: 0 auto;
        max-width: 350px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
        --container-padding: 1rem;
        --spacing-lg: 1.25rem;
        --spacing-xl: 2rem;
        --spacing-xxl: 2.5rem;
    }
    
    /* Header responsive */
    .header {
        padding: 0.75rem 0;
    }
    
    .navbar {
    justify-content: space-between;
    }
    
    .logo img {
        height: 50px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
    align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-item {
    font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-item:hover {
        background: var(--gradient-primary);
        color: white;
    }
    
    .nav-btn {
        margin-top: 1rem;
    }
    
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--dark);
        margin: 3px 0;
        transition: 0.3s ease;
        border-radius: 2px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero responsive */
    .hero {
        padding: calc(var(--header-height) + 2rem) 0 3rem;
        min-height: auto;
    }
    
    .hero-container {
    gap: 2rem;
    }
    
    #hero-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    }
    
    .logo-title-flex img {
        width: 150px;
        height: auto;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-badge {
    width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Floating elements anpassen */
    .hero-3d-elements {
        display: none; /* Auf Tablet ausblenden für bessere Performance */
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Services responsive */
    .services {
        padding: 3rem 0;
    }
    
    .service-category-section {
        margin-bottom: 3rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .services-row {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.25rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    /* About section responsive */
    .about-us {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    /* CTA section responsive */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .cta-content h2 {
    font-size: 2rem;
    }
    
    /* Reviews responsive */
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-carousel {
        gap: 1rem;
    }
    
    .review-card.premium-card {
        min-width: 280px;
        padding: 1.5rem;
    }
}

/* Mobile Landscape & kleine Tablets */
@media (max-width: 768px) {
    :root {
        --header-height: 65px;
        --container-padding: 1rem;
        --spacing-sm: 0.5rem;
        --spacing-md: 0.75rem;
        --spacing-lg: 1rem;
        --spacing-xl: 1.5rem;
        --spacing-xxl: 2rem;
    }
    
    /* Header mobile */
    .header {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-links {
    width: 100%;
        right: -100%;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Hero mobile */
    .hero {
        padding: calc(var(--header-height) + 1.5rem) 0 2rem;
    }
    
    #hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .logo-title-flex {
    flex-direction: column;
        gap: 0.5rem;
    align-items: center;
    }
    
    .logo-title-flex img {
        width: 120px;
        height: auto;
    }
    
    .for-text {
        font-size: 1rem;
    }
    
    .rotating-text {
    font-size: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: none;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .stat-badge {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hero-image-container {
        max-width: 320px;
        margin: 1.5rem auto 0;
    }
    
    /* Services mobile */
    .services {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .service-category-section {
        margin-bottom: 2.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .category-description {
        font-size: 0.9rem;
    }
    
    .services-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.25rem;
    margin: 0 auto;
        max-width: 100%;
    }
    
    .service-card h4 {
        font-size: 1.15rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-price {
        font-size: 1.1rem;
    }
    
    /* About section mobile */
    .about-us {
        padding: 2.5rem 0;
    }
    
    .about-text {
        margin-bottom: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
    text-align: center;
        padding: 1rem;
    }
    
    .about-image {
    margin-top: 2rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 2.5rem 0;
    }
    
    .cta-content {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* Reviews mobile */
    .reviews-section {
        padding: 2.5rem 0;
    }
    
    .reviews-carousel {
        padding: 0 1rem;
    }
    
    .review-card.premium-card {
        min-width: 260px;
        padding: 1.25rem;
    }
    
    .carousel-arrow.premium-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow.premium-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rating-circle {
        width: 80px;
        height: 80px;
    }
    
    .rating-number {
        font-size: 1.5rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    text-align: center;
}

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    :root {
        --container-padding: 0.75rem;
        --spacing-xs: 0.25rem;
        --spacing-sm: 0.5rem;
        --spacing-md: 0.75rem;
        --spacing-lg: 1rem;
        --spacing-xl: 1.25rem;
        --spacing-xxl: 1.5rem;
    }
    
    .container {
        padding: 0 var(--container-padding);
    }
    
    /* Hero extra small */
    #hero-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 5vw, 1.3rem);
    }
    
    .logo-title-flex img {
        width: 100px;
        height: auto;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-image-container {
        max-width: 280px;
    }
    
    /* Services extra small */
    .section-title {
        font-size: 1.6rem;
    }
    
    .category-title {
    font-size: 1.3rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h4 {
    font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Footer extra small */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .link-group h4 {
        font-size: 1.1rem;
    }
    
    .link-group a {
        font-size: 0.9rem;
    }
}

/* Landscape orientation optimizations */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: calc(var(--header-height) + 1rem) 0 1rem;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    align-items: center;
    }
    
    #hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
    flex-direction: row;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
    margin-top: 1rem;
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat-badge {
        padding: 0.75rem;
        width: auto;
        min-width: 120px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Print styles */
@media print {
    .header, .hero-3d-elements, .floating-element, .scroll-indicator, .back-to-top, .menu-toggle {
        display: none !important;
    }
    
    .hero, .services, .about-us, .cta-section {
        page-break-inside: avoid;
        padding: 1rem 0;
    }
    
    .service-card, .review-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .gradient-text {
        color: var(--dark) !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
    }
}

/* High contrast and accessibility */
@media (prefers-contrast: high) {
    :root {
        --primary-orange: #e65100;
        --primary-blue: #0066cc;
        --dark: #000000;
        --white: #ffffff;
    }
    
    .service-card {
        border: 2px solid var(--dark);
    }
    
    .btn-primary, .btn-secondary {
        border: 2px solid var(--dark);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-3d-elements, .floating-element {
        animation: none !important;
    }
    
    .service-card:hover {
        transform: none !important;
    }
    
    .btn-primary::before, .btn-secondary::before {
        transition: none !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover {
        transform: none;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
        transform: none;
    }
    
    .stat-badge:hover {
        transform: none;
    }
    
    /* Größere Touch-Targets */
    .nav-item {
        min-height: 44px;
    display: flex;
    align-items: center;
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        min-height: 48px;
    }
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--primary-orange);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--primary-orange);
}

/* Body overlay when menu is open */
.menu-open {
    overflow: hidden;
}

.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Contact section mobile */
.contact-section {
    padding: 2.5rem 0;
}

.contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    order: 2;
}

.contact-form {
    order: 1;
}

.info-item {
    padding: 1rem;
    margin-bottom: 1rem;
}

.info-item .icon {
    width: 40px;
    height: 40px;
}

.info-item .info h3 {
        font-size: 1.1rem;
    }
    
.info-item .info p {
    font-size: 0.9rem;
}

.business-hours {
    margin-top: 1.5rem;
}

.business-hours h3 {
        font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.5rem 0;
}

.hours-item .day {
    font-size: 0.9rem;
}

.hours-item .time {
    font-size: 0.85rem;
}

.contact-form {
    padding: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
}

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

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

.form-group.checkbox label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-container {
    margin-top: 2rem;
}

.map-card {
    padding: 1.5rem;
}

.map-card h3 {
    font-size: 1.2rem;
}

.map-card p {
    font-size: 0.9rem;
}

.map-iframe {
    height: 300px;
}

/* Hide scroll indicator on mobile */
.scroll-indicator {
    display: none;
}

/* Charts responsive fixes */
.chart-container {
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.chart-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
}

.chart-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.chart-value {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.chart-bar {
    height: 8px;
}

.chart-bar-fill {
    border-radius: 4px;
}

/* Hide scroll indicator on mobile devices */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
    }
}

/* WICHTIGE MOBILE MENU FIXES - Diese Regeln überschreiben alle anderen */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    .scroll-indicator {
        display: none !important;
        visibility: hidden !important;
    }
}

/* ENDGÜLTIGE MOBILE MENU LÖSUNG - ÜBERSCHREIBT ALLES */
.navbar .menu-toggle,
.header .navbar .menu-toggle,
.header .container .navbar .menu-toggle {
    display: none !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 30px !important;
    height: 21px !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    padding: 5px !important;
    position: relative !important;
    z-index: 1001 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.navbar .menu-toggle span,
.header .navbar .menu-toggle span,
.header .container .navbar .menu-toggle span {
    display: block !important;
    height: 3px !important;
    width: 100% !important;
    background-color: #333333 !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.navbar .menu-toggle span:nth-child(1) {
    margin-bottom: 6px !important;
}

.navbar .menu-toggle span:nth-child(2) {
    margin-bottom: 6px !important;
}

.navbar .menu-toggle span:nth-child(3) {
    margin-bottom: 0 !important;
}

.navbar .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px) !important;
    background: #ff5722 !important;
}

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

.navbar .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px) !important;
    background: #ff5722 !important;
}

/* MOBILE RESPONSIVE - MENU TOGGLE ANZEIGEN */
@media screen and (max-width: 1024px) {
    .navbar .menu-toggle,
    .header .navbar .menu-toggle,
    .header .container .navbar .menu-toggle {
        display: flex !important;
    }
    
    .scroll-indicator {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .navbar .menu-toggle,
    .header .navbar .menu-toggle,
    .header .container .navbar .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .scroll-indicator {
        display: none !important;
        visibility: hidden !important;
    }
}

@media screen and (max-width: 480px) {
    .navbar .menu-toggle,
    .header .navbar .menu-toggle,
    .header .container .navbar .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* KOMPLETT NEUES MODERNES MOBILE MENU DESIGN */

/* Header für Mobile anpassen */
@media (max-width: 1024px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
    position: relative;
    }
}

/* ULTRA-MODERNER HAMBURGER BUTTON */
.mobile-menu-btn {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1002;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.mobile-menu-btn:hover::before {
    opacity: 0.1;
}

.mobile-menu-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Hamburger Lines */
.hamburger-lines {
    position: relative;
    width: 24px;
    height: 18px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Active State - X Animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: linear-gradient(90deg, var(--primary-orange), #ff8c00);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: linear-gradient(90deg, var(--primary-orange), #ff8c00);
}

.mobile-menu-btn.active {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.1));
    border-color: rgba(255, 87, 34, 0.4);
    transform: translateY(-2px) scale(1.05) rotate(180deg);
}

/* MODERNES MOBILE NAV MENU */
.nav-links.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
        width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1001;
    overflow-y: auto;
}

.nav-links.mobile-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 136, 204, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.nav-links.mobile-nav.active {
    right: 0;
}

/* Mobile Nav Items */
.nav-links.mobile-nav .nav-item {
    display: block;
    width: 100%;
    max-width: 250px;
        text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    padding: 1rem 2rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-links.mobile-nav .nav-item::before {
    content: '';
    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.5s ease;
}

.nav-links.mobile-nav .nav-item:hover::before {
    left: 100%;
}

.nav-links.mobile-nav .nav-item:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(255, 87, 34, 0.1), 
        rgba(0, 136, 204, 0.1));
    border-color: rgba(255, 87, 34, 0.3);
    color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.2);
}

/* Special styling for Contact Button */
.nav-links.mobile-nav .nav-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    color: white !important;
    font-weight: 700;
    margin-top: 1rem;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

.nav-links.mobile-nav .nav-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.4);
    background: linear-gradient(135deg, #ff8c00, var(--primary-blue));
}

/* Close Button */
.mobile-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1003;
}

.mobile-close-btn:hover {
    background: rgba(255, 87, 34, 0.1);
    border-color: rgba(255, 87, 34, 0.3);
    transform: scale(1.1);
}

.mobile-close-btn svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
}

/* Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links:not(.mobile-nav) {
        display: none;
    }
    
    /* Hide scroll indicator */
    .scroll-indicator {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .nav-links.mobile-nav {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-menu-btn {
        width: 45px;
        height: 45px;
    }
    
    .hamburger-lines {
        width: 20px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .nav-links.mobile-nav {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .nav-links.mobile-nav .nav-item {
        font-size: 1.1rem;
        padding: 0.875rem 1.5rem;
        max-width: 100%;
    }
}

/* Animation für Menu Items */
.nav-links.mobile-nav.active .nav-item {
    animation: slideInRight 0.5s ease forwards;
}

.nav-links.mobile-nav.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-links.mobile-nav.active .nav-item:nth-child(2) { animation-delay: 0.15s; }
.nav-links.mobile-nav.active .nav-item:nth-child(3) { animation-delay: 0.2s; }
.nav-links.mobile-nav.active .nav-item:nth-child(4) { animation-delay: 0.25s; }
.nav-links.mobile-nav.active .nav-item:nth-child(5) { animation-delay: 0.3s; }
.nav-links.mobile-nav.active .nav-item:nth-child(6) { animation-delay: 0.35s; }
.nav-links.mobile-nav.active .nav-item:nth-child(7) { animation-delay: 0.4s; }
.nav-links.mobile-nav.active .nav-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tablet Layout (1024px und kleiner) */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr 1fr; /* Gleiche Breite auf Tablet */
        gap: 3rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2.5rem;
    }
}

/* Mobile Layout (768px und kleiner) - Gestapelt */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr; /* Eine Spalte auf Mobile */
        gap: 2rem;
    }
    
    .contact-info {
        order: 1; /* Contact Info oben auf Mobile */
        padding: 2rem;
    }
    
    .contact-form {
        order: 2; /* Formular unten auf Mobile */
        padding: 2rem;
    }
}

/* ========================================
   FINAL CONTACT SECTION LAYOUT - ÜBERSCHREIBT ALLES
   ======================================== */

/* Desktop Layout - 2 Spalten: Info links, Form rechts */
.contact-container {
    display: grid !important;
    grid-template-columns: 1fr 1.5fr !important;
    gap: 4rem !important;
    position: relative !important;
    z-index: var(--z-above) !important;
    margin-bottom: 5rem !important;
}

.contact-info {
    position: relative !important;
    z-index: var(--z-above) !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    padding: 3rem !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    order: 1 !important; /* Links */
}

.contact-form {
    position: relative !important;
    z-index: var(--z-above) !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    padding: 3rem !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    order: 2 !important; /* Rechts */
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet (1024px und kleiner) */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
    }
    
    .contact-info,
    .contact-form {
        padding: 2.5rem !important;
    }
}

/* Mobile (768px und kleiner) - Gestapelt */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr !important; /* Eine Spalte */
        gap: 2rem !important;
    }
    
    .contact-info {
        order: 1 !important; /* Info oben */
        padding: 2rem !important;
    }
    
    .contact-form {
        order: 2 !important; /* Form unten */
        padding: 2rem !important;
    }
}

/* Extra kleine Bildschirme (480px und kleiner) */
@media (max-width: 480px) {
    .contact-container {
        gap: 1.5rem !important;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem !important;
    }
}

/* ========================================
   SERVICE CARDS WITH IMAGES - NEUE VERSION
   ======================================== */

/* Service Card Image Container - Ersetzt icon-container */
.service-card .image-container {
    width: 100% !important;
    height: 180px !important;
    border-radius: 15px !important;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05), rgba(0, 136, 204, 0.05)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.5s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.service-card .image-container::after {
    content: '' !important;
    position: absolute !important;
    top: -5px !important;
    left: -5px !important;
    right: -5px !important;
    bottom: -5px !important;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(0, 136, 204, 0.1)) !important;
    border-radius: 20px !important;
    z-index: -1 !important;
    opacity: 0 !important;
    transform: scale(0.95) !important;
    transition: all var(--transition-normal) !important;
}

.service-card:hover .image-container::after {
    opacity: 1 !important;
    transform: scale(1.02) !important;
}

.service-card:hover .image-container {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(0, 136, 204, 0.1)) !important;
    transform: scale(1.02) translateZ(10px) !important;
    box-shadow: 0 20px 40px rgba(255, 87, 34, 0.15) !important;
}

.service-card .image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    transition: all var(--transition-normal) !important;
    filter: brightness(1.1) contrast(1.05) !important;
}

.service-card:hover .image-container img {
    transform: scale(1.08) !important;
    filter: brightness(1.2) contrast(1.1) saturate(1.1) !important;
}

/* Fallback für alte icon-container Klasse */
.service-card .icon-container {
    width: 100% !important;
    height: 230px !important;
    border-radius: 15px !important;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05), rgba(0, 136, 204, 0.05)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.5s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.service-card .icon-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    transition: all var(--transition-normal) !important;
    filter: brightness(1.1) contrast(1.05) !important;
}

.service-card:hover .icon-container img {
    transform: scale(1.08) !important;
    filter: brightness(1.2) contrast(1.1) saturate(1.1) !important;
}

/* Mobile Responsive Anpassungen für Bilder */
@media (max-width: 768px) {
    .service-card .image-container,
    .service-card .icon-container {
        height: 160px !important;
        margin-bottom: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .service-card .image-container,
    .service-card .icon-container {
        height: 140px !important;
        margin-bottom: 1rem !important;
    }
}

/* ========================================
   WHATSAPP BUTTON STYLES
   ======================================== */

/* WhatsApp Button Styling */
.whatsapp-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.9rem 1.8rem !important;
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 
    0 5px 15px rgba(37, 211, 102, 0.3),
    0 3px 8px rgba(18, 140, 126, 0.2) !important;
  border: none !important;
  cursor: pointer !important;
}

.whatsapp-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 
    0 8px 25px rgba(37, 211, 102, 0.4),
    0 5px 15px rgba(18, 140, 126, 0.3) !important;
  color: white !important;
}

.whatsapp-btn:active {
  transform: translateY(0) !important;
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 24px !important;
  height: 24px !important;
  fill: currentColor !important;
}

/* reCAPTCHA Response Textarea verstecken */
.g-recaptcha-response {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* Alle reCAPTCHA Textareas verstecken */
textarea[name="g-recaptcha-response"] {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed !important;
  bottom: 2rem !important;
  right: 6rem !important;
  z-index: 1000 !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 8px 25px rgba(37, 211, 102, 0.4),
    0 5px 15px rgba(18, 140, 126, 0.3) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  color: white !important;
}

.whatsapp-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 
    0 12px 35px rgba(37, 211, 102, 0.5),
    0 8px 20px rgba(18, 140, 126, 0.4) !important;
  color: white !important;
}

.whatsapp-float::before {
  content: '' !important;
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  animation: whatsapp-pulse 2s infinite !important;
  z-index: -1 !important;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.whatsapp-float .whatsapp-icon {
  width: 30px !important;
  height: 30px !important;
}

/* WhatsApp Info Item (für Contact Section) */
.whatsapp-info-item {
  background: linear-gradient(135deg, 
    rgba(37, 211, 102, 0.08) 0%, 
    rgba(18, 140, 126, 0.05) 100%) !important;
  border: 1px solid rgba(37, 211, 102, 0.15) !important;
  box-shadow: 
    0 10px 30px rgba(37, 211, 102, 0.1),
    0 5px 15px rgba(18, 140, 126, 0.08) !important;
}

.whatsapp-info-item:hover {
  border-color: rgba(37, 211, 102, 0.25) !important;
  box-shadow: 
    0 20px 40px rgba(37, 211, 102, 0.15),
    0 10px 25px rgba(18, 140, 126, 0.12) !important;
}

.whatsapp-info-item .icon {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    width: 55px !important;
    height: 55px !important;
  }
  
  .whatsapp-float .whatsapp-icon {
    width: 26px !important;
    height: 26px !important;
  }
  
  .whatsapp-btn {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .whatsapp-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 1rem !important;
  }
}

/* Floating E-Mail Button */
.email-float {
  position: fixed !important;
  bottom: 2rem !important;
  right: 12rem !important;
  z-index: 1000 !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #0088CC, #0066AA) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 8px 25px rgba(0, 136, 204, 0.4),
    0 5px 15px rgba(0, 102, 170, 0.3) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  color: white !important;
}

.email-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 
    0 12px 35px rgba(0, 136, 204, 0.5),
    0 8px 20px rgba(0, 102, 170, 0.4) !important;
  color: white !important;
}

.email-float::before {
  content: '' !important;
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #0088CC, #0066AA) !important;
  animation: email-pulse 2s infinite !important;
  z-index: -1 !important;
}

/* Floating Telefon Button */
.phone-float {
  position: fixed !important;
  bottom: 2rem !important;
  right: 18rem !important;
  z-index: 1000 !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #FF6B00, #E55100) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 
    0 8px 25px rgba(255, 107, 0, 0.4),
    0 5px 15px rgba(229, 81, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  color: white !important;
}

.phone-float:hover {
  transform: scale(1.1) !important;
  box-shadow: 
    0 12px 35px rgba(255, 107, 0, 0.5),
    0 8px 20px rgba(229, 81, 0, 0.4) !important;
  color: white !important;
}

.phone-float::before {
  content: '' !important;
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #FF6B00, #E55100) !important;
  animation: phone-pulse 2s infinite !important;
  z-index: -1 !important;
}

/* Icon Styles für floating Buttons */
.email-float .email-icon,
.phone-float .phone-icon {
  width: 30px !important;
  height: 30px !important;
  fill: currentColor !important;
}

/* Pulse Animations */
@keyframes email-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes phone-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Mobile Responsive für floating Buttons */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    width: 55px !important;
    height: 55px !important;
  }
  
  .email-float {
    bottom: 1.5rem !important;
    right: 7.5rem !important; /* Mehr Abstand */
    width: 55px !important;
    height: 55px !important;
  }
  
  .phone-float {
    bottom: 1.5rem !important;
    right: 13.5rem !important; /* Mehr Abstand */
    width: 55px !important;
    height: 55px !important;
  }
  
  .whatsapp-float .whatsapp-icon {
    width: 26px !important;
    height: 26px !important;
  }
  
  .email-float .email-icon,
  .phone-float .phone-icon {
    width: 26px !important;
    height: 26px !important;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1rem !important;
    right: 1rem !important;
    width: 50px !important;
    height: 50px !important;
  }
  
  .email-float {
    bottom: 6rem !important; /* Vertikal anordnen statt horizontal */
    right: 1rem !important;
    width: 50px !important;
    height: 50px !important;
  }
  
  .phone-float {
    bottom: 11rem !important; /* Vertikal anordnen statt horizontal */
    right: 1rem !important;
    width: 50px !important;
    height: 50px !important;
  }
  
  .whatsapp-float .whatsapp-icon {
    width: 24px !important;
    height: 24px !important;
  }
  
  .email-float .email-icon,
  .phone-float .phone-icon {
    width: 24px !important;
    height: 24px !important;
  }
}

/* Floating Buttons für Mobile - Vertikale Anordnung */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 1003;
  }
  
  .email-float {
    bottom: 6rem !important; /* Vertikal gestapelt */
    right: 1.5rem !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 1002;
  }
  
  .phone-float {
    bottom: 10.5rem !important; /* Vertikal gestapelt */
    right: 1.5rem !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 1001;
  }
  
  .whatsapp-float .whatsapp-icon {
    width: 24px !important;
    height: 24px !important;
  }
  
  .email-float .email-icon,
  .phone-float .phone-icon {
    width: 24px !important;
    height: 24px !important;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1.2rem !important;
    right: 1.2rem !important;
    width: 45px !important;
    height: 45px !important;
  }
  
  .email-float {
    bottom: 5.2rem !important; /* Engerer Abstand auf sehr kleinen Bildschirmen */
    right: 1.2rem !important;
    width: 45px !important;
    height: 45px !important;
  }
  
  .phone-float {
    bottom: 9.2rem !important;
    right: 1.2rem !important;
    width: 45px !important;
    height: 45px !important;
  }
  
  .whatsapp-float .whatsapp-icon {
    width: 22px !important;
    height: 22px !important;
  }
  
  .email-float .email-icon,
  .phone-float .phone-icon {
    width: 22px !important;
    height: 22px !important;
  }
}

/* ----------------------------------------
   Responsive Fixes – Über Semitec Section
   ---------------------------------------- */
@media (max-width: 1024px) {
    /* Container stapeln statt nebeneinander */
    .about-us .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Bild nach oben, Chart/Text darunter */
    .about-us .about-image {
        order: -1;            /* zuerst anzeigen */
        max-width: 520px;
        width: 100%;
        margin: 0 auto 2rem;
    }

    /* Inhalt mittig ausrichten */
    .about-us .about-content {
        text-align: center;
    }

    /* Chart innen – volle Breite nutzen */
    .about-us .chart-container {
        width: 100%;
        padding: 0;
        margin: 1rem 0 0;
    }

    .about-us .chart-item {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    /* Feinjustierung der Typografie für sehr kleine Screens */
    .about-us .chart-title {
        font-size: 0.85rem;
    }
    .about-us .chart-value {
        font-size: 1rem;
    }
    .about-us .chart-bar {
        height: 10px;
    }
}

/* ----------------------------------------
   MOBILE SMOOTH SCROLL & ANIMATION FIXES
   ---------------------------------------- */
@media (max-width: 768px) {
    /* Smooth Scrolling für alle Mobile-Geräte erzwingen */
    html, body {
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        overflow-x: hidden;
    }
    
    /* Hardware-Beschleunigung für alle animierbaren Elemente */
    .service-card,
    .chart-container,
    .section-header,
    .about-content,
    .contact-info,
    .contact-form,
    .hero-content,
    .hero-visual,
    .fade-in-left,
    .fade-in-right,
    .fade-in-up,
    .fade-in-down {
        transform: translateZ(0) !important;
        backface-visibility: hidden !important;
        perspective: 1000px !important;
        will-change: transform, opacity !important;
    }
    
    /* Touch-optimierte Interaktionen */
    .service-card {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .service-card:active {
        transform: scale(0.98) translateZ(0) !important;
        transition: transform 0.1s ease !important;
    }
    
    /* Mobile-optimierte Chart-Animationen */
    .about-us .chart-container {
        transform: translateZ(0);
        will-change: transform, opacity;
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    /* Smooth Navigation für Mobile */
    .nav-links a {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Performance-Optimierung: Reduziere komplexe Schatten */
    .service-card {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    }
    
    .chart-container {
        box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    }
}

/* Mobile-spezifische Über-Semitec Optimierungen */
@media (max-width: 768px) {
    .about-us .chart-container {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin: 1.5rem 0;
    }
    
    .about-us .chart-item {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .about-us .chart-item:last-child {
        border-bottom: none;
    }
    
    .about-us .chart-bar {
        height: 6px;
        border-radius: 3px;
    }
    
    .about-us .chart-value {
        font-size: 16px;
        font-weight: 600;
    }
    
    .about-us .chart-title {
        font-size: 13px;
        margin-bottom: 0.5rem;
    }
}