﻿        /* ===== VARIABLEN FÜR FARBEN - ANALOG ZU INDEX1 ===== */
        :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: 80px 0;
        }

        .section-small {
            padding: 60px 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;
        }

        h1 {
            font-size: 3rem;
            color: var(--text-white);
            margin-bottom: 20px;
            position: relative;
            text-align: center;
        }

        h2 {
            font-size: 2.5rem;
            color: var(--text-white);
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

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

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

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

        /* ===== 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-item.active {
            color: var(--secondary-orange);
            opacity: 1;
        }

        .nav-item.active::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);
        }

        /* ===== KONTAKT HERO ===== */
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), 
                        url('https://www.glanzwerk-wien.at/webseite/images/coupe.jpg');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-top: 80px;
            position: relative;
        }

        .contact-hero-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .contact-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            text-align: center;
        }

        /* ===== KONTAKT CONTENT ===== */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        /* ===== IMPROVED CONTACT INFO CARD ===== */
        .contact-info-card {
            background: rgba(0, 51, 102, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow-dark);
            transition: transform 0.3s ease;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
        }

        .contact-details {
            list-style: none;
            margin-top: 30px;
        }

        .contact-details li {
            margin-bottom: 25px;
            display: flex;
            align-items: flex-start;
            min-height: 60px;
        }

        /* Icons über der Headline - größer und oben */
        .contact-details i {
            color: var(--secondary-orange);
            font-size: 2.2rem;
            margin-right: 20px;
            min-width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            width: 50px;
            background: rgba(244, 124, 32, 0.1);
            border-radius: 50%;
            padding: 10px;
        }

        .contact-details .icon-text-wrapper {
            display: flex;
            flex-direction: column;
        }

        .contact-details strong {
            color: var(--text-white);
            display: block;
            margin-bottom: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            min-height: 24px;
        }

        .contact-details span {
            color: var(--text-white);
            line-height: 1.6;
            font-size: 1rem;
            opacity: 0.9;
        }

        /* ===== LOCATION CARD ===== */
        .location-card {
            background: rgba(0, 51, 102, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow-dark);
            margin-bottom: 60px;
        }

        .location-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .location-highlight {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 20px;
            border-left: 4px solid var(--secondary-orange);
            min-height: 140px;
            display: flex;
            flex-direction: column;
        }

        /* Icons in Location Highlights auch größer und oben */
        .location-highlight h4 {
            color: var(--secondary-orange);
            font-size: 1.2rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 30px;
        }

        .location-highlight h4 i {
            font-size: 1.8rem;
            color: var(--secondary-orange);
            min-width: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-highlight p {
            margin-bottom: 0;
            flex-grow: 1;
        }

        /* ===== GOOGLE MAPS CARD ===== */
        .google-maps-card {
            background: rgba(0, 51, 102, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow-dark);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .google-maps-card:hover {
            transform: translateY(-5px);
        }

        .map-container-inner {
            margin-top: 30px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-dark);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-container-inner iframe {
            width: 100%;
            height: 400px;
            border: none;
            display: block;
        }

        /* ===== WHATSAPP CONTACT CARD ===== */
        .whatsapp-contact-card {
            background: rgba(0, 51, 102, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow-dark);
            text-align: center;
            margin-top: 60px;
            border-top: 4px solid #25D366;
        }

        .whatsapp-icon {
            font-size: 4rem;
            color: #25D366;
            margin-bottom: 20px;
        }

        .whatsapp-contact-card h3 {
            color: #25D366;
            margin-bottom: 15px;
        }

        .whatsapp-button {
            display: inline-block;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        /* ===== 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: 80px 20px;
            text-align: center;
            position: relative;
        }

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

        .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;
            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);
        }

        /* ===== WHATSAPP BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 130px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            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 10px 30px rgba(37, 211, 102, 0.5);
        }

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

        .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;
        }

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

        .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;
        }

        .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;
        }

        .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;
        }

        .copyright a {
            color: var(--text-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .copyright a:hover {
            color: var(--secondary-orange);
        }

        /* ===== ANIMATIONS ===== */
        .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);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .contact-hero h1 {
                font-size: 2.8rem;
            }
            
            .location-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @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;
            }
            
            /* Logos auf Mobile */
            .logo-main {
                height: 35px;
            }
            
            .logo-text {
                height: 21px;
            }
            
            /* Contact Hero Mobile */
            .contact-hero {
                height: 400px;
                margin-top: 80px;
            }
            
            .contact-hero h1 {
                font-size: 2.2rem;
            }
            
            .contact-hero p {
                font-size: 1.1rem;
            }
            
            /* Cards Mobile */
            .contact-info-card,
            .google-maps-card,
            .location-card,
            .whatsapp-contact-card {
                padding: 30px;
            }
            
            /* Icons auf Mobile */
            .contact-details i {
                font-size: 1.8rem;
                min-width: 40px;
                height: 40px;
                width: 40px;
            }
            
            .location-highlight h4 i {
                font-size: 1.5rem;
            }
            
            .location-highlights {
                grid-template-columns: 1fr;
            }
            
            /* Map Mobile */
            .map-container-inner iframe {
                height: 300px;
            }
            
            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            /* WhatsApp Button Mobile */
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-small {
                padding: 40px 0;
            }
        }

        @media (max-width: 576px) {
            .contact-hero {
                height: 350px;
            }
            
            .contact-hero h1 {
                font-size: 1.8rem;
            }
            
            .contact-hero p {
                font-size: 1rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .logo-main {
                height: 30px;
            }
            
            .logo-text {
                height: 18px;
            }
            
            .footer-logo-img {
                height: 40px;
            }
            
            .footer-logo-text-img {
                height: 24px;
            }
            
            .map-container-inner iframe {
                height: 250px;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-text {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 15px 30px;
                font-size: 1rem;
            }
            
            /* Icons auf sehr kleinen Bildschirmen */
            .contact-details i {
                font-size: 1.5rem;
                min-width: 35px;
                height: 35px;
                width: 35px;
                margin-right: 15px;
            }
            
            .location-highlight h4 i {
                font-size: 1.3rem;
            }
        }
    