* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.nav-logo h1 {
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: bold;
}
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #1e40af;
}
.language-selector {
    display: flex;
    gap: 0.5rem;
}
.lang-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}
.lang-btn:hover,
.lang-btn.active {
    background-color: #dbeafe;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-content {
    max-width: 800px;
    padding: 2rem;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}
.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}
.scroll-mouse::before {
    content: '';
    width: 4px;
    height: 12px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-pulse 2s infinite;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}
.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cars-section {
    padding: 5rem 0;
    background: #f9fafb;
}
.car-slideshow {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.slide {
    display: none;
    position: relative;
}
.slide.active {
    display: block;
}
.slide img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}
.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 2rem 3.5rem 2rem;
}
.slide-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}
.slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}
.slide-btn.prev {
    left: 1rem;
}
.slide-btn.next {
    right: 1rem;
}
.slide-indicators {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
}
.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background-color 0.3s;
}
.indicator.active {
    background: #1e40af;
}
.services-section {
    padding: 5rem 0;
    background: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.service-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}
.service-card p {
    color: #6b7280;
    line-height: 1.6;
}
.vito-highlight {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}
.vito-content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.vito-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.vito-content ul {
    list-style: none;
}
.vito-content li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}
.vito-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
}
.vito-icon {
    font-size: 5rem;
    text-align: center;
}
.routes-section {
    padding: 5rem 0;
    background: #f9fafb;
}
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.route-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.route-image {
    height: 200px;
    position: relative;
}
.route-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
    pointer-events: none;
}
.route-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1e40af;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: bold;
    font-size: 1.1rem;
}
.route-info {
    padding: 1.5rem;
}
.route-info h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1f2937;
}
.route-details {
    display: flex;
    justify-content: space-between;
    color: #6b7280;
    margin-bottom: 1.5rem;
}
.book-btn {
    width: 100%;
    background: #1e40af;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.book-btn:hover {
    background: #1d4ed8;
}
.routes-note {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
}
.routes-note p {
    margin-bottom: 0.5rem;
}
.contact-section {
    padding: 5rem 0;
    background: white;
}
.whatsapp-cta {
    text-align: center;
    margin-bottom: 3rem;
}
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1f2937;
}
.contact-item p {
    color: #6b7280;
    margin-bottom: 0.3rem;
}
.contact-link {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: background-color 0.3s;
}
.contact-link:hover {
    background: #059669;
}
.contact-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}
.submit-btn {
    background: #1e40af;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.submit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}
.service-hours {
    background: linear-gradient(45deg, #1e40af, #3b82f6);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}
.service-hours h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.service-hours p {
    font-size: 1.1rem;
    opacity: 0.9;
}
.faq-section {
    padding: 5rem 0;
    background: #f9fafb;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
    transition: background-color 0.3s ease;
}
.faq-question:hover {
    background-color: #f8fafc;
}
.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
}
.faq-toggle {
    width: 24px;
    height: 24px;
    background: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-toggle::before {
    content: '+';
    font-size: 18px;
    line-height: 1;
}
.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #dc2626;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}
.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    display: inline-block;
    background: #374151;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s;
}
.social-links a:hover {
    background: #4b5563;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: white;
}
.footer-contact p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}
.popular-routes {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-bottom: 2rem;
}
.popular-routes h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.route-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.route-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.route-links a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: white;
}
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* KEYFRAMES ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes scroll-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* RESPONSIVE DESIGN (MEDIA QUERIES) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active {
        display: flex;
    }
    
    /* Desktop-Flaggen im äußeren Header komplett auf Handys ausblenden */
    .navbar > .language-selector.desktop-only-flags {
        display: none !important;
    }
    
    /* Generelle .language-selector Regel überschreiben, um Chaos zu vermeiden */
    .language-selector {
        display: none;
    }
    
    /* Mobile-only Flags im Ausklappmenü gezielt aktivieren, zentrieren und stylen */
    .nav-menu.active .language-selector.mobile-only-flags {
        display: flex !important;
        justify-content: center;
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #e5e7eb;
        gap: 15px;
    }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-description { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .contact-content { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .vito-highlight { grid-template-columns: 1fr; text-align: center; }
    .routes-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .whatsapp-float { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
    .faq-question { padding: 1.25rem 1.5rem; }
    .faq-question h3 { font-size: 1rem; }
    .faq-item.active .faq-answer { padding: 0 1.5rem 1.25rem 1.5rem; }
}

/* Auf dem Desktop: Die mobilen Flaggen radikal im Menü unterdrücken */
@media (min-width: 769px) {
    .nav-menu .language-selector.mobile-only-flags {
        display: none !important;
    }
    .navbar > .language-selector.desktop-only-flags {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-content { padding: 1rem; }
    .hero-title { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 1.5rem; }
    .contact-form { padding: 1.5rem; }
    .vito-highlight { padding: 2rem; }
    .faq-question { padding: 1rem 1.25rem; }
    .faq-question h3 { font-size: 0.95rem; }
    .faq-toggle { width: 20px; height: 20px; margin-left: 0.75rem; }
    .faq-toggle::before { font-size: 16px; }
    .faq-item.active .faq-answer { padding: 0 1.25rem 1rem 1.25rem; }
}

.route-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    padding: 0;
}
.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.route-image .route-price {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}
.route-card:hover .route-image img {
    transform: scale(1.05);
}