
.brand-logo > img {
    width: 105px;

}

nav {
    margin-bottom: 10px;
}
nav ul{
    margin-left: 30%;
}


.navMobile {

    background-color: #F46D23;
}


nav ul a:hover {
    color: #FFFFFF;
    font-weight:bold;
    background-color: #F46D23;

}

.linkNavActive {
    color: #FFFFFF;
    font-weight:bold;
    background-color: #F46D23;

}

/* LKW Hintergrund mit Rädern */
.truck-background {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -1;
    overflow: hidden;
}

/* LKW Karosserie */
.truck-body {
    position: absolute;
    bottom: 80px;
    right: 5%;
    width: 500px;
    height: 180px;
    background: #2c3e50;
    border-radius: 20px 20px 10px 10px;
    animation: truckMove 20s linear infinite;
}

/* LKW Aufbau */
.truck-cargo {
    position: absolute;
    left: -200px;
    top: -20px;
    width: 350px;
    height: 140px;
    background: #34495e;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

.truck-cargo::before {
    content: "ProMove24";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* LKW Kabine */
.truck-cabin {
    position: absolute;
    right: 0;
    top: -20px;
    width: 120px;
    height: 120px;
    background: #2c3e50;
    border-radius: 15px 15px 10px 10px;
}

/* Fenster */
.window {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 90px;
    height: 60px;
    background: #87CEEB;
    border-radius: 10px;
    border: 3px solid #1a1a2e;
}

/* Räder */
.wheel {
    position: absolute;
    bottom: -30px;
    width: 60px;
    height: 60px;
    background: #1a1a2e;
    border-radius: 50%;
    border: 5px solid #333;
    animation: wheelSpin 2s linear infinite;
}

.wheel::before {
    content: "⚙";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #666;
}

.wheel-1 { left: 50px; }
.wheel-2 { left: 180px; }
.wheel-3 { left: 310px; }
.wheel-4 { right: 30px; }

@keyframes truckMove {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-200%); }
}

@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Wizard Container */
.wizard-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.wizard-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    max-width: 800px;
    width: 100%;
    transition: all 0.3s ease;
}

/* Step Indikatoren */
.steps-wrapper {
    padding: 30px 30px 0 30px;
}

.step {
    display: inline-block;
    width: 80px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: #26a69a;
    color: white;
    transform: scale(1.1);
}

.step.completed .step-circle {
    background: #4caf50;
    color: white;
}

.step-label {
    display: block;
    font-size: 12px;
    margin-top: 8px;
    color: #666;
}

.step.active .step-label {
    color: #26a69a;
    font-weight: bold;
}

/* Formular Styles */
.step-content {
    padding: 30px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-content.active-step {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gut Liste */
.gut-item {
    background: #f5f5f5;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gut-item span {
    font-weight: bold;
    color: #26a69a;
}

/* Zusammenfassung */
.summary-item {
    padding: 10px;
    margin: 10px 0;
    border-left: 4px solid #26a69a;
    background: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
    .truck-body {
        transform: scale(0.5);
        bottom: -20px;
        right: -100px;
    }

    .step {
        width: 60px;
    }

    .step-label {
        font-size: 10px;
    }
}



/* Custom Styles */
.hero-section {
    margin-top: -5px;
    background: linear-gradient(135deg, #00695c 0%, #004d40 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index:999;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Google Bewertungen */
.google-rating {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
    opacity: 0.9;
}

.stars {
    color: #ffc107;
    font-size: 24px;
    margin: 10px 0;
}

.rating-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00695c;
}

.review-card {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Leistungen Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 50px;
    color: #F46D23;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15px 0;
    color: #F46D23;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00695c 0%, #00897b 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600121848594-d8644e57abab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Zahlen Section */
.stats-section {
    padding: 80px 0;
    background: white;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00695c;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.stat-icon {
    font-size: 40px;
    color: #00897b;
    margin-bottom: 15px;
}

/* Wizard Styles */
.wizard-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

.wizard-card {
    padding: 20px;
}

.steps-wrapper {
    margin-bottom: 30px;
}

.step {
    text-align: center;
    cursor: pointer;
    position: relative;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    transition: all 0.3s;
}

.step.active .step-circle {
    background: #00695c;
    color: white;
    transform: scale(1.1);
}

.step.completed .step-circle {
    background: #4caf50;
    color: white;
}

.step-label {
    display: block;
    font-size: 12px;
    margin-top: 8px;
    color: #666;
}

.step.active .step-label {
    color: #00695c;
    font-weight: bold;
}

.step-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step-content.active-step {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gut-item {
    background: #f5f5f5;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item {
    padding: 15px;
    margin: 10px 0;
    border-left: 4px solid #00695c;
    background: #f9f9f9;
    border-radius: 5px;
}

footer {
    background: #1a1a2e;
    color: black;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

.footer-links a {
    color: black;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00897b;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Zusätzliche Animationen */
.service-card, .value-card, .team-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-floating:hover {
    background: #004d40 !important;
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.aos-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}