:root {
    --primary-color: #f5b041;
    /* Warning Yellow/Orange for Forklifts */
    --secondary-color: #2c3e50;
    /* Deep Charcoal Blue */
    --accent-color: #e67e22;
    /* Industrial Orange */
    --bg-dark: #121212;
    --bg-panel: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Header & Navigation */
header {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0a0a0a;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        z-index: 1050;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.5rem;
    }

    /* Hamburger Animation to X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(18, 18, 18, 0.9) 100%),
        url('images/hero-nrw.png') center/cover no-repeat;
    text-align: center;
    border-bottom: 5px solid var(--primary-color);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    border-radius: 5px;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(245, 176, 65, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 176, 65, 0.4);
}

/* Hero CTA Buttons */
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta.call {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta:hover {
    transform: translateY(-5px);
    background: rgba(245, 176, 65, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 176, 65, 0.2);
}

.hero-cta-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.hero-cta:hover .hero-cta-icon {
    transform: scale(1.1) rotate(15deg);
}

@media (max-width: 600px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Benefits (Vorteile) */
.benefits {
    padding: 80px 0;
}

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

.card {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: var(--transition);
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* City List */
.city-list {
    padding: 80px 0;
    background: #1a1a1a;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.city-link {
    background: #000;
    padding: 15px;
    text-align: center;
    border: 1px solid #222;
    border-radius: 4px;
}

.city-link:hover {
    background: var(--primary-color);
    color: #000;
}

/* Trust Highlights */
.trust-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

/* Testimonials Slider */
.testimonials-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.testimonial-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.testimonial-stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-muted);
    flex-grow: 1;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.testimonial-city {
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(245, 176, 65, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}


/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.05);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: #000 !important;
}

.swiper-pagination-bullet {
    background: var(--primary-color) !important;
}

.swiper-pagination {
    bottom: -40px !important;
}

/* Contact Form */
.contact-section {
    padding: 100px 0;
    background: #111;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-panel);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 12px 15px;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #000;
}

.submit-button {
    grid-column: span 2;
    background: var(--primary-color);
    color: #000;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 176, 65, 0.3);
}

/* Footer */
footer {
    padding: 50px 0;
    background: #000;
    color: var(--text-muted);
    text-align: center;
    border-top: 1px solid #333;
}

/* CTA Buttons Image */
.cta-image-container {
    max-width: 600px;
    margin: 30px auto;
}

.cta-image {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}