/* ===== KAHRAMAN STUCKATEUR - KOMPLETTE CSS ===== */

/* ===== CSS VARIABLEN ===== */
:root {
    /* FARBPALETTE */
    --orange: #e85c00;
    --orange-dark: #c94f00;
    --weiß: #ffffff;
    --grau: rgb(172, 171, 171);
    --text: rgba(189, 188, 188, 0.63);
    --background: #f8f8f8;
    --schatten: 0 5px 15px rgba(232, 92, 0, 0.1);
    --schwarz: #222222;

    /* SCHRIFTARTEN */
    --font-text: 'Montserrat', sans-serif;
    --font-heading: 'Arial', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-text);
    line-height: 1.6;
    color: var(--schwarz);
    background-color: var(--background);
    overflow-x: hidden;
}

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

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

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

.noscript-warning {
    background: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

/* ===== RICHTIGE SPACHTEL LOADER ===== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--weiß);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

/* SPACHTEL DESIGN - WIE ECHTE SPACHTEL */
.spachtel-loader {
    width: 200px;
    height: 200px;
    position: relative;
    margin-bottom: 40px;
}

.spachtel {
    width: 180px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spachtelMove 4s ease-in-out infinite;
}

.spachtel-body {
    width: 150px;
    height: 60px;
    background: linear-gradient(to bottom, #333 0%, #555 100%);
    border-radius: 5px 20px 20px 5px;
    position: relative;
    box-shadow:
            0 5px 15px rgba(0,0,0,0.3),
            inset 0 -3px 8px rgba(0,0,0,0.5);
}

/* SPACHTEL-KANTE (METALL) */
.spachtel-blade {
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, #aaa 0%, #ddd 50%, #aaa 100%);
    position: absolute;
    bottom: 0;
    left: -5px;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* GRIFF */
.spachtel-handle {
    width: 100px;
    height: 25px;
    background: var(--orange);
    position: absolute;
    top: 15px;
    right: -40px;
    border-radius: 12px;
    transform: rotate(10deg);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.2);
}

.spachtel-handle::after {
    content: '';
    width: 80px;
    height: 20px;
    background: var(--orange-dark);
    position: absolute;
    top: 2.5px;
    left: 10px;
    border-radius: 10px;
}

/* SPACHTEL-BEWEGUNGEN */
@keyframes spachtelMove {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(15deg) translateX(20px);
    }
    50% {
        transform: translate(-50%, -50%) rotate(-10deg) translateX(-20px);
    }
    75% {
        transform: translate(-50%, -50%) rotate(5deg) translateX(10px);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* PUTZ-SPUREN */
.putz-tracks {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.putz-track {
    position: absolute;
    height: 8px;
    background: var(--orange);
    opacity: 0.4;
    border-radius: 4px;
    animation: putzAppear 4s ease-in-out infinite;
}

.track-1 {
    width: 180px;
    top: 40%;
    left: -50px;
    transform: rotate(5deg);
    animation-delay: 0s;
}

.track-2 {
    width: 160px;
    top: 55%;
    left: -30px;
    transform: rotate(-3deg);
    animation-delay: 0.5s;
}

.track-3 {
    width: 140px;
    top: 70%;
    left: -10px;
    transform: rotate(2deg);
    animation-delay: 1s;
}

@keyframes putzAppear {
    0%, 100% {
        width: 0;
        opacity: 0;
        left: -50px;
    }
    25% {
        width: 100px;
        opacity: 0.6;
        left: 0;
    }
    50% {
        width: 180px;
        opacity: 0.4;
        left: 50px;
    }
    75% {
        width: 100px;
        opacity: 0.2;
        left: 100px;
    }
}

/* TEXT */
.loader-text {
    text-align: center;
    margin-top: 20px;
}

.loader-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--schwarz);
    margin-bottom: 10px;
    font-weight: 700;
    animation: textPulse 2s ease-in-out infinite;
}

.loader-subtitle {
    font-size: 1.1rem;
    color: var(--grau);
    font-weight: 500;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* RESPONSIVE FIX FÜR SPACHTEL */
@media (max-width: 768px) {
    .spachtel-loader {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }

    .spachtel {
        width: 140px;
        height: 60px;
    }

    .spachtel-body {
        width: 120px;
        height: 50px;
    }

    .spachtel-blade {
        width: 130px;
    }

    .spachtel-handle {
        width: 80px;
        right: -30px;
    }

    .putz-track {
        height: 6px;
    }

    .track-1 { width: 140px; }
    .track-2 { width: 120px; }
    .track-3 { width: 100px; }

    .loader-title {
        font-size: 1.5rem;
    }

    .loader-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .spachtel-loader {
        width: 120px;
        height: 120px;
    }

    .spachtel {
        width: 110px;
        height: 50px;
    }

    .spachtel-body {
        width: 90px;
        height: 40px;
    }

    .spachtel-blade {
        width: 100px;
    }

    .spachtel-handle {
        width: 60px;
        right: -20px;
    }

    .loader-title {
        font-size: 1.3rem;
    }

    .loader-subtitle {
        font-size: 0.9rem;
    }
}

/* ===== MOBILE DROPDOWN FIX ===== */
@media (max-width: 768px) {
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-toggle::after {
        content: '\f078'; /* Chevron down */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 8px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(232, 92, 0, 0.05);
        padding: 10px 0 10px 30px;
        margin: 10px 0;
        border-radius: 10px;
        border-left: 3px solid var(--orange);
        animation: slideDown 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        margin: 5px 0 !important;
    }

    .dropdown-menu a {
        padding: 10px 15px !important;
        font-size: 1rem !important;
        border-left: none !important;
    }

    .dropdown-menu a:hover {
        background: rgba(232, 92, 0, 0.1) !important;
        padding-left: 20px !important;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ===== NAVIGATION MIT DROPDOWN ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-left: auto;
    padding-right: 10px;
}

.nav-link {
    text-decoration: none;
    color: var(--schwarz);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 5px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.nav-link:hover {
    color: var(--orange);
    animation: none;
}

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

.nav-link.active {
    color: var(--orange);
}

.nav-link.active::after {
    width: 100%;
}

/* DROPDOWN MENU */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--weiß);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--schwarz);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(232, 92, 0, 0.05);
    color: var(--orange);
    padding-left: 25px;
    border-left: 3px solid var(--orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
    margin-left: 15px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--schwarz);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger:hover span {
    background-color: var(--orange);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--weiß);
    position: relative;
    margin-top: 80px;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.btn-hero, .btn-submit, .btn-small, .btn-about {
    display: inline-block;
    background-color: var(--orange);
    color: var(--weiß);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--orange);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-hero:hover, .btn-submit:hover,
.btn-small:hover, .btn-about:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(232, 92, 0, 0.3);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-hero-outline {
    display: inline-block;
    background: transparent;
    color: var(--weiß);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--weiß);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: var(--weiß);
    color: var(--orange);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    color: var(--weiß);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* ===== ÜBER UNS ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--schwarz);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--grau);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-description {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--weiß);
    border-radius: 10px;
    box-shadow: var(--schatten);
    flex: 1;
    min-width: 170px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--grau);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: rotate(2deg) scale(1.03);
}

