/* Janning Group - Gemeinsame CSS-Datei
   Aenderungen hier wirken auf alle Seiten */

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Group - Datenschutz.html ===== */


        body.page-datenschutz {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-datenschutz .header {
            transition: top 0.3s ease;
            background: rgba(89, 89, 89, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-datenschutz .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-datenschutz .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-datenschutz .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-datenschutz .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-datenschutz .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-datenschutz .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-datenschutz .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-datenschutz .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-datenschutz .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-datenschutz .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-datenschutz .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-datenschutz .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-datenschutz .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-datenschutz .main-nav a:hover {
            color: #80dddd;
        }

        body.page-datenschutz .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-datenschutz .main-nav a:hover::after {
            width: 100%;
        }

        body.page-datenschutz .main-nav a.active {
            color: #e6f528;
        }

        body.page-datenschutz .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-datenschutz .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-datenschutz .dropdown-content {
            display: none;
            position: absolute;
            background: rgba(44, 102, 102, 0.95);
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-datenschutz .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-datenschutz .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-datenschutz .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-datenschutz .main-content {
            background: #595959;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-datenschutz .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-datenschutz .hero-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        body.page-datenschutz .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-datenschutz .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-datenschutz .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Datenschutz Section */
        body.page-datenschutz .datenschutz-section {
            margin-bottom: 4rem;
        }

        body.page-datenschutz .section-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        body.page-datenschutz .datenschutz-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            line-height: 1.8;
        }

        body.page-datenschutz .datenschutz-content h2 {
            color: #e6f528;
            font-size: 1.8rem;
            margin: 2.5rem 0 1.5rem 0;
            border-bottom: 2px solid #e6f528;
            padding-bottom: 0.5rem;
        }

        body.page-datenschutz .datenschutz-content h2:first-child {
            margin-top: 0;
        }

        body.page-datenschutz .datenschutz-content h3 {
            color: #80dddd;
            font-size: 1.3rem;
            margin: 2rem 0 1rem 0;
        }

        body.page-datenschutz .datenschutz-content h4 {
            color: #80dddd;
            font-size: 1.1rem;
            margin: 1.5rem 0 0.5rem 0;
        }

        body.page-datenschutz .datenschutz-content p {
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-datenschutz .datenschutz-content ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        body.page-datenschutz .datenschutz-content li {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-datenschutz .datenschutz-content strong {
            color: #80dddd;
            font-weight: 600;
        }

        body.page-datenschutz .company-info {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #e6f528;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }

        body.page-datenschutz .highlight-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 10px;
        }

        body.page-datenschutz .caps-text {
            color: #ff9999;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Footer */
        body.page-datenschutz .footer {
            background: #595959;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;     
            box-shadow: 0 -2px 20px rgba(89, 89, 89, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-datenschutz .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-datenschutz .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-datenschutz .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-datenschutz .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-datenschutz .footer-section a:hover {
            color: #80dddd;
        }

        body.page-datenschutz .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-datenschutz .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-datenschutz .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: rgba(44, 102, 102, 0.9);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-datenschutz .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-datenschutz .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-datenschutz .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-datenschutz .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-datenschutz .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-datenschutz .header-logos {
                display: none;
            }

            body.page-datenschutz .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-datenschutz .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-datenschutz .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-datenschutz .hero-title {
                font-size: 2.5rem;
            }

            body.page-datenschutz .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-datenschutz .datenschutz-content {
                padding: 2rem;
            }

            body.page-datenschutz .scroll-indicator {
                display: none;
            }
        }

        /* Animations */
        @keyframes fadeInHeader {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInFooter {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInContent {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll Indicator */
body.page-datenschutz .scroll-indicator {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

body.page-datenschutz .scroll-dot {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgb(89, 89, 89);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.2 !important;
}

body.page-datenschutz .scroll-dot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

body.page-datenschutz .scroll-dot.active {
    background: #e6f528;
    transform: scale(1.2);
    border-color: #e6f528;
    opacity: 1 !important;
}

body.page-datenschutz .scroll-dot.active img {
    filter: brightness(0) invert(0.3);
}

        body.page-datenschutz .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

/* Responsive - auf mobilen Geräten verstecken */
@media (max-width: 768px) {
    body.page-datenschutz .scroll-indicator {
        display: none;
    }
}
        body.page-datenschutz .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

body.page-datenschutz .scroll-logos {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

body.page-datenschutz .scroll-logos img {
    width: 40px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

body.page-datenschutz .scroll-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Floating Kontakt Button */
body.page-datenschutz .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-datenschutz .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-datenschutz .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-datenschutz .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-datenschutz .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-datenschutz .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-datenschutz .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

body.page-datenschutz .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(230, 245, 40, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    }
}

body.page-datenschutz .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== Group - IMPRESSUM.html ===== */


        body.page-impressum {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-impressum .header {
            transition: top 0.3s ease;
            background: rgba(89, 89, 89, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-impressum .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-impressum .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-impressum .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-impressum .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-impressum .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-impressum .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-impressum .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-impressum .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-impressum .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-impressum .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-impressum .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-impressum .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-impressum .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-impressum .main-nav a:hover {
            color: #80dddd;
        }

        body.page-impressum .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-impressum .main-nav a:hover::after {
            width: 100%;
        }

        body.page-impressum .main-nav a.active {
            color: #e6f528;
        }

        body.page-impressum .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-impressum .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-impressum .dropdown-content {
            display: none;
            position: absolute;
            background: rgba(44, 102, 102, 0.95);
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-impressum .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-impressum .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-impressum .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-impressum .main-content {
            background: #595959;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-impressum .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-impressum .hero-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        body.page-impressum .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-impressum .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-impressum .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Datenschutz Section */
        body.page-impressum .datenschutz-section {
            margin-bottom: 4rem;
        }

        body.page-impressum .section-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        body.page-impressum .datenschutz-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            line-height: 1.8;
        }

        body.page-impressum .datenschutz-content h2 {
            color: #e6f528;
            font-size: 1.8rem;
            margin: 2.5rem 0 1.5rem 0;
            border-bottom: 2px solid #e6f528;
            padding-bottom: 0.5rem;
        }

        body.page-impressum .datenschutz-content h2:first-child {
            margin-top: 0;
        }

        body.page-impressum .datenschutz-content h3 {
            color: #80dddd;
            font-size: 1.3rem;
            margin: 2rem 0 1rem 0;
        }

        body.page-impressum .datenschutz-content h4 {
            color: #80dddd;
            font-size: 1.1rem;
            margin: 1.5rem 0 0.5rem 0;
        }

        body.page-impressum .datenschutz-content p {
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-impressum .datenschutz-content ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        body.page-impressum .datenschutz-content li {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-impressum .datenschutz-content strong {
            color: #80dddd;
            font-weight: 600;
        }

        body.page-impressum .company-info {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #e6f528;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }

        body.page-impressum .highlight-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 10px;
        }

        body.page-impressum .caps-text {
            color: #ff9999;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Footer */
        body.page-impressum .footer {
            background: #595959;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;     
            box-shadow: 0 -2px 20px rgba(89, 89, 89, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-impressum .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-impressum .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-impressum .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-impressum .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-impressum .footer-section a:hover {
            color: #80dddd;
        }

        body.page-impressum .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-impressum .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-impressum .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: rgba(44, 102, 102, 0.9);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-impressum .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-impressum .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-impressum .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-impressum .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-impressum .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-impressum .header-logos {
                display: none;
            }

            body.page-impressum .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-impressum .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-impressum .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-impressum .hero-title {
                font-size: 2.5rem;
            }

            body.page-impressum .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-impressum .datenschutz-content {
                padding: 2rem;
            }

            body.page-impressum .scroll-indicator {
                display: none;
            }
        }

        /* Animations */



        /* Scroll Indicator */
body.page-impressum .scroll-indicator {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

body.page-impressum .scroll-dot {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgb(89, 89, 89);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.2 !important;
}

body.page-impressum .scroll-dot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

body.page-impressum .scroll-dot.active {
    background: #e6f528;
    transform: scale(1.2);
    border-color: #e6f528;
    opacity: 1 !important;
}

body.page-impressum .scroll-dot.active img {
    filter: brightness(0) invert(0.3);
}

        body.page-impressum .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

/* Responsive - auf mobilen Geräten verstecken */
@media (max-width: 768px) {
    body.page-impressum .scroll-indicator {
        display: none;
    }
}
        body.page-impressum .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

body.page-impressum .scroll-logos {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

body.page-impressum .scroll-logos img {
    width: 40px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

body.page-impressum .scroll-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Floating Kontakt Button */
body.page-impressum .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-impressum .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-impressum .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-impressum .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-impressum .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-impressum .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-impressum .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-impressum .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-impressum .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== Job - Janning Ausbildung.html ===== */


        body.page-job-ausbildung {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-job-ausbildung .header {
            transition: top 0.3s ease;
            background: rgba(89, 89, 89, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-job-ausbildung .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-job-ausbildung .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-job-ausbildung .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-job-ausbildung .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-job-ausbildung .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-job-ausbildung .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-job-ausbildung .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-job-ausbildung .header-contact-link:hover {
            color: #e6f528;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-job-ausbildung .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-job-ausbildung .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-ausbildung .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-job-ausbildung .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-job-ausbildung .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        body.page-job-ausbildung .main-nav a:hover {
            color: #e6f528;
        }

        body.page-job-ausbildung .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #e6f528;
            transition: width 0.3s ease;
        }

        body.page-job-ausbildung .main-nav a:hover::after {
            width: 100%;
        }

        body.page-job-ausbildung .main-nav a.active {
            color: #e6f528;
        }

        body.page-job-ausbildung .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-job-ausbildung .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-job-ausbildung .dropdown-content {
            display: none;
            position: absolute;
            background: #595959;
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-job-ausbildung .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-job-ausbildung .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-job-ausbildung .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-job-ausbildung .main-content {
            background: #595959;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-job-ausbildung .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Job List Page */
        body.page-job-ausbildung .job-list-page {
            display: block;
        }

        body.page-job-ausbildung .hero-section {
            text-align: center;
            margin-bottom: 6rem;
        }

        body.page-job-ausbildung .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
            cursor: pointer;
        }

        body.page-job-ausbildung .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #e6f528;
        }

        body.page-job-ausbildung .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        body.page-job-ausbildung .hero-company-name {
            font-size: 2.5rem;
            color: #e6f528;
            cursor: pointer;
            margin-bottom: 2rem;
            font-weight: bold;
        }

        /* Job Cards */
        body.page-job-ausbildung .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-job-ausbildung .job-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-ausbildung .job-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-job-ausbildung .job-number {
            color: #e6f528;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        body.page-job-ausbildung .job-title {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        body.page-job-ausbildung .job-location {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        body.page-job-ausbildung .job-company {
            color: #e6f528;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        body.page-job-ausbildung .job-btn {
            display: inline-block;
            background: #e6f528;
            color: #595959;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        body.page-job-ausbildung .job-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Job Detail Page */
        body.page-job-ausbildung .job-detail-page {
            display: none;
        }

        body.page-job-ausbildung .job-detail-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }

        body.page-job-ausbildung .job-detail-main {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-ausbildung .job-detail-sidebar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: fit-content;
        }

        body.page-job-ausbildung .job-detail-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        body.page-job-ausbildung .job-detail-subtitle {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-ausbildung .job-section {
            margin-bottom: 2.5rem;
        }

        body.page-job-ausbildung .job-section h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-job-ausbildung .job-section p, body.page-job-ausbildung .job-section li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-ausbildung .job-section ul {
            padding-left: 1.5rem;
        }

        body.page-job-ausbildung .sidebar-section {
            margin-bottom: 2rem;
        }

        body.page-job-ausbildung .sidebar-section h4 {
            color: #e6f528;
            margin-bottom: 0.5rem;
        }

        body.page-job-ausbildung .sidebar-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }

        body.page-job-ausbildung .back-btn {
            display: inline-block;
            background: #e6f528;
            color: #595959;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            border: none;
            cursor: pointer;
        }

        body.page-job-ausbildung .back-btn:hover {
            background: #d4e320;
            transform: translateX(-5px);
        }

        body.page-job-ausbildung .apply-btn {
            display: inline-block;
            background: #e6f528;
            color: #595959;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        body.page-job-ausbildung .apply-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Application Form */
        body.page-job-ausbildung .application-form-page {
            display: none;
        }

        body.page-job-ausbildung .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-ausbildung .form-title {
            color: #e6f528;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        body.page-job-ausbildung .form-group {
            margin-bottom: 1.5rem;
        }

        body.page-job-ausbildung .form-group label {
            display: block;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        body.page-job-ausbildung .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .form-group input::placeholder,
        body.page-job-ausbildung .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus,
        body.page-job-ausbildung .form-group textarea:focus {
            outline: none;
            border-color: #e6f528;
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-ausbildung .file-input {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        body.page-job-ausbildung .file-input input[type=file] {
            position: absolute;
            left: -9999px;
        }

        body.page-job-ausbildung .file-input-label {
            display: block;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-ausbildung .file-input-label:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-ausbildung .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-ausbildung .checkbox-container input[type="checkbox"] {
            width: auto;
            margin-top: 0.2rem;
        }

        body.page-job-ausbildung .checkbox-container label {
            margin-bottom: 0;
            flex: 1;
            font-size: 0.9rem;
        }

        body.page-job-ausbildung .submit-btn {
            width: 100%;
            background: #e6f528;
            color: #595959;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-ausbildung .submit-btn:hover {
            background: #d4e320;
            transform: translateY(-2px);
        }

        body.page-job-ausbildung .submit-btn:disabled {
            background: #999;
            cursor: not-allowed;
            transform: none;
        }

        /* Footer */
        body.page-job-ausbildung .footer {
            background: #595959;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(89, 89, 89, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-job-ausbildung .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-job-ausbildung .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-job-ausbildung .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-ausbildung .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-job-ausbildung .footer-section a:hover {
            color: #e6f528;
        }

        body.page-job-ausbildung .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-job-ausbildung .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-job-ausbildung .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

        body.page-job-ausbildung .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: #595959;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-job-ausbildung .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-ausbildung .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-job-ausbildung .scroll-dot.active img {
            filter: brightness(0) invert(0.4);
        }

        body.page-job-ausbildung .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-job-ausbildung .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-job-ausbildung .header-logos {
                display: none;
            }

            body.page-job-ausbildung .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-job-ausbildung .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-job-ausbildung .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-job-ausbildung .hero-title {
                font-size: 2.5rem;
            }

            body.page-job-ausbildung .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-job-ausbildung .jobs-grid {
                grid-template-columns: 1fr;
            }

            body.page-job-ausbildung .job-detail-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-job-ausbildung .scroll-indicator {
                display: none;
            }
        }

        /* Animations */



        body.page-job-ausbildung .job-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-job-ausbildung .job-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-job-ausbildung .job-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-job-ausbildung .job-card:nth-child(3) { animation-delay: 0.3s; }
        body.page-job-ausbildung .job-card:nth-child(4) { animation-delay: 0.4s; }
        body.page-job-ausbildung .job-card:nth-child(5) { animation-delay: 0.5s; }
        body.page-job-ausbildung .job-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Success Message */
        body.page-job-ausbildung .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(230, 245, 40, 0.9);
            color: #595959;
            padding: 2rem;
            border-radius: 10px;
            z-index: 2000;
            text-align: center;
            display: none;
            border: 2px solid #e6f528;
        }

        body.page-job-ausbildung .success-message.show {
            display: block;
            animation: fadeInScale 0.5s ease-out;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }
                /* Job Video */
        body.page-job-ausbildung .job-video {
            width: 100%;
            max-width: 1400px;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.page-job-ausbildung .job-video video {
            width: 100%;
            height: auto;
        }

        /* Floating Kontakt Button */
body.page-job-ausbildung .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-job-ausbildung .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-job-ausbildung .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-job-ausbildung .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-job-ausbildung .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-job-ausbildung .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-job-ausbildung .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-job-ausbildung .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-job-ausbildung .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== Job - Janning Bohrtechnik.html ===== */


        body.page-job-bohrtechnik {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-job-bohrtechnik .header {
            transition: top 0.3s ease;
            background: rgba(14, 109, 160, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-job-bohrtechnik .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-job-bohrtechnik .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-job-bohrtechnik .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-job-bohrtechnik .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-job-bohrtechnik .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-job-bohrtechnik .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-job-bohrtechnik .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-job-bohrtechnik .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-job-bohrtechnik .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-job-bohrtechnik .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-bohrtechnik .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-job-bohrtechnik .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-job-bohrtechnik .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        body.page-job-bohrtechnik .main-nav a:hover {
            color: #80dddd;
        }

        body.page-job-bohrtechnik .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-job-bohrtechnik .main-nav a:hover::after {
            width: 100%;
        }

        body.page-job-bohrtechnik .main-nav a.active {
            color: #80dddd;
        }

        body.page-job-bohrtechnik .main-nav a.active::after {
            width: 100%;
            background-color: #80dddd;
        }

        /* Dropdown Menu */
        body.page-job-bohrtechnik .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-job-bohrtechnik .dropdown-content {
            display: none;
            position: absolute;
            background: #0e6da0;
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-job-bohrtechnik .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-job-bohrtechnik .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-job-bohrtechnik .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-job-bohrtechnik .main-content {
            background: #0e6da0;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-job-bohrtechnik .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

       /* Job List Page */
        body.page-job-bohrtechnik .job-list-page {
            display: block;
        }

        body.page-job-bohrtechnik .hero-section {
            text-align: center;
            margin-bottom: 6rem;
        }

        body.page-job-bohrtechnik .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
            cursor: pointer;
        }


        body.page-job-bohrtechnik .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #e6f528;
        }

        body.page-job-bohrtechnik .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Job Cards */
        body.page-job-bohrtechnik .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-job-bohrtechnik .job-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-bohrtechnik .job-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-job-bohrtechnik .job-number {
            color: #80dddd;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        body.page-job-bohrtechnik .job-title {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        body.page-job-bohrtechnik .job-location {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        body.page-job-bohrtechnik .job-company {
            color: #e6f528;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        body.page-job-bohrtechnik .job-btn {
            display: inline-block;
            background: #e6f528;
            color: #0e6da0;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        body.page-job-bohrtechnik .job-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Job Detail Page */
        body.page-job-bohrtechnik .job-detail-page {
            display: none;
        }

        body.page-job-bohrtechnik .job-detail-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }

        body.page-job-bohrtechnik .job-detail-main {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-bohrtechnik .job-detail-sidebar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: fit-content;
        }

        body.page-job-bohrtechnik .job-detail-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        body.page-job-bohrtechnik .job-detail-subtitle {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-bohrtechnik .job-section {
            margin-bottom: 2.5rem;
        }

        body.page-job-bohrtechnik .job-section h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-job-bohrtechnik .job-section p, body.page-job-bohrtechnik .job-section li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-bohrtechnik .job-section ul {
            padding-left: 1.5rem;
        }

        body.page-job-bohrtechnik .sidebar-section {
            margin-bottom: 2rem;
        }

        body.page-job-bohrtechnik .sidebar-section h4 {
            color: #e6f528;
            margin-bottom: 0.5rem;
        }

        body.page-job-bohrtechnik .sidebar-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }

        body.page-job-bohrtechnik .back-btn {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            border: none;
            cursor: pointer;
        }

        body.page-job-bohrtechnik .back-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateX(-5px);
        }

        body.page-job-bohrtechnik .apply-btn {
            display: inline-block;
            background: #e6f528;
            color: #0e6da0;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        body.page-job-bohrtechnik .apply-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Application Form */
        body.page-job-bohrtechnik .application-form-page {
            display: none;
        }

        body.page-job-bohrtechnik .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-bohrtechnik .form-title {
            color: #80dddd;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        body.page-job-bohrtechnik .form-group {
            margin-bottom: 1.5rem;
        }

        body.page-job-bohrtechnik .form-group label {
            display: block;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        body.page-job-bohrtechnik .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .form-group input::placeholder,
        body.page-job-bohrtechnik .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus,
        body.page-job-bohrtechnik .form-group textarea:focus {
            outline: none;
            border-color: #80dddd;
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-bohrtechnik .file-input {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        body.page-job-bohrtechnik .file-input input[type=file] {
            position: absolute;
            left: -9999px;
        }

        body.page-job-bohrtechnik .file-input-label {
            display: block;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-bohrtechnik .file-input-label:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-bohrtechnik .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-bohrtechnik .checkbox-container input[type="checkbox"] {
            width: auto;
            margin-top: 0.2rem;
        }

        body.page-job-bohrtechnik .checkbox-container label {
            margin-bottom: 0;
            flex: 1;
            font-size: 0.9rem;
        }

        body.page-job-bohrtechnik .submit-btn {
            width: 100%;
            background: #e6f528;
            color: #0e6da0;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-bohrtechnik .submit-btn:hover {
            background: #d4e320;
            transform: translateY(-2px);
        }

        body.page-job-bohrtechnik .submit-btn:disabled {
            background: #999;
            cursor: not-allowed;
            transform: none;
        }

        /* Footer */
        body.page-job-bohrtechnik .footer {
            background: #0e6da0;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(14, 109, 160, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-job-bohrtechnik .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-job-bohrtechnik .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-job-bohrtechnik .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-bohrtechnik .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-job-bohrtechnik .footer-section a:hover {
            color: #80dddd;
        }

        body.page-job-bohrtechnik .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-job-bohrtechnik .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-job-bohrtechnik .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.7;
            padding: 4px;
        }

        body.page-job-bohrtechnik .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: #0e6da0;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-job-bohrtechnik .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-bohrtechnik .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-job-bohrtechnik .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-job-bohrtechnik .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-job-bohrtechnik .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-job-bohrtechnik .header-logos {
                display: none;
            }

            body.page-job-bohrtechnik .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-job-bohrtechnik .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-job-bohrtechnik .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-job-bohrtechnik .hero-title {
                font-size: 2.5rem;
            }

            body.page-job-bohrtechnik .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-job-bohrtechnik .jobs-grid {
                grid-template-columns: 1fr;
            }

            body.page-job-bohrtechnik .job-detail-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-job-bohrtechnik .scroll-indicator {
                display: none;
            }
        }

        /* Animations */



        body.page-job-bohrtechnik .job-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-job-bohrtechnik .job-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-job-bohrtechnik .job-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-job-bohrtechnik .job-card:nth-child(3) { animation-delay: 0.3s; }
        body.page-job-bohrtechnik .job-card:nth-child(4) { animation-delay: 0.4s; }


        /* Success Message */
        body.page-job-bohrtechnik .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 128, 0, 0.9);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            z-index: 2000;
            text-align: center;
            display: none;
        }

        body.page-job-bohrtechnik .success-message.show {
            display: block;
            animation: fadeInScale 0.5s ease-out;
        }

         /* Job Video */
        body.page-job-bohrtechnik .job-video {
            width: 100%;
            max-width: 1400px;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.page-job-bohrtechnik .job-video video {
            width: 100%;
            height: auto;
        }

        /* Floating Kontakt Button */
body.page-job-bohrtechnik .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-job-bohrtechnik .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-job-bohrtechnik .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-job-bohrtechnik .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-job-bohrtechnik .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-job-bohrtechnik .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-job-bohrtechnik .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-job-bohrtechnik .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-job-bohrtechnik .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== Job - Janning Galabau.html ===== */


        body.page-job-galabau {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-job-galabau .header {
            transition: top 0.3s ease;
            background: rgba(5, 153, 141, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-job-galabau .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-job-galabau .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-job-galabau .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-job-galabau .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-job-galabau .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-job-galabau .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-job-galabau .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-job-galabau .header-contact-link:hover {
            color: #e6f528;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-job-galabau .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-job-galabau .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-galabau .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-job-galabau .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-job-galabau .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        body.page-job-galabau .main-nav a:hover {
            color: #e6f528;
        }

        body.page-job-galabau .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #e6f528;
            transition: width 0.3s ease;
        }

        body.page-job-galabau .main-nav a:hover::after {
            width: 100%;
        }

        body.page-job-galabau .main-nav a.active {
            color: #e6f528;
        }

        body.page-job-galabau .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-job-galabau .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-job-galabau .dropdown-content {
            display: none;
            position: absolute;
            background: #05998d;
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-job-galabau .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-job-galabau .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-job-galabau .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-job-galabau .main-content {
            background: #05998d;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-job-galabau .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Job List Page */
        body.page-job-galabau .job-list-page {
            display: block;
        }

        body.page-job-galabau .hero-section {
            text-align: center;
            margin-bottom: 6rem;
        }

        body.page-job-galabau .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
            cursor: pointer;
        }

        body.page-job-galabau .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #e6f528;
        }

        body.page-job-galabau .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        body.page-job-galabau .hero-company-name {
            font-size: 2.5rem;
            color: #e6f528;
            cursor: pointer;
            margin-bottom: 2rem;
            font-weight: bold;
        }

        /* Job Cards */
        body.page-job-galabau .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-job-galabau .job-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-galabau .job-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-job-galabau .job-number {
            color: #e6f528;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        body.page-job-galabau .job-title {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        body.page-job-galabau .job-location {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        body.page-job-galabau .job-company {
            color: #e6f528;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        body.page-job-galabau .job-btn {
            display: inline-block;
            background: #e6f528;
            color: #05998d;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        body.page-job-galabau .job-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Job Detail Page */
        body.page-job-galabau .job-detail-page {
            display: none;
        }

        body.page-job-galabau .job-detail-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }

        body.page-job-galabau .job-detail-main {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-galabau .job-detail-sidebar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: fit-content;
        }

        body.page-job-galabau .job-detail-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        body.page-job-galabau .job-detail-subtitle {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-galabau .job-section {
            margin-bottom: 2.5rem;
        }

        body.page-job-galabau .job-section h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-job-galabau .job-section p, body.page-job-galabau .job-section li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-galabau .job-section ul {
            padding-left: 1.5rem;
        }

        body.page-job-galabau .sidebar-section {
            margin-bottom: 2rem;
        }

        body.page-job-galabau .sidebar-section h4 {
            color: #e6f528;
            margin-bottom: 0.5rem;
        }

        body.page-job-galabau .sidebar-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }

        body.page-job-galabau .back-btn {
            display: inline-block;
            background: #e6f528;
            color: #05998d;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            border: none;
            cursor: pointer;
        }

        body.page-job-galabau .back-btn:hover {
            background: #d4e320;
            transform: translateX(-5px);
        }

        body.page-job-galabau .apply-btn {
            display: inline-block;
            background: #e6f528;
            color: #05998d;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        body.page-job-galabau .apply-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Application Form */
        body.page-job-galabau .application-form-page {
            display: none;
        }

        body.page-job-galabau .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-galabau .form-title {
            color: #e6f528;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        body.page-job-galabau .form-group {
            margin-bottom: 1.5rem;
        }

        body.page-job-galabau .form-group label {
            display: block;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        body.page-job-galabau .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .form-group input::placeholder,
        body.page-job-galabau .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus,
        body.page-job-galabau .form-group textarea:focus {
            outline: none;
            border-color: #e6f528;
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-galabau .file-input {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        body.page-job-galabau .file-input input[type=file] {
            position: absolute;
            left: -9999px;
        }

        body.page-job-galabau .file-input-label {
            display: block;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-galabau .file-input-label:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-galabau .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-galabau .checkbox-container input[type="checkbox"] {
            width: auto;
            margin-top: 0.2rem;
        }

        body.page-job-galabau .checkbox-container label {
            margin-bottom: 0;
            flex: 1;
            font-size: 0.9rem;
        }

        body.page-job-galabau .submit-btn {
            width: 100%;
            background: #e6f528;
            color: #05998d;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-galabau .submit-btn:hover {
            background: #d4e320;
            transform: translateY(-2px);
        }

        body.page-job-galabau .submit-btn:disabled {
            background: #999;
            cursor: not-allowed;
            transform: none;
        }

        /* Footer */
        body.page-job-galabau .footer {
            background: #05998d;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(5, 153, 141, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-job-galabau .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-job-galabau .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-job-galabau .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-galabau .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-job-galabau .footer-section a:hover {
            color: #e6f528;
        }

        body.page-job-galabau .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-job-galabau .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-job-galabau .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

        body.page-job-galabau .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: #05998d;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-job-galabau .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-galabau .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-job-galabau .scroll-dot.active img {
            filter: brightness(0) invert(0.4);
        }

        body.page-job-galabau .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-job-galabau .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-job-galabau .header-logos {
                display: none;
            }

            body.page-job-galabau .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-job-galabau .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-job-galabau .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-job-galabau .hero-title {
                font-size: 2.5rem;
            }

            body.page-job-galabau .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-job-galabau .jobs-grid {
                grid-template-columns: 1fr;
            }

            body.page-job-galabau .job-detail-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-job-galabau .scroll-indicator {
                display: none;
            }
        }

        /* Animations */



        body.page-job-galabau .job-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-job-galabau .job-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-job-galabau .job-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-job-galabau .job-card:nth-child(3) { animation-delay: 0.3s; }
        body.page-job-galabau .job-card:nth-child(4) { animation-delay: 0.4s; }


        /* Success Message */
        body.page-job-galabau .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(230, 245, 40, 0.9);
            color: #05998d;
            padding: 2rem;
            border-radius: 10px;
            z-index: 2000;
            text-align: center;
            display: none;
            border: 2px solid #e6f528;
        }

        body.page-job-galabau .success-message.show {
            display: block;
            animation: fadeInScale 0.5s ease-out;
        }

                 /* Job Video */
        body.page-job-galabau .job-video {
            width: 100%;
            max-width: 1400px;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.page-job-galabau .job-video video {
            width: 100%;
            height: auto;
        }

        /* Floating Kontakt Button */
body.page-job-galabau .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-job-galabau .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-job-galabau .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-job-galabau .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-job-galabau .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-job-galabau .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-job-galabau .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-job-galabau .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-job-galabau .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== Job - Janning Rohrbau.html ===== */


        body.page-job-rohrbau {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-job-rohrbau .header {
            transition: top 0.3s ease;
            background: rgba(119, 103, 64, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-job-rohrbau .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-job-rohrbau .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-job-rohrbau .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-job-rohrbau .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-job-rohrbau .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-job-rohrbau .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-job-rohrbau .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-job-rohrbau .header-contact-link:hover {
            color: #e6f528;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-job-rohrbau .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-job-rohrbau .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-rohrbau .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-job-rohrbau .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-job-rohrbau .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        body.page-job-rohrbau .main-nav a:hover {
            color: #e6f528;
        }

        body.page-job-rohrbau .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #e6f528;
            transition: width 0.3s ease;
        }

        body.page-job-rohrbau .main-nav a:hover::after {
            width: 100%;
        }

        body.page-job-rohrbau .main-nav a.active {
            color: #e6f528;
        }

        body.page-job-rohrbau .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-job-rohrbau .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-job-rohrbau .dropdown-content {
            display: none;
            position: absolute;
            background: #776740;
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-job-rohrbau .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-job-rohrbau .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-job-rohrbau .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-job-rohrbau .main-content {
            background: #776740;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-job-rohrbau .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Job List Page */
        body.page-job-rohrbau .job-list-page {
            display: block;
        }

        body.page-job-rohrbau .hero-section {
            text-align: center;
            margin-bottom: 6rem;
        }

        body.page-job-rohrbau .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
            cursor: pointer;
        }

        body.page-job-rohrbau .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #e6f528;
        }

        body.page-job-rohrbau .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        body.page-job-rohrbau .hero-company-name {
            font-size: 2.5rem;
            color: #e6f528;
            cursor: pointer;
            margin-bottom: 2rem;
            font-weight: bold;
        }

        /* Job Cards */
        body.page-job-rohrbau .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-job-rohrbau .job-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-rohrbau .job-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-job-rohrbau .job-number {
            color: #e6f528;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        body.page-job-rohrbau .job-title {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        body.page-job-rohrbau .job-location {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        body.page-job-rohrbau .job-company {
            color: #e6f528;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        body.page-job-rohrbau .job-btn {
            display: inline-block;
            background: #e6f528;
            color: #776740;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        body.page-job-rohrbau .job-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Job Detail Page */
        body.page-job-rohrbau .job-detail-page {
            display: none;
        }

        body.page-job-rohrbau .job-detail-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }

        body.page-job-rohrbau .job-detail-main {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-rohrbau .job-detail-sidebar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: fit-content;
        }

        body.page-job-rohrbau .job-detail-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        body.page-job-rohrbau .job-detail-subtitle {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-rohrbau .job-section {
            margin-bottom: 2.5rem;
        }

        body.page-job-rohrbau .job-section h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-job-rohrbau .job-section p, body.page-job-rohrbau .job-section li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-rohrbau .job-section ul {
            padding-left: 1.5rem;
        }

        body.page-job-rohrbau .sidebar-section {
            margin-bottom: 2rem;
        }

        body.page-job-rohrbau .sidebar-section h4 {
            color: #e6f528;
            margin-bottom: 0.5rem;
        }

        body.page-job-rohrbau .sidebar-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }

        body.page-job-rohrbau .back-btn {
            display: inline-block;
            background: #e6f528;
            color: #776740;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            border: none;
            cursor: pointer;
        }

        body.page-job-rohrbau .back-btn:hover {
            background: #d4e320;
            transform: translateX(-5px);
        }

        body.page-job-rohrbau .apply-btn {
            display: inline-block;
            background: #e6f528;
            color: #776740;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        body.page-job-rohrbau .apply-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Application Form */
        body.page-job-rohrbau .application-form-page {
            display: none;
        }

        body.page-job-rohrbau .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-rohrbau .form-title {
            color: #e6f528;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        body.page-job-rohrbau .form-group {
            margin-bottom: 1.5rem;
        }

        body.page-job-rohrbau .form-group label {
            display: block;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        body.page-job-rohrbau .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .form-group input::placeholder,
        body.page-job-rohrbau .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus,
        body.page-job-rohrbau .form-group textarea:focus {
            outline: none;
            border-color: #e6f528;
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-rohrbau .file-input {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        body.page-job-rohrbau .file-input input[type=file] {
            position: absolute;
            left: -9999px;
        }

        body.page-job-rohrbau .file-input-label {
            display: block;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-rohrbau .file-input-label:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-rohrbau .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-rohrbau .checkbox-container input[type="checkbox"] {
            width: auto;
            margin-top: 0.2rem;
        }

        body.page-job-rohrbau .checkbox-container label {
            margin-bottom: 0;
            flex: 1;
            font-size: 0.9rem;
        }

        body.page-job-rohrbau .submit-btn {
            width: 100%;
            background: #e6f528;
            color: #776740;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-rohrbau .submit-btn:hover {
            background: #d4e320;
            transform: translateY(-2px);
        }

        body.page-job-rohrbau .submit-btn:disabled {
            background: #999;
            cursor: not-allowed;
            transform: none;
        }

        /* Footer */
        body.page-job-rohrbau .footer {
            background: #776740;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(119, 103, 64, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-job-rohrbau .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-job-rohrbau .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-job-rohrbau .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-rohrbau .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-job-rohrbau .footer-section a:hover {
            color: #e6f528;
        }

        body.page-job-rohrbau .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-job-rohrbau .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-job-rohrbau .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

        body.page-job-rohrbau .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: #776740;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-job-rohrbau .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-rohrbau .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-job-rohrbau .scroll-dot.active img {
            filter: brightness(0) invert(0.4);
        }

        body.page-job-rohrbau .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-job-rohrbau .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-job-rohrbau .header-logos {
                display: none;
            }

            body.page-job-rohrbau .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-job-rohrbau .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-job-rohrbau .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-job-rohrbau .hero-title {
                font-size: 2.5rem;
            }

            body.page-job-rohrbau .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-job-rohrbau .jobs-grid {
                grid-template-columns: 1fr;
            }

            body.page-job-rohrbau .job-detail-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-job-rohrbau .scroll-indicator {
                display: none;
            }
        }

        /* Animations */



        body.page-job-rohrbau .job-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-job-rohrbau .job-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-job-rohrbau .job-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-job-rohrbau .job-card:nth-child(3) { animation-delay: 0.3s; }
        body.page-job-rohrbau .job-card:nth-child(4) { animation-delay: 0.4s; }


        /* Success Message */
        body.page-job-rohrbau .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(230, 245, 40, 0.9);
            color: #776740;
            padding: 2rem;
            border-radius: 10px;
            z-index: 2000;
            text-align: center;
            display: none;
            border: 2px solid #e6f528;
        }

        body.page-job-rohrbau .success-message.show {
            display: block;
            animation: fadeInScale 0.5s ease-out;
        }

                /* Job Video */
        body.page-job-rohrbau .job-video {
            width: 100%;
            max-width: 1400px;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.page-job-rohrbau .job-video video {
            width: 100%;
            height: auto;
        }

        /* Floating Kontakt Button */
body.page-job-rohrbau .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-job-rohrbau .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-job-rohrbau .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-job-rohrbau .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-job-rohrbau .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-job-rohrbau .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-job-rohrbau .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-job-rohrbau .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-job-rohrbau .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== Job - Janning Tiefbau.html ===== */


        body.page-job-tiefbau {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-job-tiefbau .header {
            transition: top 0.3s ease;
            background: rgba(89, 89, 89, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-job-tiefbau .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-job-tiefbau .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-job-tiefbau .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-job-tiefbau .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-job-tiefbau .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-job-tiefbau .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-job-tiefbau .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-job-tiefbau .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-job-tiefbau .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-job-tiefbau .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-tiefbau .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-job-tiefbau .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-job-tiefbau .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        body.page-job-tiefbau .main-nav a:hover {
            color: #80dddd;
        }

        body.page-job-tiefbau .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-job-tiefbau .main-nav a:hover::after {
            width: 100%;
        }

        body.page-job-tiefbau .main-nav a.active {
            color: #e6f528;
        }

        body.page-job-tiefbau .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-job-tiefbau .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-job-tiefbau .dropdown-content {
            display: none;
            position: absolute;
            background: rgb(89, 89, 89);
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-job-tiefbau .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-job-tiefbau .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-job-tiefbau .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-job-tiefbau .main-content {
            background: #595959;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-job-tiefbau .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Job List Page */
        body.page-job-tiefbau .job-list-page {
            display: block;
        }

        body.page-job-tiefbau .hero-section {
            text-align: center;
            margin-bottom: 6rem;
        }

        body.page-job-tiefbau .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
            cursor: pointer;
        }

        body.page-job-tiefbau .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #e6f528;
        }

        body.page-job-tiefbau .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Job Cards */
        body.page-job-tiefbau .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-job-tiefbau .job-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-tiefbau .job-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-job-tiefbau .job-number {
            color: #e6f528;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        body.page-job-tiefbau .job-title {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        body.page-job-tiefbau .job-location {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        body.page-job-tiefbau .job-company {
            color: #e6f528;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        body.page-job-tiefbau .job-btn {
            display: inline-block;
            background: #e6f528;
            color: #595959;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        body.page-job-tiefbau .job-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Job Detail Page */
        body.page-job-tiefbau .job-detail-page {
            display: none;
        }

        body.page-job-tiefbau .job-detail-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }

        body.page-job-tiefbau .job-detail-main {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-tiefbau .job-detail-sidebar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: fit-content;
        }

        body.page-job-tiefbau .job-detail-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        body.page-job-tiefbau .job-detail-subtitle {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-tiefbau .job-section {
            margin-bottom: 2.5rem;
        }

        body.page-job-tiefbau .job-section h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-job-tiefbau .job-section p, body.page-job-tiefbau .job-section li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-tiefbau .job-section ul {
            padding-left: 1.5rem;
        }

        body.page-job-tiefbau .sidebar-section {
            margin-bottom: 2rem;
        }

        body.page-job-tiefbau .sidebar-section h4 {
            color: #e6f528;
            margin-bottom: 0.5rem;
        }

        body.page-job-tiefbau .sidebar-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }

        body.page-job-tiefbau .back-btn {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            border: none;
            cursor: pointer;
        }

        body.page-job-tiefbau .back-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateX(-5px);
        }

        body.page-job-tiefbau .apply-btn {
            display: inline-block;
            background: #e6f528;
            color: #595959;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        body.page-job-tiefbau .apply-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Application Form */
        body.page-job-tiefbau .application-form-page {
            display: none;
        }

        body.page-job-tiefbau .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-tiefbau .form-title {
            color: #e6f528;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        body.page-job-tiefbau .form-group {
            margin-bottom: 1.5rem;
        }

        body.page-job-tiefbau .form-group label {
            display: block;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        body.page-job-tiefbau .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .form-group input::placeholder,
        body.page-job-tiefbau .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus,
        body.page-job-tiefbau .form-group textarea:focus {
            outline: none;
            border-color: #e6f528;
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-tiefbau .file-input {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        body.page-job-tiefbau .file-input input[type=file] {
            position: absolute;
            left: -9999px;
        }

        body.page-job-tiefbau .file-input-label {
            display: block;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-tiefbau .file-input-label:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-tiefbau .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-tiefbau .checkbox-container input[type="checkbox"] {
            width: auto;
            margin-top: 0.2rem;
        }

        body.page-job-tiefbau .checkbox-container label {
            margin-bottom: 0;
            flex: 1;
            font-size: 0.9rem;
        }

        body.page-job-tiefbau .submit-btn {
            width: 100%;
            background: #e6f528;
            color: #595959;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-tiefbau .submit-btn:hover {
            background: #d4e320;
            transform: translateY(-2px);
        }

        body.page-job-tiefbau .submit-btn:disabled {
            background: #999;
            cursor: not-allowed;
            transform: none;
        }

        /* Footer */
        body.page-job-tiefbau .footer {
            background: #595959;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(89, 89, 89, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-job-tiefbau .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-job-tiefbau .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-job-tiefbau .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-tiefbau .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-job-tiefbau .footer-section a:hover {
            color: #80dddd;
        }

        body.page-job-tiefbau .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-job-tiefbau .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-job-tiefbau .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.7;
            padding: 4px;
        }

        body.page-job-tiefbau .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: rgb(89, 89, 89);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-job-tiefbau .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-tiefbau .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-job-tiefbau .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-job-tiefbau .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-job-tiefbau .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-job-tiefbau .header-logos {
                display: none;
            }

            body.page-job-tiefbau .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-job-tiefbau .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-job-tiefbau .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-job-tiefbau .hero-title {
                font-size: 2.5rem;
            }

            body.page-job-tiefbau .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-job-tiefbau .jobs-grid {
                grid-template-columns: 1fr;
            }

            body.page-job-tiefbau .job-detail-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-job-tiefbau .scroll-indicator {
                display: none;
            }
        }

        /* Animations */



        body.page-job-tiefbau .job-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-job-tiefbau .job-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-job-tiefbau .job-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-job-tiefbau .job-card:nth-child(3) { animation-delay: 0.3s; }
        body.page-job-tiefbau .job-card:nth-child(4) { animation-delay: 0.4s; }


        /* Success Message */
        body.page-job-tiefbau .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 128, 0, 0.9);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            z-index: 2000;
            text-align: center;
            display: none;
        }

        body.page-job-tiefbau .success-message.show {
            display: block;
            animation: fadeInScale 0.5s ease-out;
        }

            body.page-job-tiefbau .nav-dropdown {
            position: relative;
            display: inline-block;
        }
                /* Job Video */
        body.page-job-tiefbau .job-video {
            width: 100%;
            max-width: 1400px;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.page-job-tiefbau .job-video video {
            width: 100%;
            height: auto;
        }

        /* Floating Kontakt Button */
body.page-job-tiefbau .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-job-tiefbau .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-job-tiefbau .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-job-tiefbau .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-job-tiefbau .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-job-tiefbau .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-job-tiefbau .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-job-tiefbau .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-job-tiefbau .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== Job - Janning Transporte.html ===== */


        body.page-job-transporte {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(215, 114, 16, 0.8) 0%, rgba(230, 180, 100, 0.8) 100%),
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-job-transporte .header {
            transition: top 0.3s ease;
            background: rgba(215, 114, 16, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-job-transporte .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-job-transporte .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-job-transporte .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-job-transporte .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-job-transporte .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-job-transporte .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-job-transporte .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-job-transporte .header-contact-link:hover {
            color: #e6f528;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-job-transporte .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-job-transporte .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-transporte .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-job-transporte .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-job-transporte .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        body.page-job-transporte .main-nav a:hover {
            color: #e6f528;
        }

        body.page-job-transporte .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #e6f528;
            transition: width 0.3s ease;
        }

        body.page-job-transporte .main-nav a:hover::after {
            width: 100%;
        }

        body.page-job-transporte .main-nav a.active {
            color: #e6f528;
        }

        body.page-job-transporte .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-job-transporte .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-job-transporte .dropdown-content {
            display: none;
            position: absolute;
            background: #D77210;
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-job-transporte .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-job-transporte .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-job-transporte .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-job-transporte .main-content {
            background: #D77210;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-job-transporte .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Job List Page */
        body.page-job-transporte .job-list-page {
            display: block;
        }

        body.page-job-transporte .hero-section {
            text-align: center;
            margin-bottom: 6rem;
        }

        body.page-job-transporte .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
            cursor: pointer;
        }

        body.page-job-transporte .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #e6f528;
        }

        body.page-job-transporte .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Job Cards */
        body.page-job-transporte .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-job-transporte .job-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-job-transporte .job-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-job-transporte .job-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-job-transporte .job-card:nth-child(2) { animation-delay: 0.2s; }

        body.page-job-transporte .job-number {
            color: #e6f528;
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        body.page-job-transporte .job-title {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        body.page-job-transporte .job-location {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        body.page-job-transporte .job-company {
            color: #e6f528;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        body.page-job-transporte .job-btn {
            display: inline-block;
            background: #e6f528;
            color: #D77210;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        body.page-job-transporte .job-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Job Detail Page */
        body.page-job-transporte .job-detail-page {
            display: none;
        }

        body.page-job-transporte .job-detail-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }

        body.page-job-transporte .job-detail-main {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-transporte .job-detail-sidebar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: fit-content;
        }

        body.page-job-transporte .job-detail-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        body.page-job-transporte .job-detail-subtitle {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-transporte .job-section {
            margin-bottom: 2.5rem;
        }

        body.page-job-transporte .job-section h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-job-transporte .job-section p, body.page-job-transporte .job-section li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-transporte .job-section ul {
            padding-left: 1.5rem;
        }

        body.page-job-transporte .sidebar-section {
            margin-bottom: 2rem;
        }

        body.page-job-transporte .sidebar-section h4 {
            color: #e6f528;
            margin-bottom: 0.5rem;
        }

        body.page-job-transporte .sidebar-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }

        body.page-job-transporte .back-btn {
            display: inline-block;
            background: #e6f528;
            color: #D77210;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            border: none;
            cursor: pointer;
        }

        body.page-job-transporte .back-btn:hover {
            background: #d4e320;
            transform: translateX(-5px);
        }

        body.page-job-transporte .apply-btn {
            display: inline-block;
            background: #e6f528;
            color: #D77210;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        body.page-job-transporte .apply-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Application Form */
        body.page-job-transporte .application-form-page {
            display: none;
        }

        body.page-job-transporte .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-job-transporte .form-title {
            color: #e6f528;
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        body.page-job-transporte .form-group {
            margin-bottom: 1.5rem;
        }

        body.page-job-transporte .form-group label {
            display: block;
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        body.page-job-transporte .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .form-group input::placeholder,
        body.page-job-transporte .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus,
        body.page-job-transporte .form-group textarea:focus {
            outline: none;
            border-color: #e6f528;
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-transporte .file-input {
            position: relative;
            overflow: hidden;
            display: inline-block;
            width: 100%;
        }

        body.page-job-transporte .file-input input[type=file] {
            position: absolute;
            left: -9999px;
        }

        body.page-job-transporte .file-input-label {
            display: block;
            padding: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-transporte .file-input-label:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-job-transporte .checkbox-container {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        body.page-job-transporte .checkbox-container input[type="checkbox"] {
            width: auto;
            margin-top: 0.2rem;
        }

        body.page-job-transporte .checkbox-container label {
            margin-bottom: 0;
            flex: 1;
            font-size: 0.9rem;
        }

        body.page-job-transporte .submit-btn {
            width: 100%;
            background: #e6f528;
            color: #D77210;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.page-job-transporte .submit-btn:hover {
            background: #d4e320;
            transform: translateY(-2px);
        }

        body.page-job-transporte .submit-btn:disabled {
            background: #999;
            cursor: not-allowed;
            transform: none;
        }

        /* Footer */
        body.page-job-transporte .footer {
            background: #D77210;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(215, 114, 16, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-job-transporte .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-job-transporte .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-job-transporte .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-job-transporte .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-job-transporte .footer-section a:hover {
            color: #e6f528;
        }

        body.page-job-transporte .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-job-transporte .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-job-transporte .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

        body.page-job-transporte .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: #D77210;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-job-transporte .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-job-transporte .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-job-transporte .scroll-dot.active img {
            filter: brightness(0) invert(0.4);
        }

        body.page-job-transporte .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-job-transporte .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem;
            }

            body.page-job-transporte .header-logos {
                display: none;
            }

            body.page-job-transporte .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-job-transporte .header-logo {
                height: 36px;
            }

            body.page-job-transporte .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-job-transporte .hero-title {
                font-size: 2.5rem;
            }

            body.page-job-transporte .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-job-transporte .jobs-grid {
                grid-template-columns: 1fr;
            }

            body.page-job-transporte .job-detail-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-job-transporte .scroll-indicator {
                display: none;
            }
        }

        /* Animations */




        /* Success Message */
        body.page-job-transporte .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(230, 245, 40, 0.9);
            color: #D77210;
            padding: 2rem;
            border-radius: 10px;
            z-index: 2000;
            text-align: center;
            display: none;
            border: 2px solid #e6f528;
        }

        body.page-job-transporte .success-message.show {
            display: block;
            animation: fadeInScale 0.5s ease-out;
        }


        /* Job Video */
        body.page-job-transporte .job-video {
            width: 100%;
            max-width: 1400px;
            margin: 2rem auto;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.page-job-transporte .job-video video {
            width: 100%;
            height: auto;
        }

        /* Floating Kontakt Button */
        body.page-job-transporte .floating-contact-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: auto;
            height: 50px;
            padding: 0 20px;
            background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            color: #D77210;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: pulse 2s infinite;
        }

        body.page-job-transporte .floating-contact-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
            color: #D77210;
            text-decoration: none;
        }

        body.page-job-transporte .floating-contact-btn::before {
            content: "KONTAKT";
            font-size: 16px;
            color: #D77210;
            font-weight: bold;
            letter-spacing: 1px;
        }

        body.page-job-transporte .floating-contact-btn::after {
            display: none;
        }

        @media (max-width: 768px) {
            body.page-job-transporte .floating-contact-btn {
                bottom: 20px;
                right: 20px;
                height: 45px;
                padding: 0 15px;
            }
            body.page-job-transporte .floating-contact-btn::before {
                font-size: 14px;
            }
        }


        body.page-job-transporte .floating-contact-btn.animate {
            animation: bounceIn 0.6s ease-out;
        }



/* ===== neue webseite.html ===== */


        body.page-neue-webseite {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-neue-webseite .header {
            transition: top 0.3s ease;
            background: rgba(44, 102, 102, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-neue-webseite .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 1.2rem;
            padding: 0 1.5rem;
        }

        body.page-neue-webseite .header-logos {
            display: flex;
            gap: 0.6rem;
        }

        body.page-neue-webseite .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-neue-webseite .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-neue-webseite .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-neue-webseite .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-neue-webseite .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-neue-webseite .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

body.page-neue-webseite .header-contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative; /* Fügen Sie diese Zeile hinzu */
    top: 3px; /* Fügen Sie diese Zeile hinzu */
}
        body.page-neue-webseite .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-neue-webseite .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-neue-webseite .main-nav {
            display: flex;
            gap: 2rem;
        }

        body.page-neue-webseite .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-neue-webseite .main-nav a:hover {
            color: #80dddd;
        }

        body.page-neue-webseite .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-neue-webseite .main-nav a:hover::after {
            width: 100%;
        }
/* Dropdown Menu */
body.page-neue-webseite .nav-dropdown {
    position: relative;
    display: inline-block;
}

body.page-neue-webseite .dropdown-content {
    display: none;
    position: absolute;
    background: rgba(44, 102, 102, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

body.page-neue-webseite .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-neue-webseite .dropdown-content a:last-child {
    border-bottom: none;
}

body.page-neue-webseite .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e6f528;
}
        /* Hero Section */
body.page-neue-webseite .hero-section {
    min-height: 100vh;
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 2rem 3rem;
    position: relative;
    opacity: 0;
    animation: fadeInContent 0.5s ease-out 0.5s both;
}
        body.page-neue-webseite .hero-title {
            font-size: 3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.8rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        body.page-neue-webseite .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 800px;
        }

        body.page-neue-webseite .companies-grid {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            max-width: 1200px;
            width: 100%;
            justify-content: center;
            flex-wrap: nowrap;
        }

        body.page-neue-webseite .company-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            flex: 1;
            min-width: 0;
            max-width: 190px;
        }

        body.page-neue-webseite .company-card:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.2);
        }

        body.page-neue-webseite .company-logo {
            width: 100%;
            max-width: 160px;
            height: auto;
            transition: transform 0.3s ease;
            margin-bottom: 0.6rem;
        }

        body.page-neue-webseite .company-card:hover .company-logo {
            transform: scale(1.1);
        }

        body.page-neue-webseite .company-preview {
            color: white;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Content Sections */
        body.page-neue-webseite .content-section {
            min-height: 100vh;
            padding: 8rem 2rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.page-neue-webseite .section-tiefbau {
            background: #595959;
            color: white;
        }

        body.page-neue-webseite .section-bohrtechnik {
            background: #116ba1;
            color: white;
        }

        body.page-neue-webseite .section-rohrbau {
            background: #76663f;
            color: white;
        }

        body.page-neue-webseite .section-galabau {
            background: #05998d;
            color: white;
        }

        body.page-neue-webseite .section-transporte {
            background: #D77210;
            color: white;
        }

        body.page-neue-webseite .content-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        body.page-neue-webseite .content-left {
            text-align: center;
        }

        body.page-neue-webseite .content-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-neue-webseite .content-right h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #80dddd;
        }

        body.page-neue-webseite .content-right p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        body.page-neue-webseite .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-neue-webseite .feature-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        body.page-neue-webseite .feature-card h3 {
            color: #80dddd;
            margin-bottom: 1rem;
        }

        /* Bohrtechnik Table */
        body.page-neue-webseite .bohrtechnik-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .bohrtechnik-table th,
        body.page-neue-webseite .bohrtechnik-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-neue-webseite .bohrtechnik-table th {
            background: rgba(255, 255, 255, 0.2);
            color: #80dddd;
            font-weight: bold;
        }

        /* Footer */
body.page-neue-webseite .footer {
    background: rgba(44, 102, 102, 0.3);  /* Ändere von 0.95 zu 0.3 */
    backdrop-filter: blur(10px);          /* Ändere von 15px zu 10px */
    border-top: 0.1px solid #e6f528;
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-neue-webseite .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-neue-webseite .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-neue-webseite .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-neue-webseite .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-neue-webseite .footer-section a:hover {
            color: #80dddd;
        }

        body.page-neue-webseite .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-neue-webseite .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-neue-webseite .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: rgba(44, 102, 102, 0.9);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-neue-webseite .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-neue-webseite .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-neue-webseite .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-neue-webseite .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-neue-webseite .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem;
            }

            body.page-neue-webseite .header-logos {
                display: none;
            }

            body.page-neue-webseite .header-contact {
                order: 2;
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-neue-webseite .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-neue-webseite .hero-title {
                font-size: 2.5rem;
            }

            body.page-neue-webseite .companies-grid {
                flex-direction: column;
                gap: 2rem;
            }

            body.page-neue-webseite .company-card {
                max-width: 100%;
            }

            body.page-neue-webseite .content-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            body.page-neue-webseite .content-right h2 {
                font-size: 2rem;
            }

            /* Tiefbau Mobile Styles */
            body.page-neue-webseite #tiefbau h1 {
                font-size: 2rem !important;
            }

            body.page-neue-webseite #tiefbau div[style*="grid-template-columns: 1fr 1fr"] {
                display: block !important;
            }

            body.page-neue-webseite #tiefbau div[style*="grid-template-columns: 1fr 2fr"] {
                display: block !important;
            }

            body.page-neue-webseite #tiefbau div[style*="grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))"] {
                grid-template-columns: 1fr !important;
            }

            /* Rohrbau Mobile Styles */
            body.page-neue-webseite #rohrbau h1 {
                font-size: 2rem !important;
            }

            body.page-neue-webseite #rohrbau div[style*="grid-template-columns: 1fr 1fr"] {
                display: block !important;
            }

            body.page-neue-webseite #rohrbau div[style*="grid-template-columns: 1fr 2fr"] {
                display: block !important;
            }

            /* Bohrtechnik Mobile Styles */
            body.page-neue-webseite #bohrtechnik h1 {
                font-size: 2rem !important;
            }

            body.page-neue-webseite #bohrtechnik div[style*="grid-template-columns: 1fr 1fr"] {
                display: block !important;
            }

            body.page-neue-webseite #bohrtechnik div[style*="grid-template-columns: 1fr 2fr"] {
                display: block !important;
            }

            body.page-neue-webseite #bohrtechnik div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
                grid-template-columns: 1fr !important;
            }

            /* Galabau Mobile Styles */
            body.page-neue-webseite #galabau h1 {
                font-size: 2rem !important;
            }

            body.page-neue-webseite #galabau div[style*="grid-template-columns: 1fr 1fr"] {
                display: block !important;
            }

            body.page-neue-webseite #galabau div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
                grid-template-columns: 1fr !important;
            }

            body.page-neue-webseite .scroll-indicator {
                display: none;
            }

            body.page-neue-webseite .header-contact-icon {
                width: 32px;
                height: 32px;
            }
        }

        @media (max-width: 1200px) {
            body.page-neue-webseite .header-contact {
                gap: 1rem;
            }

            body.page-neue-webseite .header-contact-item {
                font-size: 0.8rem;
            }

            body.page-neue-webseite .header-contact-icon {
                width: 24px;
                height: 24px;
            }
        }

        /* Animations */



        body.page-neue-webseite .company-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-neue-webseite .company-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-neue-webseite .company-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-neue-webseite .company-card:nth-child(3) { animation-delay: 0.3s; }
        body.page-neue-webseite .company-card:nth-child(4) { animation-delay: 0.4s; }
        body.page-neue-webseite .company-card:nth-child(5) { animation-delay: 0.5s; }

/* Slideshow Container */
body.page-neue-webseite .slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Einzelne Slides */
body.page-neue-webseite .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

body.page-neue-webseite .slide.active {
    opacity: 1;
}

/* Hintergrund für Bilder */
body.page-neue-webseite .slide-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video Styling */
body.page-neue-webseite .slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay für Farbfilter */
body.page-neue-webseite .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%);
    z-index: 1;
}
body.page-neue-webseite .hero-title, body.page-neue-webseite .hero-subtitle, body.page-neue-webseite .companies-grid {
    position: relative;
    z-index: 2;
}
/* Lightbox Gallery */
body.page-neue-webseite .gallery-image {
    cursor: pointer !important;
}

body.page-neue-webseite .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

body.page-neue-webseite .lightbox.active {
    display: flex;
}

body.page-neue-webseite .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-neue-webseite .lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body.page-neue-webseite .lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

body.page-neue-webseite .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

body.page-neue-webseite .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

body.page-neue-webseite .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

body.page-neue-webseite .lightbox-prev {
    left: -80px;
}

body.page-neue-webseite .lightbox-next {
    right: -80px;
}

body.page-neue-webseite .lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
}
        body.page-neue-webseite .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

body.page-neue-webseite .scroll-logos {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

body.page-neue-webseite .scroll-logos img {
    width: 40px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

body.page-neue-webseite .scroll-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Mobile Video Fixes */
@media (max-width: 768px) {
    body.page-neue-webseite .slide-video {
        object-fit: cover;
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: -1 !important;
    }

    /* Fallback: Videos auf mobilen Geräten ausblenden */
    body.page-neue-webseite .slideshow-container {
        background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                    url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed !important;
    }

    body.page-neue-webseite .slide {
        display: none;
    }

    body.page-neue-webseite .slide:first-child {
        display: block;
    }

    body.page-neue-webseite .slide:first-child .slide-background {
        display: block;
    }

    body.page-neue-webseite .slide video {
        display: none !important;
    }

    body.page-neue-webseite .lightbox-nav {
        position: fixed;
        width: 55px;
        height: 55px;
        font-size: 28px;
        top: 50%;
        transform: translateY(-50%);
    }

    body.page-neue-webseite .lightbox-prev {
        left: 8px;
    }

    body.page-neue-webseite .lightbox-next {
        right: 8px;
    }

    body.page-neue-webseite .lightbox-close {
        position: fixed;
        top: 15px;
        right: 15px;
    }

    body.page-neue-webseite .lightbox-counter {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 14px;
    }
}
/* Mitarbeiter Counter */
body.page-neue-webseite .employee-counter {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem 3rem;
    text-align: center;
    margin: 2rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 300px;
}

body.page-neue-webseite .counter-number {
    font-size: 3rem;
    color: #e6f528;
    font-weight: bold;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

body.page-neue-webseite .counter-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Floating Kontakt Button */
body.page-neue-webseite .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-neue-webseite .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-neue-webseite .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-neue-webseite .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-neue-webseite .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-neue-webseite .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-neue-webseite .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-neue-webseite .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-neue-webseite .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== q - Bohrtechnik.html ===== */


        body.page-qualitaet-bohrtechnik {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-qualitaet-bohrtechnik .header {
            transition: top 0.3s ease;
            background: rgb(14, 109, 160);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-qualitaet-bohrtechnik .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-qualitaet-bohrtechnik .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-qualitaet-bohrtechnik .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-qualitaet-bohrtechnik .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-qualitaet-bohrtechnik .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-qualitaet-bohrtechnik .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-qualitaet-bohrtechnik .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-qualitaet-bohrtechnik .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-qualitaet-bohrtechnik .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-bohrtechnik .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-bohrtechnik .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-qualitaet-bohrtechnik .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-qualitaet-bohrtechnik .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-qualitaet-bohrtechnik .main-nav a:hover {
            color: #80dddd;
        }

        body.page-qualitaet-bohrtechnik .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-qualitaet-bohrtechnik .main-nav a:hover::after {
            width: 100%;
        }

        body.page-qualitaet-bohrtechnik .main-nav a.active {
            color: #e6f528;
        }

        body.page-qualitaet-bohrtechnik .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }
/* Dropdown Menu */
body.page-qualitaet-bohrtechnik .nav-dropdown {
    position: relative;
    display: inline-block;
}

body.page-qualitaet-bohrtechnik .dropdown-content {
    display: none;
    position: absolute;
    background: rgb(14, 109, 160);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

body.page-qualitaet-bohrtechnik .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-qualitaet-bohrtechnik .dropdown-content a:last-child {
    border-bottom: none;
}

body.page-qualitaet-bohrtechnik .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e6f528;
}

        /* Main Content */
        body.page-qualitaet-bohrtechnik .main-content {
            background: #116ba1;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-qualitaet-bohrtechnik .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-qualitaet-bohrtechnik .hero-section {
            text-align: center;
            margin-bottom: 6rem;
        }

        body.page-qualitaet-bohrtechnik .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-qualitaet-bohrtechnik .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-qualitaet-bohrtechnik .hero-subtitle {
            font-size: 1.5rem;
            color: #e6f528;
            max-width: 800px;
            margin: 0 auto 2rem;
            font-weight: bold;
        }

        body.page-qualitaet-bohrtechnik .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        /* Certificates Section */
        body.page-qualitaet-bohrtechnik .certificates-section {
            margin-bottom: 6rem;
        }

        body.page-qualitaet-bohrtechnik .section-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        body.page-qualitaet-bohrtechnik .certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        body.page-qualitaet-bohrtechnik .certificate-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-qualitaet-bohrtechnik .certificate-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-qualitaet-bohrtechnik .certificate-card h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-qualitaet-bohrtechnik .certificate-card p {
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-qualitaet-bohrtechnik .download-btn {
            display: inline-block;
            background: #e6f528;
            color: #116ba1;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        body.page-qualitaet-bohrtechnik .download-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Gallery Section */
        body.page-qualitaet-bohrtechnik .gallery-section {
            margin-bottom: 4rem;
        }

        body.page-qualitaet-bohrtechnik .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        body.page-qualitaet-bohrtechnik .gallery-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        body.page-qualitaet-bohrtechnik .gallery-image:hover {
            transform: scale(1.05);
        }

        /* Lightbox Gallery */
        body.page-qualitaet-bohrtechnik .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        body.page-qualitaet-bohrtechnik .lightbox.active {
            display: flex;
        }

        body.page-qualitaet-bohrtechnik .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.page-qualitaet-bohrtechnik .lightbox-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        body.page-qualitaet-bohrtechnik .lightbox-close {
            position: absolute;
            top: -50px;
            right: -50px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        body.page-qualitaet-bohrtechnik .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        body.page-qualitaet-bohrtechnik .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            user-select: none;
        }

        body.page-qualitaet-bohrtechnik .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        body.page-qualitaet-bohrtechnik .lightbox-prev {
            left: -80px;
        }

        body.page-qualitaet-bohrtechnik .lightbox-next {
            right: -80px;
        }

        body.page-qualitaet-bohrtechnik .lightbox-counter {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 16px;
            border-radius: 20px;
        }

        body.page-qualitaet-bohrtechnik .lightbox-title {
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 18px;
            text-align: center;
            max-width: 400px;
        }


        /* Footer */
body.page-qualitaet-bohrtechnik .footer {
    background: #0e6da0;  
    backdrop-filter: blur(10px);
    border-top: 0.1px solid #e6f528;     
box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-qualitaet-bohrtechnik .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-qualitaet-bohrtechnik .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-qualitaet-bohrtechnik .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-qualitaet-bohrtechnik .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-qualitaet-bohrtechnik .footer-section a:hover {
            color: #80dddd;
        }

        body.page-qualitaet-bohrtechnik .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-qualitaet-bohrtechnik .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-qualitaet-bohrtechnik .header-logos {
                display: none;
            }

            body.page-qualitaet-bohrtechnik .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-qualitaet-bohrtechnik .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-qualitaet-bohrtechnik .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-qualitaet-bohrtechnik .hero-title {
                font-size: 2.5rem;
            }

            body.page-qualitaet-bohrtechnik .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-qualitaet-bohrtechnik .certificates-grid {
                grid-template-columns: 1fr;
            }

            body.page-qualitaet-bohrtechnik .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            body.page-qualitaet-bohrtechnik .header-contact-icon {
                width: 32px;
                height: 32px;
            }

            body.page-qualitaet-bohrtechnik .lightbox-close {
                top: 20px;
                right: 20px;
                font-size: 30px;
                width: 40px;
                height: 40px;
            }

            body.page-qualitaet-bohrtechnik .lightbox-nav {
                position: fixed;
                width: 55px;
                height: 55px;
                font-size: 28px;
                top: 50%;
                transform: translateY(-50%);
            }

            body.page-qualitaet-bohrtechnik .lightbox-prev {
                left: 8px;
            }

            body.page-qualitaet-bohrtechnik .lightbox-next {
                right: 8px;
            }

            body.page-qualitaet-bohrtechnik .lightbox-close {
                position: fixed;
                top: 15px;
                right: 15px;
            }

            body.page-qualitaet-bohrtechnik .lightbox-counter {
                position: fixed;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 14px;
            }

            body.page-qualitaet-bohrtechnik .lightbox-title {
                top: 20px;
                font-size: 16px;
                max-width: 300px;
            }
        }

        @media (max-width: 1200px) {
            body.page-qualitaet-bohrtechnik .header-contact {
                gap: 1rem;
            }

            body.page-qualitaet-bohrtechnik .header-contact-item {
                font-size: 0.8rem;
            }

            body.page-qualitaet-bohrtechnik .header-contact-icon {
                width: 24px;
                height: 24px;
            }
        }

        /* Animations */



        body.page-qualitaet-bohrtechnik .certificate-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-qualitaet-bohrtechnik .certificate-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-qualitaet-bohrtechnik .certificate-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-qualitaet-bohrtechnik .certificate-card:nth-child(3) { animation-delay: 0.3s; }

/* Scroll Indicator */
body.page-qualitaet-bohrtechnik .scroll-indicator {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

body.page-qualitaet-bohrtechnik .scroll-dot {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgb(14, 109, 160);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.2 !important;
}

body.page-qualitaet-bohrtechnik .scroll-dot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

body.page-qualitaet-bohrtechnik .scroll-dot.active {
    background: #e6f528;
    transform: scale(1.2);
    border-color: #e6f528;
    opacity: 1 !important;
}

body.page-qualitaet-bohrtechnik .scroll-dot.active img {
    filter: brightness(0) invert(0.3);
}

        body.page-qualitaet-bohrtechnik .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

/* Responsive - auf mobilen Geräten verstecken */
@media (max-width: 768px) {
    body.page-qualitaet-bohrtechnik .scroll-indicator {
        display: none;
    }
}
        body.page-qualitaet-bohrtechnik .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

body.page-qualitaet-bohrtechnik .scroll-logos {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

body.page-qualitaet-bohrtechnik .scroll-logos img {
    width: 40px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

body.page-qualitaet-bohrtechnik .scroll-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Floating Kontakt Button */
body.page-qualitaet-bohrtechnik .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-qualitaet-bohrtechnik .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-qualitaet-bohrtechnik .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-qualitaet-bohrtechnik .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-qualitaet-bohrtechnik .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-qualitaet-bohrtechnik .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-qualitaet-bohrtechnik .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-qualitaet-bohrtechnik .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-qualitaet-bohrtechnik .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== q - Galabau.html ===== */


        body.page-qualitaet-galabau {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-qualitaet-galabau .header {
            transition: top 0.3s ease;
            background: rgb(5, 153, 141);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-qualitaet-galabau .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-qualitaet-galabau .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-qualitaet-galabau .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-qualitaet-galabau .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-qualitaet-galabau .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-qualitaet-galabau .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-qualitaet-galabau .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-qualitaet-galabau .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-qualitaet-galabau .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-galabau .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-galabau .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-qualitaet-galabau .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-qualitaet-galabau .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-qualitaet-galabau .main-nav a:hover {
            color: #80dddd;
        }

        body.page-qualitaet-galabau .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-qualitaet-galabau .main-nav a:hover::after {
            width: 100%;
        }

        body.page-qualitaet-galabau .main-nav a.active {
            color: #e6f528;
        }

        body.page-qualitaet-galabau .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }
/* Dropdown Menu */
body.page-qualitaet-galabau .nav-dropdown {
    position: relative;
    display: inline-block;
}

body.page-qualitaet-galabau .dropdown-content {
    display: none;
    position: absolute;
    background: rgb(5, 153, 141);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

body.page-qualitaet-galabau .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-qualitaet-galabau .dropdown-content a:last-child {
    border-bottom: none;
}

body.page-qualitaet-galabau .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e6f528;
}

body.page-qualitaet-galabau .nav-dropdown:hover .dropdown-content {
    display: block;
}

        /* Main Content */
        body.page-qualitaet-galabau .main-content {
            background: #05998d;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-qualitaet-galabau .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-qualitaet-galabau .hero-section {
            text-align: center;
            margin-bottom: 8rem;
        }

        body.page-qualitaet-galabau .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-qualitaet-galabau .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-qualitaet-galabau .hero-subtitle {
            font-size: 1.5rem;
            color: #e6f528;
            max-width: 800px;
            margin: 0 auto 2rem;
            font-weight: bold;
        }

        body.page-qualitaet-galabau .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Quality Section */
        body.page-qualitaet-galabau .quality-section {
            margin-bottom: 6rem;
        }

        body.page-qualitaet-galabau .section-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        body.page-qualitaet-galabau .quality-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        body.page-qualitaet-galabau .quality-text {
            font-size: 1.1rem;
            line-height: 1.8;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-qualitaet-galabau .quality-image {
            text-align: center;
        }

        body.page-qualitaet-galabau .quality-image img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-galabau .quality-image img:hover {
            transform: scale(1.05);
        }

        body.page-qualitaet-galabau .quality-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-qualitaet-galabau .highlight-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-qualitaet-galabau .highlight-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-qualitaet-galabau .highlight-card h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-qualitaet-galabau .highlight-card p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Gallery Section */
        body.page-qualitaet-galabau .gallery-section {
            margin-bottom: 4rem;
        }

        body.page-qualitaet-galabau .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        body.page-qualitaet-galabau .gallery-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.page-qualitaet-galabau .gallery-image:hover {
            transform: scale(1.05);
        }

        /* Lightbox Gallery */
        body.page-qualitaet-galabau .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        body.page-qualitaet-galabau .lightbox.active {
            display: flex;
        }

        body.page-qualitaet-galabau .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.page-qualitaet-galabau .lightbox-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        body.page-qualitaet-galabau .lightbox-close {
            position: absolute;
            top: -50px;
            right: -50px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        body.page-qualitaet-galabau .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        body.page-qualitaet-galabau .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            user-select: none;
        }

        body.page-qualitaet-galabau .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        body.page-qualitaet-galabau .lightbox-prev {
            left: -80px;
        }

        body.page-qualitaet-galabau .lightbox-next {
            right: -80px;
        }

        body.page-qualitaet-galabau .lightbox-counter {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 16px;
            border-radius: 20px;
        }

        body.page-qualitaet-galabau .lightbox-title {
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 18px;
            text-align: center;
            max-width: 400px;
        }

        /* Footer */
body.page-qualitaet-galabau .footer {
    background: #05998d;  
    backdrop-filter: blur(10px);   
    border-top: 0.1px solid #e6f528;  
box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-qualitaet-galabau .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-qualitaet-galabau .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-qualitaet-galabau .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-qualitaet-galabau .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-qualitaet-galabau .footer-section a:hover {
            color: #80dddd;
        }

        body.page-qualitaet-galabau .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-qualitaet-galabau .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-qualitaet-galabau .header-logos {
                display: none;
            }

            body.page-qualitaet-galabau .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-qualitaet-galabau .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-qualitaet-galabau .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-qualitaet-galabau .hero-title {
                font-size: 2.5rem;
            }

            body.page-qualitaet-galabau .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-qualitaet-galabau .quality-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-qualitaet-galabau .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            body.page-qualitaet-galabau .gallery-image {
                height: 200px;
            }

            body.page-qualitaet-galabau .hero-description {
                padding: 2rem;
            }

            body.page-qualitaet-galabau .quality-text {
                padding: 2rem;
            }

            body.page-qualitaet-galabau .header-contact-icon {
                width: 32px;
                height: 32px;
            }

            body.page-qualitaet-galabau .lightbox-close {
                top: 20px;
                right: 20px;
                font-size: 30px;
                width: 40px;
                height: 40px;
            }

            body.page-qualitaet-galabau .lightbox-nav {
                position: fixed;
                width: 55px;
                height: 55px;
                font-size: 28px;
                top: 50%;
                transform: translateY(-50%);
            }

            body.page-qualitaet-galabau .lightbox-prev {
                left: 8px;
            }

            body.page-qualitaet-galabau .lightbox-next {
                right: 8px;
            }

            body.page-qualitaet-galabau .lightbox-close {
                position: fixed;
                top: 15px;
                right: 15px;
            }

            body.page-qualitaet-galabau .lightbox-counter {
                position: fixed;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 14px;
            }

            body.page-qualitaet-galabau .lightbox-title {
                top: 20px;
                font-size: 16px;
                max-width: 300px;
            }
        }

        @media (max-width: 1200px) {
            body.page-qualitaet-galabau .header-contact {
                gap: 1rem;
            }

            body.page-qualitaet-galabau .header-contact-item {
                font-size: 0.8rem;
            }

            body.page-qualitaet-galabau .header-contact-icon {
                width: 24px;
                height: 24px;
            }
        }

        /* Animations */



        body.page-qualitaet-galabau .highlight-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-qualitaet-galabau .highlight-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-qualitaet-galabau .highlight-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-qualitaet-galabau .highlight-card:nth-child(3) { animation-delay: 0.3s; }
        body.page-qualitaet-galabau .highlight-card:nth-child(4) { animation-delay: 0.4s; }

/* Scroll Indicator */
body.page-qualitaet-galabau .scroll-indicator {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

body.page-qualitaet-galabau .scroll-dot {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgb(5, 153, 141);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.2 !important;
}

body.page-qualitaet-galabau .scroll-dot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

body.page-qualitaet-galabau .scroll-dot.active {
    background: #e6f528;
    transform: scale(1.2);
    border-color: #e6f528;
    opacity: 1 !important;
}

body.page-qualitaet-galabau .scroll-dot.active img {
    filter: brightness(0) invert(0.3);
}

        body.page-qualitaet-galabau .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

/* Responsive - auf mobilen Geräten verstecken */
@media (max-width: 768px) {
    body.page-qualitaet-galabau .scroll-indicator {
        display: none;
    }
}
        body.page-qualitaet-galabau .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

body.page-qualitaet-galabau .scroll-logos {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

body.page-qualitaet-galabau .scroll-logos img {
    width: 40px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

body.page-qualitaet-galabau .scroll-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Floating Kontakt Button */
body.page-qualitaet-galabau .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-qualitaet-galabau .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-qualitaet-galabau .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-qualitaet-galabau .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-qualitaet-galabau .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-qualitaet-galabau .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-qualitaet-galabau .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-qualitaet-galabau .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-qualitaet-galabau .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== q - Rohrbau.html ===== */


        body.page-qualitaet-rohrbau {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-qualitaet-rohrbau .header {
            transition: top 0.3s ease;
            background: rgb(119, 103, 64);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-qualitaet-rohrbau .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-qualitaet-rohrbau .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-qualitaet-rohrbau .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-qualitaet-rohrbau .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-qualitaet-rohrbau .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-qualitaet-rohrbau .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-qualitaet-rohrbau .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-qualitaet-rohrbau .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-qualitaet-rohrbau .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-rohrbau .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-rohrbau .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-qualitaet-rohrbau .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-qualitaet-rohrbau .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-qualitaet-rohrbau .main-nav a:hover {
            color: #80dddd;
        }

        body.page-qualitaet-rohrbau .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-qualitaet-rohrbau .main-nav a:hover::after {
            width: 100%;
        }

        body.page-qualitaet-rohrbau .main-nav a.active {
            color: #e6f528;
        }

        body.page-qualitaet-rohrbau .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }
/* Dropdown Menu */
body.page-qualitaet-rohrbau .nav-dropdown {
    position: relative;
    display: inline-block;
}

body.page-qualitaet-rohrbau .dropdown-content {
    display: none;
    position: absolute;
    background: rgb(119, 103, 64);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

body.page-qualitaet-rohrbau .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-qualitaet-rohrbau .dropdown-content a:last-child {
    border-bottom: none;
}

body.page-qualitaet-rohrbau .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e6f528;
}

body.page-qualitaet-rohrbau .nav-dropdown:hover .dropdown-content {
    display: block;
}
        /* Main Content */
        body.page-qualitaet-rohrbau .main-content {
            background: #76663f;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-qualitaet-rohrbau .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-qualitaet-rohrbau .hero-section {
            text-align: center;
            margin-bottom: 8rem;
        }

        body.page-qualitaet-rohrbau .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-qualitaet-rohrbau .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-qualitaet-rohrbau .hero-subtitle {
            font-size: 1.5rem;
            color: #e6f528;
            max-width: 800px;
            margin: 0 auto 2rem;
            font-weight: bold;
        }

        body.page-qualitaet-rohrbau .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Quality Section */
        body.page-qualitaet-rohrbau .quality-section {
            margin-bottom: 6rem;
        }

        body.page-qualitaet-rohrbau .section-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        body.page-qualitaet-rohrbau .quality-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        body.page-qualitaet-rohrbau .quality-text {
            font-size: 1.1rem;
            line-height: 1.8;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-qualitaet-rohrbau .quality-image {
            text-align: center;
        }

        body.page-qualitaet-rohrbau .quality-image img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-rohrbau .quality-image img:hover {
            transform: scale(1.05);
        }

        body.page-qualitaet-rohrbau .quality-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-qualitaet-rohrbau .highlight-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-qualitaet-rohrbau .highlight-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-qualitaet-rohrbau .highlight-card h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-qualitaet-rohrbau .highlight-card p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Gallery Section */
        body.page-qualitaet-rohrbau .gallery-section {
            margin-bottom: 4rem;
        }

        body.page-qualitaet-rohrbau .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        body.page-qualitaet-rohrbau .gallery-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.page-qualitaet-rohrbau .gallery-image:hover {
            transform: scale(1.05);
        }

        /* Lightbox Gallery */
        body.page-qualitaet-rohrbau .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        body.page-qualitaet-rohrbau .lightbox.active {
            display: flex;
        }

        body.page-qualitaet-rohrbau .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.page-qualitaet-rohrbau .lightbox-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        body.page-qualitaet-rohrbau .lightbox-close {
            position: absolute;
            top: -50px;
            right: -50px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        body.page-qualitaet-rohrbau .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        body.page-qualitaet-rohrbau .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            user-select: none;
        }

        body.page-qualitaet-rohrbau .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        body.page-qualitaet-rohrbau .lightbox-prev {
            left: -80px;
        }

        body.page-qualitaet-rohrbau .lightbox-next {
            right: -80px;
        }

        body.page-qualitaet-rohrbau .lightbox-counter {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 16px;
            border-radius: 20px;
        }

        body.page-qualitaet-rohrbau .lightbox-title {
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 18px;
            text-align: center;
            max-width: 400px;
        }

        /* Footer */
body.page-qualitaet-rohrbau .footer {
    background: #776740;  
    backdrop-filter: blur(10px);  
    border-top: 0.1px solid #e6f528;   
box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-qualitaet-rohrbau .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-qualitaet-rohrbau .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-qualitaet-rohrbau .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-qualitaet-rohrbau .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-qualitaet-rohrbau .footer-section a:hover {
            color: #80dddd;
        }

        body.page-qualitaet-rohrbau .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-qualitaet-rohrbau .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-qualitaet-rohrbau .header-logos {
                display: none;
            }

            body.page-qualitaet-rohrbau .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-qualitaet-rohrbau .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-qualitaet-rohrbau .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-qualitaet-rohrbau .hero-title {
                font-size: 2.5rem;
            }

            body.page-qualitaet-rohrbau .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-qualitaet-rohrbau .quality-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-qualitaet-rohrbau .gallery-grid {
                grid-template-columns: 1fr;
            }

            body.page-qualitaet-rohrbau .gallery-image {
                height: 250px;
            }

            body.page-qualitaet-rohrbau .hero-description {
                padding: 2rem;
            }

            body.page-qualitaet-rohrbau .quality-text {
                padding: 2rem;
            }

            body.page-qualitaet-rohrbau .header-contact-icon {
                width: 32px;
                height: 32px;
            }

            body.page-qualitaet-rohrbau .lightbox-close {
                top: 20px;
                right: 20px;
                font-size: 30px;
                width: 40px;
                height: 40px;
            }

            body.page-qualitaet-rohrbau .lightbox-nav {
                position: fixed;
                width: 55px;
                height: 55px;
                font-size: 28px;
                top: 50%;
                transform: translateY(-50%);
            }

            body.page-qualitaet-rohrbau .lightbox-prev {
                left: 8px;
            }

            body.page-qualitaet-rohrbau .lightbox-next {
                right: 8px;
            }

            body.page-qualitaet-rohrbau .lightbox-close {
                position: fixed;
                top: 15px;
                right: 15px;
            }

            body.page-qualitaet-rohrbau .lightbox-counter {
                position: fixed;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 14px;
            }

            body.page-qualitaet-rohrbau .lightbox-title {
                top: 20px;
                font-size: 16px;
                max-width: 300px;
            }
        }

        @media (max-width: 1200px) {
            body.page-qualitaet-rohrbau .header-contact {
                gap: 1rem;
            }

            body.page-qualitaet-rohrbau .header-contact-item {
                font-size: 0.8rem;
            }

            body.page-qualitaet-rohrbau .header-contact-icon {
                width: 24px;
                height: 24px;
            }
        }

        /* Animations */



        body.page-qualitaet-rohrbau .highlight-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-qualitaet-rohrbau .highlight-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-qualitaet-rohrbau .highlight-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-qualitaet-rohrbau .highlight-card:nth-child(3) { animation-delay: 0.3s; }

/* Scroll Indicator */
body.page-qualitaet-rohrbau .scroll-indicator {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

body.page-qualitaet-rohrbau .scroll-dot {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgb(119, 103, 64);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.2 !important;
}

body.page-qualitaet-rohrbau .scroll-dot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

body.page-qualitaet-rohrbau .scroll-dot.active {
    background: #e6f528;
    transform: scale(1.2);
    border-color: #e6f528;
    opacity: 1 !important;
}

body.page-qualitaet-rohrbau .scroll-dot.active img {
    filter: brightness(0) invert(0.3);
}

        body.page-qualitaet-rohrbau .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

/* Responsive - auf mobilen Geräten verstecken */
@media (max-width: 768px) {
    body.page-qualitaet-rohrbau .scroll-indicator {
        display: none;
    }
}
        body.page-qualitaet-rohrbau .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

body.page-qualitaet-rohrbau .scroll-logos {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

body.page-qualitaet-rohrbau .scroll-logos img {
    width: 40px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

body.page-qualitaet-rohrbau .scroll-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Floating Kontakt Button */
body.page-qualitaet-rohrbau .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-qualitaet-rohrbau .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-qualitaet-rohrbau .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-qualitaet-rohrbau .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-qualitaet-rohrbau .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-qualitaet-rohrbau .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-qualitaet-rohrbau .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-qualitaet-rohrbau .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-qualitaet-rohrbau .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== q - Tiefbau.html ===== */


        body.page-qualitaet-tiefbau {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%), 
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-qualitaet-tiefbau .header {
            transition: top 0.3s ease;
            background: rgba(89, 89, 89, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-qualitaet-tiefbau .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-qualitaet-tiefbau .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-qualitaet-tiefbau .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-qualitaet-tiefbau .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-qualitaet-tiefbau .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-qualitaet-tiefbau .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-qualitaet-tiefbau .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-qualitaet-tiefbau .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-qualitaet-tiefbau .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-tiefbau .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-tiefbau .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-qualitaet-tiefbau .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-qualitaet-tiefbau .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-qualitaet-tiefbau .main-nav a:hover {
            color: #80dddd;
        }

        body.page-qualitaet-tiefbau .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-qualitaet-tiefbau .main-nav a:hover::after {
            width: 100%;
        }

        body.page-qualitaet-tiefbau .main-nav a.active {
            color: #e6f528;
        }

        body.page-qualitaet-tiefbau .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }
/* Dropdown Menu */
body.page-qualitaet-tiefbau .nav-dropdown {
    position: relative;
    display: inline-block;
}

body.page-qualitaet-tiefbau .dropdown-content {
    display: none;
    position: absolute;
    background: rgb(89, 89, 89);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

body.page-qualitaet-tiefbau .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.page-qualitaet-tiefbau .dropdown-content a:last-child {
    border-bottom: none;
}

body.page-qualitaet-tiefbau .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e6f528;
}

        /* Main Content */
        body.page-qualitaet-tiefbau .main-content {
            background: #595959;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-qualitaet-tiefbau .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-qualitaet-tiefbau .hero-section {
            text-align: center;
            margin-bottom: 6rem;
        }

        body.page-qualitaet-tiefbau .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-qualitaet-tiefbau .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-qualitaet-tiefbau .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Certificates Section */
        body.page-qualitaet-tiefbau .certificates-section {
            margin-bottom: 6rem;
        }

        body.page-qualitaet-tiefbau .section-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        body.page-qualitaet-tiefbau .certificates-intro {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 4rem;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        body.page-qualitaet-tiefbau .certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        body.page-qualitaet-tiefbau .certificate-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-qualitaet-tiefbau .certificate-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-qualitaet-tiefbau .certificate-card h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-qualitaet-tiefbau .certificate-card p {
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-qualitaet-tiefbau .download-btn {
            display: inline-block;
            background: #e6f528;
            color: #595959;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        body.page-qualitaet-tiefbau .download-btn:hover {
            background: #d4e320;
            transform: scale(1.05);
        }

        /* Gallery Section */
        body.page-qualitaet-tiefbau .gallery-section {
            margin-bottom: 4rem;
        }

        body.page-qualitaet-tiefbau .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        body.page-qualitaet-tiefbau .gallery-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        body.page-qualitaet-tiefbau .gallery-image:hover {
            transform: scale(1.05);
        }

        /* Footer */
        body.page-qualitaet-tiefbau .footer {
            background: #595959;
            backdrop-filter: blur(10px); 
            border-top: 0.1px solid #e6f528;    
            box-shadow: 0 -2px 20px rgba(89, 89, 89, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            backdrop-filter: blur(15px);
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-qualitaet-tiefbau .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-qualitaet-tiefbau .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-qualitaet-tiefbau .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-qualitaet-tiefbau .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-qualitaet-tiefbau .footer-section a:hover {
            color: #80dddd;
        }

        body.page-qualitaet-tiefbau .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Lightbox Gallery */
        body.page-qualitaet-tiefbau .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        body.page-qualitaet-tiefbau .lightbox.active {
            display: flex;
        }

        body.page-qualitaet-tiefbau .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.page-qualitaet-tiefbau .lightbox-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        body.page-qualitaet-tiefbau .lightbox-close {
            position: absolute;
            top: -50px;
            right: -50px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        body.page-qualitaet-tiefbau .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        body.page-qualitaet-tiefbau .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            user-select: none;
        }

        body.page-qualitaet-tiefbau .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        body.page-qualitaet-tiefbau .lightbox-prev {
            left: -80px;
        }

        body.page-qualitaet-tiefbau .lightbox-next {
            right: -80px;
        }

        body.page-qualitaet-tiefbau .lightbox-counter {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 16px;
            border-radius: 20px;
        }

        body.page-qualitaet-tiefbau .lightbox-title {
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 18px;
            text-align: center;
            max-width: 400px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-qualitaet-tiefbau .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem; /* Weniger Padding */
            }

            body.page-qualitaet-tiefbau .header-logos {
                display: none;
            }

            body.page-qualitaet-tiefbau .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-qualitaet-tiefbau .header-logo {
                height: 36px; /* Kleinere Logos auf Mobile */
            }

            body.page-qualitaet-tiefbau .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-qualitaet-tiefbau .hero-title {
                font-size: 2.5rem;
            }

            body.page-qualitaet-tiefbau .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-qualitaet-tiefbau .certificates-grid {
                grid-template-columns: 1fr;
            }

            body.page-qualitaet-tiefbau .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            body.page-qualitaet-tiefbau .header-contact-icon {
                width: 32px;
                height: 32px;
            }

            body.page-qualitaet-tiefbau .lightbox-nav {
                position: fixed;
                width: 55px;
                height: 55px;
                font-size: 28px;
                top: 50%;
                transform: translateY(-50%);
            }

            body.page-qualitaet-tiefbau .lightbox-prev {
                left: 8px;
            }

            body.page-qualitaet-tiefbau .lightbox-next {
                right: 8px;
            }

            body.page-qualitaet-tiefbau .lightbox-close {
                position: fixed;
                top: 15px;
                right: 15px;
            }

            body.page-qualitaet-tiefbau .lightbox-counter {
                position: fixed;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 14px;
            }
        }

        @media (max-width: 1200px) {
            body.page-qualitaet-tiefbau .header-contact {
                gap: 1rem;
            }

            body.page-qualitaet-tiefbau .header-contact-item {
                font-size: 0.8rem;
            }

            body.page-qualitaet-tiefbau .header-contact-icon {
                width: 24px;
                height: 24px;
            }
        }


        /* Animations */



        body.page-qualitaet-tiefbau .certificate-card {
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-qualitaet-tiefbau .certificate-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-qualitaet-tiefbau .certificate-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-qualitaet-tiefbau .certificate-card:nth-child(3) { animation-delay: 0.3s; }
        body.page-qualitaet-tiefbau .certificate-card:nth-child(4) { animation-delay: 0.4s; }
        body.page-qualitaet-tiefbau .certificate-card:nth-child(5) { animation-delay: 0.5s; }
        body.page-qualitaet-tiefbau .certificate-card:nth-child(6) { animation-delay: 0.6s; }

/* Scroll Indicator */
body.page-qualitaet-tiefbau .scroll-indicator {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

body.page-qualitaet-tiefbau .scroll-dot {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgb(89, 89, 89);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.2 !important;
}

body.page-qualitaet-tiefbau .scroll-dot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

body.page-qualitaet-tiefbau .scroll-dot.active {
    background: #e6f528;
    transform: scale(1.2);
    border-color: #e6f528;
    opacity: 1 !important;
}

body.page-qualitaet-tiefbau .scroll-dot.active img {
    filter: brightness(0) invert(0.3);
}

        body.page-qualitaet-tiefbau .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

/* Responsive - auf mobilen Geräten verstecken */
@media (max-width: 768px) {
    body.page-qualitaet-tiefbau .scroll-indicator {
        display: none;
    }
}
        body.page-qualitaet-tiefbau .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

body.page-qualitaet-tiefbau .scroll-logos {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

body.page-qualitaet-tiefbau .scroll-logos img {
    width: 40px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

body.page-qualitaet-tiefbau .scroll-logos img:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Floating Kontakt Button */
body.page-qualitaet-tiefbau .floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #2c6666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.page-qualitaet-tiefbau .floating-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
    color: #2c6666;
    text-decoration: none;
}

body.page-qualitaet-tiefbau .floating-contact-btn:active {
    transform: scale(0.95);
}

/* Text im Button */
body.page-qualitaet-tiefbau .floating-contact-btn::before {
    content: "KONTAKT";
    font-size: 16px;
    color: #2c6666;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Tooltip entfernen bei Text-Version */
body.page-qualitaet-tiefbau .floating-contact-btn::after {
    display: none;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    body.page-qualitaet-tiefbau .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 15px;
    }

    body.page-qualitaet-tiefbau .floating-contact-btn::before {
        font-size: 14px;
    }
}

/* Animation beim Laden der Seite */

body.page-qualitaet-tiefbau .floating-contact-btn.animate {
    animation: bounceIn 0.6s ease-out;
}

/* Pulse Animation für mehr Aufmerksamkeit */

body.page-qualitaet-tiefbau .floating-contact-btn {
    animation: pulse 2s infinite;
}


/* ===== q - Transporte.html ===== */


        body.page-qualitaet-transporte {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(215, 114, 16, 0.8) 0%, rgba(230, 180, 100, 0.8) 100%),
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-qualitaet-transporte .header {
            transition: top 0.3s ease;
            background: rgb(215, 114, 16);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-qualitaet-transporte .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-qualitaet-transporte .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-qualitaet-transporte .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-qualitaet-transporte .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-qualitaet-transporte .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-qualitaet-transporte .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-qualitaet-transporte .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-qualitaet-transporte .header-contact-link:hover {
            color: #e6f528;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-qualitaet-transporte .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-transporte .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-transporte .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-qualitaet-transporte .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-qualitaet-transporte .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-qualitaet-transporte .main-nav a:hover {
            color: #e6f528;
        }

        body.page-qualitaet-transporte .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #e6f528;
            transition: width 0.3s ease;
        }

        body.page-qualitaet-transporte .main-nav a:hover::after {
            width: 100%;
        }

        body.page-qualitaet-transporte .main-nav a.active {
            color: #e6f528;
        }

        body.page-qualitaet-transporte .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-qualitaet-transporte .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-qualitaet-transporte .dropdown-content {
            display: none;
            position: absolute;
            background: rgb(215, 114, 16);
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-qualitaet-transporte .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-qualitaet-transporte .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-qualitaet-transporte .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        body.page-qualitaet-transporte .nav-dropdown:hover .dropdown-content {
            display: block;
        }

        /* Main Content */
        body.page-qualitaet-transporte .main-content {
            background: #D77210;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-qualitaet-transporte .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-qualitaet-transporte .hero-section {
            text-align: center;
            margin-bottom: 8rem;
        }

        body.page-qualitaet-transporte .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-qualitaet-transporte .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-qualitaet-transporte .hero-subtitle {
            font-size: 1.5rem;
            color: #e6f528;
            max-width: 800px;
            margin: 0 auto 2rem;
            font-weight: bold;
        }

        body.page-qualitaet-transporte .hero-description {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 900px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Quality Section */
        body.page-qualitaet-transporte .quality-section {
            margin-bottom: 6rem;
        }

        body.page-qualitaet-transporte .section-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        body.page-qualitaet-transporte .quality-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        body.page-qualitaet-transporte .quality-text {
            font-size: 1.1rem;
            line-height: 1.8;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        body.page-qualitaet-transporte .quality-image {
            text-align: center;
        }

        body.page-qualitaet-transporte .quality-image img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-transporte .quality-image img:hover {
            transform: scale(1.05);
        }

        body.page-qualitaet-transporte .quality-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        body.page-qualitaet-transporte .highlight-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.6s ease-out;
        }

        body.page-qualitaet-transporte .highlight-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        body.page-qualitaet-transporte .highlight-card:nth-child(1) { animation-delay: 0.1s; }
        body.page-qualitaet-transporte .highlight-card:nth-child(2) { animation-delay: 0.2s; }
        body.page-qualitaet-transporte .highlight-card:nth-child(3) { animation-delay: 0.3s; }
        body.page-qualitaet-transporte .highlight-card:nth-child(4) { animation-delay: 0.4s; }

        body.page-qualitaet-transporte .highlight-card h3 {
            color: #e6f528;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        body.page-qualitaet-transporte .highlight-card p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Gallery Section */
        body.page-qualitaet-transporte .gallery-section {
            margin-bottom: 4rem;
        }

        body.page-qualitaet-transporte .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        body.page-qualitaet-transporte .gallery-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        body.page-qualitaet-transporte .gallery-image:hover {
            transform: scale(1.05);
        }

        /* Lightbox Gallery */
        body.page-qualitaet-transporte .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        body.page-qualitaet-transporte .lightbox.active {
            display: flex;
        }

        body.page-qualitaet-transporte .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        body.page-qualitaet-transporte .lightbox-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        body.page-qualitaet-transporte .lightbox-close {
            position: absolute;
            top: -50px;
            right: -50px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        body.page-qualitaet-transporte .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        body.page-qualitaet-transporte .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            user-select: none;
        }

        body.page-qualitaet-transporte .lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        body.page-qualitaet-transporte .lightbox-prev { left: -80px; }
        body.page-qualitaet-transporte .lightbox-next { right: -80px; }

        body.page-qualitaet-transporte .lightbox-counter {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 16px;
            border-radius: 20px;
        }

        body.page-qualitaet-transporte .lightbox-title {
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 18px;
            text-align: center;
            max-width: 400px;
        }

        /* Footer */
        body.page-qualitaet-transporte .footer {
            background: #D77210;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
            color: white;
            padding: 1.5rem 0 0.5rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-qualitaet-transporte .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-qualitaet-transporte .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-qualitaet-transporte .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-qualitaet-transporte .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-qualitaet-transporte .footer-section a:hover {
            color: #e6f528;
        }

        body.page-qualitaet-transporte .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-qualitaet-transporte .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-qualitaet-transporte .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: rgb(215, 114, 16);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-qualitaet-transporte .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-qualitaet-transporte .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-qualitaet-transporte .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-qualitaet-transporte .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        body.page-qualitaet-transporte .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-qualitaet-transporte .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem;
            }

            body.page-qualitaet-transporte .header-logos {
                display: none;
            }

            body.page-qualitaet-transporte .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-qualitaet-transporte .header-logo { height: 36px; }

            body.page-qualitaet-transporte .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-qualitaet-transporte .hero-title { font-size: 2.5rem; }

            body.page-qualitaet-transporte .main-content { padding: 8rem 1rem 4rem; }

            body.page-qualitaet-transporte .quality-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            body.page-qualitaet-transporte .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            body.page-qualitaet-transporte .gallery-image { height: 200px; }
            body.page-qualitaet-transporte .hero-description { padding: 2rem; }
            body.page-qualitaet-transporte .quality-text { padding: 2rem; }

            body.page-qualitaet-transporte .lightbox-close { position: fixed; top: 15px; right: 15px; }
            body.page-qualitaet-transporte .lightbox-nav { position: fixed; width: 55px; height: 55px; font-size: 28px; top: 50%; transform: translateY(-50%); }
            body.page-qualitaet-transporte .lightbox-prev { left: 8px; }
            body.page-qualitaet-transporte .lightbox-next { right: 8px; }
            body.page-qualitaet-transporte .lightbox-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 14px; }
            body.page-qualitaet-transporte .lightbox-title { top: 20px; font-size: 16px; max-width: 300px; }

            body.page-qualitaet-transporte .scroll-indicator { display: none; }
        }

        @media (max-width: 1200px) {
            body.page-qualitaet-transporte .header-contact { gap: 1rem; }
            body.page-qualitaet-transporte .header-contact-item { font-size: 0.8rem; }
            body.page-qualitaet-transporte .header-contact-icon { width: 24px; height: 24px; }
        }

        /* Animations */




        /* Floating Kontakt Button */
        body.page-qualitaet-transporte .floating-contact-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: auto;
            height: 50px;
            padding: 0 20px;
            background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            color: #D77210;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: pulse 2s infinite;
        }

        body.page-qualitaet-transporte .floating-contact-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
            color: #D77210;
            text-decoration: none;
        }

        body.page-qualitaet-transporte .floating-contact-btn::before {
            content: "KONTAKT";
            font-size: 16px;
            color: #D77210;
            font-weight: bold;
            letter-spacing: 1px;
        }

        body.page-qualitaet-transporte .floating-contact-btn::after { display: none; }

        @media (max-width: 768px) {
            body.page-qualitaet-transporte .floating-contact-btn { bottom: 20px; right: 20px; height: 45px; padding: 0 15px; }
            body.page-qualitaet-transporte .floating-contact-btn::before { font-size: 14px; }
        }


        body.page-qualitaet-transporte .floating-contact-btn.animate { animation: bounceIn 0.6s ease-out; }



/* ===== unternehmen-historie.html ===== */


        body.page-unternehmen-historie {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%),
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-unternehmen-historie .header {
            transition: top 0.3s ease;
            background: rgba(89, 89, 89, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-unternehmen-historie .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-unternehmen-historie .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-unternehmen-historie .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-unternehmen-historie .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-unternehmen-historie .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-unternehmen-historie .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-unternehmen-historie .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-unternehmen-historie .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-unternehmen-historie .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-historie .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-historie .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-unternehmen-historie .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-unternehmen-historie .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-unternehmen-historie .main-nav a:hover {
            color: #80dddd;
        }

        body.page-unternehmen-historie .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-unternehmen-historie .main-nav a:hover::after {
            width: 100%;
        }

        body.page-unternehmen-historie .main-nav a.active {
            color: #e6f528;
        }

        body.page-unternehmen-historie .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-unternehmen-historie .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-unternehmen-historie .dropdown-content {
            display: none;
            position: absolute;
            background: rgba(44, 102, 102, 0.95);
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-unternehmen-historie .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-unternehmen-historie .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-unternehmen-historie .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-unternehmen-historie .main-content {
            background: #595959;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-unternehmen-historie .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-unternehmen-historie .hero-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        body.page-unternehmen-historie .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-unternehmen-historie .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-unternehmen-historie .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Content Section */
        body.page-unternehmen-historie .content-section {
            margin-bottom: 4rem;
        }

        body.page-unternehmen-historie .section-title {
            color: #e6f528;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        body.page-unternehmen-historie .content-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            line-height: 1.8;
        }

        body.page-unternehmen-historie .content-box h2 {
            color: #e6f528;
            font-size: 1.8rem;
            margin: 2.5rem 0 1.5rem 0;
            border-bottom: 2px solid #e6f528;
            padding-bottom: 0.5rem;
        }

        body.page-unternehmen-historie .content-box h2:first-child {
            margin-top: 0;
        }

        body.page-unternehmen-historie .content-box h3 {
            color: #80dddd;
            font-size: 1.3rem;
            margin: 2rem 0 1rem 0;
        }

        body.page-unternehmen-historie .content-box p {
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-unternehmen-historie .content-box ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        body.page-unternehmen-historie .content-box li {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-unternehmen-historie .content-box strong {
            color: #80dddd;
            font-weight: 600;
        }

        body.page-unternehmen-historie .milestone-box {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #e6f528;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }

        body.page-unternehmen-historie .milestone-box .year {
            color: #e6f528;
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        body.page-unternehmen-historie .footer {
            background: #595959;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(89, 89, 89, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-unternehmen-historie .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-unternehmen-historie .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-unternehmen-historie .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-unternehmen-historie .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-unternehmen-historie .footer-section a:hover {
            color: #80dddd;
        }

        body.page-unternehmen-historie .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-unternehmen-historie .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-unternehmen-historie .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: rgb(89, 89, 89);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-unternehmen-historie .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-historie .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-unternehmen-historie .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-unternehmen-historie .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        body.page-unternehmen-historie .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

        /* Floating Kontakt Button */
        body.page-unternehmen-historie .floating-contact-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: auto;
            height: 50px;
            padding: 0 20px;
            background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            color: #2c6666;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: pulse 2s infinite;
        }

        body.page-unternehmen-historie .floating-contact-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
            color: #2c6666;
            text-decoration: none;
        }

        body.page-unternehmen-historie .floating-contact-btn::before {
            content: "KONTAKT";
            font-size: 16px;
            color: #2c6666;
            font-weight: bold;
            letter-spacing: 1px;
        }

        body.page-unternehmen-historie .floating-contact-btn::after {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-unternehmen-historie .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem;
            }

            body.page-unternehmen-historie .header-logos {
                display: none;
            }

            body.page-unternehmen-historie .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-unternehmen-historie .header-logo {
                height: 36px;
            }

            body.page-unternehmen-historie .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-unternehmen-historie .hero-title {
                font-size: 2.5rem;
            }

            body.page-unternehmen-historie .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-unternehmen-historie .content-box {
                padding: 2rem;
            }

            body.page-unternehmen-historie .scroll-indicator {
                display: none;
            }

            body.page-unternehmen-historie .floating-contact-btn {
                bottom: 20px;
                right: 20px;
                height: 45px;
                padding: 0 15px;
            }

            body.page-unternehmen-historie .floating-contact-btn::before {
                font-size: 14px;
            }
        }

        /* Animations */





/* ===== unternehmen-standorte.html ===== */


        body.page-unternehmen-standorte {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%),
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-unternehmen-standorte .header {
            transition: top 0.3s ease;
            background: rgba(89, 89, 89, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-unternehmen-standorte .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-unternehmen-standorte .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-unternehmen-standorte .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-unternehmen-standorte .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-unternehmen-standorte .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-unternehmen-standorte .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-unternehmen-standorte .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-unternehmen-standorte .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-unternehmen-standorte .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-standorte .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-standorte .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-unternehmen-standorte .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-unternehmen-standorte .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-unternehmen-standorte .main-nav a:hover {
            color: #80dddd;
        }

        body.page-unternehmen-standorte .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-unternehmen-standorte .main-nav a:hover::after {
            width: 100%;
        }

        body.page-unternehmen-standorte .main-nav a.active {
            color: #e6f528;
        }

        body.page-unternehmen-standorte .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-unternehmen-standorte .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-unternehmen-standorte .dropdown-content {
            display: none;
            position: absolute;
            background: rgba(44, 102, 102, 0.95);
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-unternehmen-standorte .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-unternehmen-standorte .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-unternehmen-standorte .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-unternehmen-standorte .main-content {
            background: #595959;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-unternehmen-standorte .content-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-unternehmen-standorte .hero-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        body.page-unternehmen-standorte .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-unternehmen-standorte .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-unternehmen-standorte .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Standorte Grid */
        body.page-unternehmen-standorte .standorte-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        body.page-unternehmen-standorte .standort-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-standorte .standort-card:hover {
            transform: translateY(-5px);
        }

        body.page-unternehmen-standorte .standort-map {
            width: 100%;
            height: 300px;
            border: none;
            display: block;
        }

        body.page-unternehmen-standorte .standort-info {
            padding: 1.5rem;
        }

        body.page-unternehmen-standorte .standort-info h2 {
            color: #e6f528;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #e6f528;
            padding-bottom: 0.5rem;
        }

        body.page-unternehmen-standorte .standort-info p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        body.page-unternehmen-standorte .standort-info p strong {
            color: #80dddd;
            min-width: 80px;
        }

        body.page-unternehmen-standorte .standort-info a {
            color: #80dddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        body.page-unternehmen-standorte .standort-info a:hover {
            color: #e6f528;
        }

        /* Footer */
        body.page-unternehmen-standorte .footer {
            background: #595959;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(89, 89, 89, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-unternehmen-standorte .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-unternehmen-standorte .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-unternehmen-standorte .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-unternehmen-standorte .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-unternehmen-standorte .footer-section a:hover {
            color: #80dddd;
        }

        body.page-unternehmen-standorte .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-unternehmen-standorte .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-unternehmen-standorte .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: rgb(89, 89, 89);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-unternehmen-standorte .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-standorte .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-unternehmen-standorte .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-unternehmen-standorte .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        body.page-unternehmen-standorte .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

        /* Floating Kontakt Button */
        body.page-unternehmen-standorte .floating-contact-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: auto;
            height: 50px;
            padding: 0 20px;
            background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            color: #2c6666;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: pulse 2s infinite;
        }

        body.page-unternehmen-standorte .floating-contact-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
            color: #2c6666;
            text-decoration: none;
        }

        body.page-unternehmen-standorte .floating-contact-btn::before {
            content: "KONTAKT";
            font-size: 16px;
            color: #2c6666;
            font-weight: bold;
            letter-spacing: 1px;
        }

        body.page-unternehmen-standorte .floating-contact-btn::after {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            body.page-unternehmen-standorte .standorte-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            body.page-unternehmen-standorte .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem;
            }

            body.page-unternehmen-standorte .header-logos {
                display: none;
            }

            body.page-unternehmen-standorte .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-unternehmen-standorte .header-logo {
                height: 36px;
            }

            body.page-unternehmen-standorte .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-unternehmen-standorte .hero-title {
                font-size: 2.5rem;
            }

            body.page-unternehmen-standorte .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-unternehmen-standorte .scroll-indicator {
                display: none;
            }

            body.page-unternehmen-standorte .floating-contact-btn {
                bottom: 20px;
                right: 20px;
                height: 45px;
                padding: 0 15px;
            }

            body.page-unternehmen-standorte .floating-contact-btn::before {
                font-size: 14px;
            }
        }

        /* Animations */





/* ===== unternehmen-team-fuehrung.html ===== */


        body.page-unternehmen-team {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%),
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-unternehmen-team .header {
            transition: top 0.3s ease;
            background: rgba(89, 89, 89, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-unternehmen-team .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-unternehmen-team .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-unternehmen-team .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-unternehmen-team .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-unternehmen-team .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-unternehmen-team .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-unternehmen-team .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-unternehmen-team .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-unternehmen-team .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-team .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-team .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-unternehmen-team .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-unternehmen-team .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-unternehmen-team .main-nav a:hover {
            color: #80dddd;
        }

        body.page-unternehmen-team .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-unternehmen-team .main-nav a:hover::after {
            width: 100%;
        }

        body.page-unternehmen-team .main-nav a.active {
            color: #e6f528;
        }

        body.page-unternehmen-team .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-unternehmen-team .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-unternehmen-team .dropdown-content {
            display: none;
            position: absolute;
            background: rgba(44, 102, 102, 0.95);
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-unternehmen-team .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-unternehmen-team .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-unternehmen-team .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-unternehmen-team .main-content {
            background: #595959;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-unternehmen-team .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-unternehmen-team .hero-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        body.page-unternehmen-team .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-unternehmen-team .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-unternehmen-team .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Drone Photo */
        body.page-unternehmen-team .drone-photo-section {
            margin-bottom: 4rem;
        }

        body.page-unternehmen-team .drone-photo {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        /* Content Section */
        body.page-unternehmen-team .content-section {
            margin-bottom: 4rem;
        }

        body.page-unternehmen-team .content-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            line-height: 1.8;
        }

        body.page-unternehmen-team .content-box h2 {
            color: #e6f528;
            font-size: 1.8rem;
            margin: 2.5rem 0 1.5rem 0;
            border-bottom: 2px solid #e6f528;
            padding-bottom: 0.5rem;
        }

        body.page-unternehmen-team .content-box h2:first-child {
            margin-top: 0;
        }

        body.page-unternehmen-team .content-box h3 {
            color: #80dddd;
            font-size: 1.3rem;
            margin: 2rem 0 1rem 0;
        }

        body.page-unternehmen-team .content-box p {
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-unternehmen-team .content-box ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        body.page-unternehmen-team .content-box li {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-unternehmen-team .content-box strong {
            color: #80dddd;
            font-weight: 600;
        }

        body.page-unternehmen-team .value-box {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #e6f528;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }

        body.page-unternehmen-team .value-box h4 {
            color: #e6f528;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        body.page-unternehmen-team .footer {
            background: #595959;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(89, 89, 89, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-unternehmen-team .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-unternehmen-team .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-unternehmen-team .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-unternehmen-team .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-unternehmen-team .footer-section a:hover {
            color: #80dddd;
        }

        body.page-unternehmen-team .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-unternehmen-team .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-unternehmen-team .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: rgb(89, 89, 89);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-unternehmen-team .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-team .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-unternehmen-team .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-unternehmen-team .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        body.page-unternehmen-team .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

        /* Floating Kontakt Button */
        body.page-unternehmen-team .floating-contact-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: auto;
            height: 50px;
            padding: 0 20px;
            background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            color: #2c6666;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: pulse 2s infinite;
        }

        body.page-unternehmen-team .floating-contact-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
            color: #2c6666;
            text-decoration: none;
        }

        body.page-unternehmen-team .floating-contact-btn::before {
            content: "KONTAKT";
            font-size: 16px;
            color: #2c6666;
            font-weight: bold;
            letter-spacing: 1px;
        }

        body.page-unternehmen-team .floating-contact-btn::after {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-unternehmen-team .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem;
            }

            body.page-unternehmen-team .header-logos {
                display: none;
            }

            body.page-unternehmen-team .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-unternehmen-team .header-logo {
                height: 36px;
            }

            body.page-unternehmen-team .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-unternehmen-team .hero-title {
                font-size: 2.5rem;
            }

            body.page-unternehmen-team .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-unternehmen-team .content-box {
                padding: 2rem;
            }

            body.page-unternehmen-team .scroll-indicator {
                display: none;
            }

            body.page-unternehmen-team .floating-contact-btn {
                bottom: 20px;
                right: 20px;
                height: 45px;
                padding: 0 15px;
            }

            body.page-unternehmen-team .floating-contact-btn::before {
                font-size: 14px;
            }
        }

        /* Animations */





/* ===== unternehmen-unternehmenspolitik.html ===== */


        body.page-unternehmen-politik {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, rgba(44, 102, 102, 0.8) 0%, rgba(102, 204, 204, 0.8) 100%),
                        url('https://janning-group.de/wp-content/uploads/2024/09/2-scaled.jpg') center center/cover no-repeat fixed;
            min-height: 100vh;
            scroll-behavior: smooth;
        }

        /* Header */
        body.page-unternehmen-politik .header {
            transition: top 0.3s ease;
            background: rgba(89, 89, 89, 0.3);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 800;
            opacity: 0;
            transform: translateY(-50px);
            animation: fadeInHeader 0.5s ease-out 0.2s both;
        }

        body.page-unternehmen-politik .header-content {
            max-width: 95%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 0.4rem;
            padding: 0 0.5rem;
        }

        body.page-unternehmen-politik .header-logos {
            display: flex;
            gap: 1rem;
        }

        body.page-unternehmen-politik .header-logo {
            height: 36px;
            transition: transform 0.3s ease, filter 0.3s ease;
            cursor: pointer;
            border-radius: 8px;
        }

        body.page-unternehmen-politik .header-logo:hover {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        body.page-unternehmen-politik .header-contact {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            min-width: 0;
            flex-grow: 1;
        }

        body.page-unternehmen-politik .header-contact-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.85rem;
        }

        body.page-unternehmen-politik .header-contact-link {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 8px;
        }

        body.page-unternehmen-politik .header-contact-link:hover {
            color: #80dddd;
            background: rgba(255, 255, 255, 0.1);
        }

        body.page-unternehmen-politik .header-contact-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-politik .header-contact-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-politik .header-contact-link:hover .header-contact-icon {
            transform: scale(1.2);
        }

        body.page-unternehmen-politik .main-nav {
            display: flex;
            gap: 0.6rem;
        }

        body.page-unternehmen-politik .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        body.page-unternehmen-politik .main-nav a:hover {
            color: #80dddd;
        }

        body.page-unternehmen-politik .main-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #80dddd;
            transition: width 0.3s ease;
        }

        body.page-unternehmen-politik .main-nav a:hover::after {
            width: 100%;
        }

        body.page-unternehmen-politik .main-nav a.active {
            color: #e6f528;
        }

        body.page-unternehmen-politik .main-nav a.active::after {
            width: 100%;
            background-color: #e6f528;
        }

        /* Dropdown Menu */
        body.page-unternehmen-politik .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        body.page-unternehmen-politik .dropdown-content {
            display: none;
            position: absolute;
            background: rgba(44, 102, 102, 0.95);
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-top: 10px;
        }

        body.page-unternehmen-politik .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.page-unternehmen-politik .dropdown-content a:last-child {
            border-bottom: none;
        }

        body.page-unternehmen-politik .dropdown-content a:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #e6f528;
        }

        /* Main Content */
        body.page-unternehmen-politik .main-content {
            background: #595959;
            color: white;
            min-height: 100vh;
            padding: 10rem 2rem 4rem;
            opacity: 0;
            animation: fadeInContent 0.5s ease-out 0.5s both;
        }

        body.page-unternehmen-politik .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Hero Section */
        body.page-unternehmen-politik .hero-section {
            text-align: center;
            margin-bottom: 4rem;
        }

        body.page-unternehmen-politik .hero-logo {
            width: 100%;
            max-width: 400px;
            height: auto;
            margin-bottom: 2rem;
        }

        body.page-unternehmen-politik .hero-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        body.page-unternehmen-politik .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Content Section */
        body.page-unternehmen-politik .content-section {
            margin-bottom: 4rem;
        }

        body.page-unternehmen-politik .content-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            line-height: 1.8;
        }

        body.page-unternehmen-politik .content-box h2 {
            color: #e6f528;
            font-size: 1.8rem;
            margin: 2.5rem 0 1.5rem 0;
            border-bottom: 2px solid #e6f528;
            padding-bottom: 0.5rem;
        }

        body.page-unternehmen-politik .content-box h2:first-child {
            margin-top: 0;
        }

        body.page-unternehmen-politik .content-box h3 {
            color: #80dddd;
            font-size: 1.3rem;
            margin: 2rem 0 1rem 0;
        }

        body.page-unternehmen-politik .content-box p {
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-unternehmen-politik .content-box ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        body.page-unternehmen-politik .content-box li {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.95);
        }

        body.page-unternehmen-politik .content-box strong {
            color: #80dddd;
            font-weight: 600;
        }

        body.page-unternehmen-politik .policy-block {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #e6f528;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }

        body.page-unternehmen-politik .policy-block h3 {
            color: #e6f528;
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
        }

        /* Footer */
        body.page-unternehmen-politik .footer {
            background: #595959;
            backdrop-filter: blur(10px);
            border-top: 0.1px solid #e6f528;
            box-shadow: 0 -2px 20px rgba(89, 89, 89, 0.3);
            color: white;
            padding: 1.5rem 0 0.5rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInFooter 0.5s ease-out 0.8s both;
        }

        body.page-unternehmen-politik .footer-content {
            max-width: 95%;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        body.page-unternehmen-politik .footer-section h3 {
            margin-bottom: 1rem;
            color: #e6f528;
        }

        body.page-unternehmen-politik .footer-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-unternehmen-politik .footer-section a {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
        }

        body.page-unternehmen-politik .footer-section a:hover {
            color: #80dddd;
        }

        body.page-unternehmen-politik .footer-bottom {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* Scroll Indicator */
        body.page-unternehmen-politik .scroll-indicator {
            position: fixed;
            top: 50%;
            right: 1rem;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        body.page-unternehmen-politik .scroll-dot {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: rgb(89, 89, 89);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            opacity: 0.2 !important;
        }

        body.page-unternehmen-politik .scroll-dot img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        body.page-unternehmen-politik .scroll-dot.active {
            background: #e6f528;
            transform: scale(1.2);
            border-color: #e6f528;
            opacity: 1 !important;
        }

        body.page-unternehmen-politik .scroll-dot.active img {
            filter: brightness(0) invert(0.3);
        }

        body.page-unternehmen-politik .scroll-dot:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
            opacity: 1 !important;
        }

        body.page-unternehmen-politik .scroll-label {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 0.7rem;
            color: #e6f528;
            margin-bottom: 0.3rem;
            text-align: center;
            letter-spacing: 1px;
            opacity: 0.9;
            padding: 4px;
        }

        /* Floating Kontakt Button */
        body.page-unternehmen-politik .floating-contact-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: auto;
            height: 50px;
            padding: 0 20px;
            background: linear-gradient(135deg, #e6f528 0%, #d4e320 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(230, 245, 40, 0.4);
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            color: #2c6666;
            letter-spacing: 1px;
            text-transform: uppercase;
            animation: pulse 2s infinite;
        }

        body.page-unternehmen-politik .floating-contact-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(230, 245, 40, 0.6);
            color: #2c6666;
            text-decoration: none;
        }

        body.page-unternehmen-politik .floating-contact-btn::before {
            content: "KONTAKT";
            font-size: 16px;
            color: #2c6666;
            font-weight: bold;
            letter-spacing: 1px;
        }

        body.page-unternehmen-politik .floating-contact-btn::after {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body.page-unternehmen-politik .header-content {
                grid-template-columns: 1fr;
                gap: 0.4rem;
                text-align: center;
                padding: 0 0.5rem;
            }

            body.page-unternehmen-politik .header-logos {
                display: none;
            }

            body.page-unternehmen-politik .header-contact {
                gap: 0.8rem;
                justify-content: center;
            }

            body.page-unternehmen-politik .header-logo {
                height: 36px;
            }

            body.page-unternehmen-politik .main-nav {
                order: 3;
                gap: 0.6rem;
                justify-content: center;
                flex-wrap: wrap;
                font-size: 0.85rem;
            }

            body.page-unternehmen-politik .hero-title {
                font-size: 2.5rem;
            }

            body.page-unternehmen-politik .main-content {
                padding: 8rem 1rem 4rem;
            }

            body.page-unternehmen-politik .content-box {
                padding: 2rem;
            }

            body.page-unternehmen-politik .scroll-indicator {
                display: none;
            }

            body.page-unternehmen-politik .floating-contact-btn {
                bottom: 20px;
                right: 20px;
                height: 45px;
                padding: 0 15px;
            }

            body.page-unternehmen-politik .floating-contact-btn::before {
                font-size: 14px;
            }
        }

        /* Animations */



