﻿        /* ===== VARIABLEN FÜR FARBEN ===== */
        :root {
            --primary-blue: #003366;
            --secondary-orange: #F47C20;
            --text-white: #FFFFFF;
            --dark-navy: #002244;
            --gradient-brand: linear-gradient(135deg, #003366, #F47C20);
            --shadow-light: 0 4px 12px rgba(244, 124, 32, 0.2);
            --shadow-medium: 0 6px 20px rgba(244, 124, 32, 0.3);
            --shadow-dark: 0 10px 40px rgba(0, 51, 102, 0.4);
        }

        /* ===== RESET & GLOBAL STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-white);
            background-color: var(--primary-blue);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .section {
            padding: 30px 0;
        }

        .section-small {
            padding: 30px 0;
        }

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

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            color: var(--text-white);
            margin-bottom: 20px;
            position: relative;
            display: block;
            text-align: center;
            width: 100%;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-orange);
            border-radius: 2px;
        }

        h3 {
            font-size: 1.8rem;
            color: var(--text-white);
            margin-bottom: 1rem;
            text-align: center;
        }

        p {
            color: var(--text-white);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
            text-align: center;
        }

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

        /* ===== HEADER MIT NAVIGATION ===== */
        .glanzwerk-header {
            background: rgba(0, 51, 102, 0.98);
            padding: 0;
            border-bottom: 1px solid rgba(244, 124, 32, 0.2);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            height: 80px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .glanzwerk-header.scrolled {
            background: rgba(0, 51, 102, 0.98);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

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

        .logo-wrapper {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
            gap: 12px;
        }

        .logo-main {
            height: 45px;
            width: auto;
            filter: brightness(1.2);
            transition: transform 0.3s ease;
            object-fit: contain;
        }

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

        .logo-text {
            height: 27px;
            width: auto;
            filter: brightness(1.2);
            transition: transform 0.3s ease;
            object-fit: contain;
        }

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

        /* Mobile Menu Toggle */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-white);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            transition: color 0.3s ease;
        }

        .mobile-menu-btn:hover {
            color: var(--secondary-orange);
        }

        /* Desktop Navigation */
        .main-navigation {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-item {
            color: var(--text-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            padding: 8px 0;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-orange);
            transition: width 0.3s ease;
        }

        .nav-item:hover {
            color: var(--text-white);
            opacity: 1;
        }

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

        .nav-button {
            background: var(--secondary-orange);
            color: var(--text-white);
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            box-shadow: var(--shadow-light);
            border: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-button:hover {
            background: linear-gradient(135deg, #F47C20, #FF8C00);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            position: relative;
            overflow: hidden;
            background-color: var(--primary-blue);
            width: 100%;
            height: 600px;
            margin-top: 60px;
        }

        .hero-slider {
            width: 100%;
            height: 600px;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-overlay {
            position: absolute;
            bottom: 60px;
            left: 60px;
            max-width: 500px;
            padding: 30px;
            background: rgba(0, 51, 102, 0.7);
            border-radius: 12px;
            backdrop-filter: blur(8px);
            border-left: 4px solid var(--secondary-orange);
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: translateY(20px);
            opacity: 0;
            transition: transform 1s ease, opacity 1s ease;
            transition-delay: 0.5s;
        }

        .slide.active .slide-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.1;
            color: var(--text-white);
            text-align: left;
        }

        .slide-content p {
            color: var(--text-white);
            margin-bottom: 0;
            font-size: 1.2rem;
            line-height: 1.6;
            opacity: 0.95;
            text-align: left;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 20;
            background: rgba(0, 51, 102, 0.7);
            padding: 10px 15px;
            border-radius: 25px;
            backdrop-filter: blur(5px);
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--secondary-orange);
            border-color: var(--text-white);
            transform: scale(1.3);
        }

        /* ===== SCROLL ANIMATIONEN ===== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-card, .package-card, .about-content, .comparison-slider-container {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .feature-card.animated, .package-card.animated, 
        .about-content.animated, .comparison-slider-container.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .feature-card.animated:nth-child(2) { transition-delay: 0.1s; }
        .feature-card.animated:nth-child(3) { transition-delay: 0.2s; }
        .feature-card.animated:nth-child(4) { transition-delay: 0.3s; }
        
        .package-card.animated:nth-child(2) { transition-delay: 0.1s; }
        .package-card.animated:nth-child(3) { transition-delay: 0.2s; }
        .package-card.animated:nth-child(4) { transition-delay: 0.3s; }
        
        .animate-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-left.animated, .animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== FEATURES SECTION ===== */
        .features-section {
            background-color: var(--dark-navy);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            text-align: center;
            padding: 35px 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: rgba(0, 51, 102, 0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* NEU: Slide-Effekt von unten mit Farbwechsel für Feature Cards */
        .feature-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, rgba(244, 124, 32, 0.9), rgba(244, 124, 32, 0.7));
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
            border-radius: 12px;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--secondary-orange);
            transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
            border-radius: 12px;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary-orange);
            box-shadow: 0 20px 40px rgba(244, 124, 32, 0.3);
        }

        .feature-card:hover::before {
            height: 100%;
        }

        .feature-card:hover::after {
            top: 0;
            height: 100%;
        }

        .feature-card:hover .feature-icon,
        .feature-card:hover .feature-title,
        .feature-card:hover p {
            color: var(--text-white);
            position: relative;
            z-index: 2;
        }

        .feature-icon {
            font-size: 2.8rem;
            color: var(--secondary-orange);
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: var(--text-white);
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .feature-card p {
            color: var(--text-white);
            opacity: 0.9;
            position: relative;
            z-index: 2;
            font-size: 1.05rem;
            line-height: 1.5;
            text-align: center;
            margin-bottom: 0.5rem;
            transition: all 0.4s ease;
        }

        /* ===== PRÄZISIONS SECTION ===== */
        .precision-section {
            background-color: var(--primary-blue);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .precision-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }

        .precision-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .precision-text p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            line-height: 1.7;
            opacity: 0.9;
            text-align: left;
        }

        .amber-text {
            color: var(--secondary-orange);
            font-weight: 600;
        }

        .precision-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-dark);
            height: 100%;
            min-height: 400px;
        }

        .precision-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
            border: 1px solid rgba(244, 124, 32, 0.1);
        }

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

        /* ===== VORHER-NACHHER SEKTION ===== */
        .comparison-section {
            background-color: var(--dark-navy);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-slider-container {
            position: relative;
            width: 100%;
            height: 600px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-dark);
            margin-top: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .comparison-before {
            z-index: 1;
            clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
        }

        .comparison-label {
            position: absolute;
            top: 30px;
            background: rgba(0, 34, 68, 0.85);
            color: white;
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 600;
            z-index: 2;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(244, 124, 32, 0.3);
        }

        .label-before { left: 30px; }
        .label-after { right: 30px; }

        .comparison-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: var(--secondary-orange);
            z-index: 3;
            cursor: ew-resize;
            transform: translateX(-50%);
            box-shadow: 0 0 15px rgba(244, 124, 32, 0.5);
        }

        .handle-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 60px;
            height: 60px;
            background: var(--secondary-orange);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            font-size: 1.4rem;
            box-shadow: 0 4px 15px rgba(244, 124, 32, 0.4);
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        /* ===== PACKAGES SECTION ===== */
        .packages-section {
            background-color: var(--primary-blue);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 50px;
        }

        .pkg-img-wrap {
            position: relative;
            overflow: visible;
        }

        .pkg-icon-badge {
            position: absolute;
            bottom: -24px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--secondary-orange), #FF9500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
            z-index: 3;
            border: 3px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        .pkg-icon-badge.gold {
            background: linear-gradient(135deg, #b8942a, #e8c84a);
            color: #002244;
        }

        .feat-note {
            font-size: 0.8rem;
            opacity: 0.7;
            display: block;
            margin-top: 2px;
        }

        .pkg-tagline { font-size: 0.79rem; opacity: 0.72; margin: 8px 0 10px; line-height: 1.45; color: rgba(255,255,255,0.82); font-style: italic; }
        .pkg-divider { border: none; border-top: 1px solid rgba(255,255,255,0.18); margin: 10px 0 14px; }
        .package-features li { padding-left: 0; }
        .package-features li:before { display: none; }
        .package-features li i { width: 18px; text-align: center; color: var(--secondary-orange); margin-right: 8px; font-size: 0.9em; transition: color 0.4s; }
        .package-card:hover .package-features li i { color: var(--text-white); }

        .package-card {
            background: rgba(0, 51, 102, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        /* NEU: Slide-Effekt von unten mit Farbwechsel für Package Cards */
        .package-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, rgba(244, 124, 32, 0.9), rgba(244, 124, 32, 0.7));
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
            border-radius: 12px;
        }

        .package-card::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--secondary-orange);
            transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
            border-radius: 12px;
        }

        .package-card:hover {
            transform: translateY(-12px);
            border-color: var(--secondary-orange);
            box-shadow: 0 25px 50px rgba(244, 124, 32, 0.3);
        }

        .package-card:hover::before {
            height: 100%;
        }

        .package-card:hover::after {
            top: 0;
            height: 100%;
        }

        .package-card:hover .package-name,
        .package-card:hover .package-description,
        .package-card:hover .package-features li {
            color: var(--text-white);
            position: relative;
            z-index: 2;
        }

        .package-card:hover .package-price {
            color: var(--text-white);
            position: relative;
            z-index: 2;
        }

        .package-card.popular {
            border: 2px solid var(--secondary-orange);
            transform: scale(1.02);
        }

        .package-card.popular:hover {
            transform: translateY(-12px) scale(1.02);
        }

        .popular-badge {
            position: absolute;
            top: 15px;
            right: -30px;
            background: var(--secondary-orange);
            color: var(--text-white);
            padding: 6px 40px;
            font-size: 0.8rem;
            font-weight: 800;
            transform: rotate(45deg);
            letter-spacing: 0.5px;
            z-index: 10;
            box-shadow: 0 4px 10px rgba(244, 124, 32, 0.3);
        }

        .package-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease;
        }

        .package-card:hover .package-image {
            transform: scale(1.05);
        }

        .package-content {
            padding: 38px 16px 16px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }

        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .package-name {
            font-size: 1.5rem;
            color: var(--text-white);
            font-weight: 700;
            flex: 1;
            text-align: left;
            transition: all 0.4s ease;
        }

        .package-price {
            font-size: 1.8rem;
            color: var(--secondary-orange);
            font-weight: 800;
            margin-left: 15px;
            white-space: nowrap;
            transition: all 0.4s ease;
        }

        .package-description {
            color: var(--text-white);
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
            opacity: 0.9;
            text-align: left;
            height: 48px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            transition: all 0.4s ease;
        }

        .package-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .package-features li {
            color: var(--text-white);
            margin-bottom: 6px;
            padding-left: 28px;
            position: relative;
            opacity: 0.9;
            font-size: 0.88rem;
            text-align: left;
            line-height: 1.4;
            transition: all 0.4s ease;
        }

        .package-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-orange);
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.4s ease;
        }

        .package-card:hover .package-features li:before {
            color: var(--text-white);
        }

        .package-button {
            display: block;
            background: var(--secondary-orange);
            color: var(--text-white);
            text-align: center;
            padding: 15px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            letter-spacing: 0.3px;
            margin-top: auto;
            box-shadow: 0 4px 12px rgba(244, 124, 32, 0.2);
            position: relative;
            z-index: 2;
        }

        .package-button:hover {
            background: rgba(255, 255, 255, 0.9);
            color: var(--secondary-orange);
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(244, 124, 32, 0.3);
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 34, 68, 0.9)), 
                    url('https://www.glanzwerk-wien.at/webseite/images/bmwclean.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 40px 20px;
            text-align: center;
            position: relative;
        }

        .cta-title {
            font-size: 2.8rem;
            color: var(--text-white);
            margin-bottom: 25px;
            font-weight: 300;
            text-align: center;
        }

        .cta-title span {
            color: var(--secondary-orange);
            font-weight: 600;
        }

        .cta-text {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto 40px;
            font-weight: 300;
            text-align: center;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-block;
            background: var(--secondary-orange);
            color: var(--text-white);
            padding: 18px 50px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(244, 124, 32, 0.3);
            letter-spacing: 0.3px;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #F47C20, #FF8C00);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(244, 124, 32, 0.4);
        }

        /* ===== FOOTER ===== */
        .main-footer {
            background-color: var(--dark-navy);
            color: var(--text-white);
            padding: 40px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-logo-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-logo-img {
            height: 45px;
            width: auto;
            filter: brightness(1.2);
        }

        .footer-logo-text-img {
            height: 27px;
            width: auto;
            filter: brightness(1.2);
        }

        .footer-tagline {
            color: var(--text-white);
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
            text-align: left;
        }

        .footer-heading {
            color: var(--text-white);
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
            text-align: left;
        }

        .footer-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary-orange);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: var(--text-white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            opacity: 0.8;
            text-align: left;
            display: block;
        }

        .footer-links a:hover {
            color: var(--secondary-orange);
            opacity: 1;
            padding-left: 8px;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            font-size: 1rem;
            text-align: left;
        }

        .contact-info i {
            color: var(--secondary-orange);
            margin-right: 12px;
            margin-top: 3px;
            min-width: 20px;
            font-size: 1.1rem;
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-white);
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== LEFT SOCIAL BAR (IDENTISCH ZU INDEX.HTML) ===== */
        .social-bar {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            padding: 15px 10px;
            background: rgba(0, 51, 102, 0.7);
            backdrop-filter: blur(10px);
            border-top-right-radius: 20px;
            border-bottom-right-radius: 20px;
            border: 1px solid rgba(244, 124, 32, 0.2);
            border-left: none;
            box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.3);
            display: block;
        }

        .social-icons {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .social-icon:hover {
            transform: translateX(8px) scale(1.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .social-icon.facebook { background: rgba(24, 119, 242, 0.2); }
        .social-icon.facebook:hover { background: rgba(24, 119, 242, 0.4); }

        .social-icon.tiktok { background: rgba(0, 0, 0, 0.2); }
        .social-icon.tiktok:hover { background: rgba(0, 0, 0, 0.4); }

        .social-icon.instagram { 
            background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(245, 96, 64, 0.2), rgba(252, 175, 69, 0.2)); 
        }
        .social-icon.instagram:hover { 
            background: linear-gradient(45deg, rgba(225, 48, 108, 0.4), rgba(245, 96, 64, 0.4), rgba(252, 175, 69, 0.4)); 
        }

        .social-icon.whatsapp { background: rgba(37, 211, 102, 0.2); }
        .social-icon.whatsapp:hover { background: rgba(37, 211, 102, 0.4); }

        /* Footer Socials (IDENTISCH ZU INDEX.HTML) */
        .footer-socials {
            margin-top: 20px;
            display: block;
        }

        .footer-social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .footer-social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-social-icon:hover {
            transform: translateY(-3px);
            border-color: var(--secondary-orange);
        }

        .footer-social-icon.facebook { background: #1877F2; }
        .footer-social-icon.tiktok { background: #000000; }
        .footer-social-icon.instagram { 
            background: linear-gradient(45deg, #E1306C, #F56040, #FCAF45); 
        }
        .footer-social-icon.whatsapp { background: #25D366; }

        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            z-index: 998;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .whatsapp-float:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .slide-overlay {
                left: 40px;
                bottom: 40px;
                max-width: 450px;
            }
            
            .slide-content h1 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 992px) {
            .features-grid,
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 1.6rem;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .slide-overlay {
                left: 30px;
                bottom: 30px;
                max-width: 400px;
                padding: 25px;
            }
            
            .slide-content h1 {
                font-size: 2.2rem;
            }
            
            .slide-content p {
                font-size: 1.1rem;
            }
            
            .logo-main {
                height: 40px;
            }
            
            .logo-text {
                height: 24px;
            }
            
            .precision-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .precision-text {
                text-align: center;
            }
            
            .precision-text p {
                text-align: center;
            }
            
            .precision-image {
                min-height: 350px;
                order: -1;
            }
            
            .comparison-slider-container {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            /* Mobile Menu */
            .mobile-menu-btn {
                display: block;
            }
            
            .main-navigation {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(0, 51, 102, 0.98);
                backdrop-filter: blur(15px);
                flex-direction: column;
                padding: 40px 20px;
                gap: 2rem;
                transition: left 0.3s ease;
                z-index: 999;
                overflow-y: auto;
            }
            
            .main-navigation.active {
                left: 0;
            }
            
            .nav-item {
                font-size: 1.2rem;
                padding: 12px 0;
                width: 100%;
                text-align: center;
            }
            
            .nav-button {
                margin-top: 1rem;
                padding: 12px 30px;
                font-size: 1.1rem;
                width: 100%;
                text-align: center;
            }
            
            /* Hide left social bar on mobile, show only in footer */
            .social-bar {
                display: none;
            }
            
            .footer-socials {
                display: block;
            }
            
            /* Logos auf Mobile */
            .logo-main {
                height: 35px;
            }
            
            .logo-text {
                height: 21px;
            }
            
            /* Hero Section für Mobile */
            .hero-section {
                height: 400px;
            }
            
            .hero-slider {
                height: 400px;
            }
            
            .slide-overlay {
                left: 20px;
                right: 20px;
                bottom: 20px;
                max-width: none;
                background: rgba(0, 51, 102, 0.7);
            }
            
            .slide-content h1 {
                font-size: 1.8rem !important;
                line-height: 1.3;
                margin-bottom: 10px;
            }
            
            .slide-content p {
                font-size: 1rem !important;
                line-height: 1.5;
            }
            
            /* Slider Controls */
            .slider-controls {
                bottom: 20px;
                padding: 8px 12px;
            }
            
            .slider-dot {
                width: 12px;
                height: 12px;
            }
            
            /* Features Grid Mobile */
            .features-grid,
            .packages-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            /* Comparison Slider Mobile */
            .comparison-slider-container {
                height: 400px;
            }
            
            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 30px 0;
            }
            
            .section-small {
                padding: 30px 0;
            }
        }

        @media (min-width: 769px) {
            .footer-socials {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                height: 350px;
            }
            
            .hero-slider {
                height: 350px;
            }
            
            .slide-overlay {
                padding: 20px;
            }
            
            .slide-content h1 {
                font-size: 1.6rem !important;
            }
            
            .slide-content p {
                font-size: 0.95rem !important;
            }
            
            .logo-main {
                height: 30px;
            }
            
            .logo-text {
                height: 18px;
            }
            
            .footer-logo-img {
                height: 40px;
            }
            
            .footer-logo-text-img {
                height: 24px;
            }
            
            .precision-image {
                min-height: 300px;
            }
            
            .comparison-slider-container {
                height: 350px;
            }
            
            .comparison-label {
                font-size: 0.9rem;
                padding: 8px 15px;
                top: 20px;
            }
            
            .label-before { left: 20px; }
            .label-after { right: 20px; }
            
            .handle-circle {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 400px) {
            .hero-section {
                height: 300px;
            }
            
            .hero-slider {
                height: 300px;
            }
            
            .slide-overlay {
                left: 15px;
                right: 15px;
                bottom: 15px;
                padding: 15px;
            }
            
            .slide-content h1 {
                font-size: 1.4rem !important;
            }
            
            .slide-content p {
                font-size: 0.9rem !important;
            }
            
            .header-container {
                padding: 0 15px;
            }
            
            .logo-main {
                height: 28px;
            }
            
            .logo-text {
                height: 17px;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-text {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
        }
    