.master-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 2;
}

/* ===== LEISTUNGEN ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover .service-card {
    transform: translateY(-15px) rotate(1deg);
    box-shadow: 0 20px 40px rgba(232, 92, 0, 0.15);
}

.service-card {
    background: var(--weiß);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--schwarz));
}

.service-icon {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
}

.service-card-link:hover .service-icon {
    transform: scale(1.3) rotate(20deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--schwarz);
    font-family: var(--font-heading);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-link {
    color: var(--orange);
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.service-card-link:hover .card-link {
    transform: translateX(10px);
}

.services-note {
    margin-top: 40px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    border-left: 5px solid var(--orange);
}

.services-note i {
    color: var(--orange);
    margin-right: 10px;
}

/* ===== AUSBILDUNG ===== */
.ausbildung-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ausbildung-description {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.ausbildung-image {
    position: relative;
}

.ausbildung-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.ausbildung-benefits {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: var(--orange);
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 10px 30px rgba(232, 92, 0, 0.3);
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.benefit i {
    font-size: 1.8rem;
}

.benefit span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== KONTAKT ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-card {
    background: var(--weiß);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--schatten);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--weiß);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 10px;
    color: var(--schwarz);
    font-family: var(--font-heading);
}

.contact-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    margin: 5px 0;
    display: block;
}

.contact-note {
    color: var(--grau);
    font-size: 0.9rem;
    margin: 5px 0 15px;
}

.contact-form {
    background: var(--weiß);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--schatten);
}

.contact-form h3 {
    margin-bottom: 25px;
    color: var(--schwarz);
    text-align: center;
    font-family: var(--font-heading);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--schwarz);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 92, 0, 0.2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
}

.form-check input {
    margin-top: 5px;
}

.form-check label {
    font-size: 0.9rem;
    color: #666;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--schwarz);
    color: #ddd;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--weiß);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--weiß);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.footer-description {
    margin: 15px 0;
    color: #aaa;
    line-height: 1.6;
}

.footer-certificates {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.certificate {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.certificate i {
    color: var(--orange);
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 5px;
    display: inline-block;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--orange);
    width: 20px;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: var(--weiß);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--orange);
    transform: translateY(-5px) rotate(10deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #888;
}

.footer-copyright {
    margin-bottom: 15px;
}

.footer-copyright a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-container,
    .ausbildung-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--weiß);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 100px 20px 40px;
        gap: 25px;
        margin: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.3rem;
        padding: 12px 25px;
        width: 100%;
        text-align: center;
        border-radius: 50px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: rgba(232, 92, 0, 0.15);
        color: var(--orange);
        transform: translateX(10px);
    }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 10px 0 0 20px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 8px 15px;
        font-size: 1rem;
    }

    /* Hero Adjustments */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .about-stats {
        gap: 15px;
    }

    .stat-item {
        min-width: 120px;
        padding: 15px;
    }

    /* Ausbildung Benefits */
    .ausbildung-benefits {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 20px;
        flex-direction: column;
        gap: 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Loader responsive */
    .spachtel-loader {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }

    .spachtel {
        width: 140px;
        height: 60px;
    }

    .loader-title {
        font-size: 1.5rem;
    }

    .loader-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .master-badge {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 20px;
        display: inline-flex;
    }

    .logo-img {
        height: 61px;
    }

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

    .spachtel-loader {
        width: 120px;
        height: 120px;
    }

    .spachtel {
        width: 110px;
        height: 50px;
    }
}

/* Füge DIESES CSS hinzu (in style.css am Ende) */
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* BESSERE TOUCH TARGETS für Mobile */
@media (max-width: 768px) {
    .dropdown-toggle {
        padding: 15px 25px !important;
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-toggle i {
        font-size: 0.9rem;
    }

    .dropdown-menu a {
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
}




/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--weiß);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 25px;
    max-width: 500px;
    border-left: 5px solid var(--orange);
    transform: translateY(100px);
    opacity: 0;
    animation: slideUpCookie 0.5s ease forwards 1s;
    display: none; /* Wird per JS angezeigt */
}

@keyframes slideUpCookie {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cookie-header i {
    font-size: 1.8rem;
    color: var(--orange);
}

.cookie-header h3 {
    font-family: var(--font-heading);
    color: var(--schwarz);
    font-size: 1.5rem;
    margin: 0;
}

.cookie-text {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.cookie-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    font-family: var(--font-text);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.cookie-btn.accept {
    background: var(--orange);
    color: var(--weiß);
    border: 2px solid var(--orange);
}

.cookie-btn.accept:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 92, 0, 0.3);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--schwarz);
    border: 2px solid #ff4444;
    color: #ff4444;
}

.cookie-btn.reject:hover {
    background: #ff4444;
    color: white;
}

.cookie-btn.necessary {
    background: transparent;
    color: var(--schwarz);
    border: 2px solid var(--grau);
}

.cookie-btn.necessary:hover {
    background: #f5f5f5;
    border-color: var(--orange);
    color: var(--orange);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--schwarz);
    border: 2px solid var(--schwarz);
}

.cookie-btn.settings:hover {
    background: var(--schwarz);
    color: var(--weiß);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--weiß);
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-family: var(--font-heading);
    color: var(--schwarz);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--grau);
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--orange);
    background: #f5f5f5;
}

.modal-body {
    padding: 30px;
}

.cookie-option {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--orange);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.option-header h4 {
    font-family: var(--font-heading);
    color: var(--schwarz);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.option-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--orange);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--orange);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

input:disabled + .slider {
    background-color: #999;
    cursor: not-allowed;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        min-width: 100%;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cookie-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-btn {
        padding: 15px;
    }
}