/* ============================================= */
/* OVERFLOW-FIX für /claude/assets/css/style.css */
/* WICHTIG: Am Anfang der Datei einfügen!      */
/* ============================================= */

/* KRITISCHER FIX: Verhindert horizontales Scrollen */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

* {
    box-sizing: border-box;
}

/* Container darf nicht breiter als Viewport sein */
.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================= */
/* MAIN CONTENT - KORRIGIERT                    */
/* ============================================= */

.main-content {
    width: 100%;
    max-width: 1100px;
    padding: 40px 15px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    box-sizing: border-box;
}

/* ============================================= */
/* CARDS - KORRIGIERT                           */
/* ============================================= */

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px var(--shadow-light);
    border-top: 4px solid var(--primary-color);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.card h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    word-wrap: break-word;
}

/* ============================================= */
/* FORMULARE                                    */
/* ============================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.form-control.error {
    border-color: #e53e3e;
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.location-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.location-btn:hover {
    color: var(--primary-color);
}

/* ============================================= */
/* CUSTOM DROPDOWN                              */
/* ============================================= */

.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-selected {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.3s ease;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.custom-dropdown-selected:hover {
    border-color: var(--primary-color);
}

.custom-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 10px var(--shadow-light);
}

.custom-dropdown-option {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 10px;
}

.custom-dropdown-option:hover {
    background: var(--bg-light);
}

.dropdown-option-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.dropdown-option-image-placeholder {
    font-size: 2rem;
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.dropdown-option-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.dropdown-option-name {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-option-details {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
}

.dropdown-arrow {
    margin-left: auto;
    color: var(--text-light);
    flex-shrink: 0;
}

/* ============================================= */
/* PREISANZEIGE                                 */
/* ============================================= */

#priceResult {
    min-height: 100px;
    width: 100%;
}

#priceResult .text-muted {
    color: #777;
    font-size: 1rem;
    padding: 20px 0;
    text-align: center;
}

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

.price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
    word-wrap: break-word;
}

.price-display strong {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.price-breakdown {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 15px;
    word-wrap: break-word;
}

.badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 5px;
}

.badge.day { 
    background-color: #fff3e0; 
    color: #e65100; 
}

.badge.night { 
    background-color: #4a5568; 
    color: #fff; 
}

.badge.standard { 
    background-color: #e0e0e0; 
    color: #333; 
}

/* ============================================= */
/* ADRESS-VORSCHLÄGE                            */
/* ============================================= */

.suggestions {
    border: 1px solid #ddd;
    border-top: none;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    background: var(--white);
    width: 100%;
    z-index: 100;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 8px var(--shadow-light);
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.suggestion-item:hover {
    background: var(--bg-light);
}

/* ============================================= */
/* ALERT BOX                                    */
/* ============================================= */

.alert {
    padding: 15px;
    margin: 20px auto;
    border-radius: 8px;
    font-weight: 600;
    max-width: 100%;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-info {
    background-color: #cce5ff;
    color: #004085;
    border-color: #b8daff;
}

/* ============================================= */
/* LOADING OVERLAY                              */
/* ============================================= */

.loading-overlay {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px; 
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin { 
    0% { transform: rotate(0deg); } 
    100% { transform: rotate(360deg); } 
}

.loading-overlay p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* ============================================= */
/* RESPONSIVE - TABLET (768px - 900px)         */
/* ============================================= */

@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 15px;
        margin-top: 20px;
    }
    
    .card {
        padding: 25px 20px;
    }
    
    .card h2 { 
        font-size: 1.6rem; 
    }
    
    .form-row { 
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* ============================================= */
/* RESPONSIVE - MOBILE (<768px) - KRITISCH!    */
/* ============================================= */

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    /* KRITISCH: Main Content ohne Overflow */
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px; /* ← REDUZIERT von 15px auf 10px */
        margin: 20px auto 40px;
        width: 100%;
        max-width: 100%;
    }
    
    /* KRITISCH: Card ohne Overflow */
    .card {
        padding: 20px 12px; /* ← REDUZIERT von 15px auf 12px */
        border-radius: 10px;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .card h2 {
        font-size: 1.4rem; /* ← Kleiner für Mobile */
        margin-bottom: 18px;
        padding-bottom: 10px;
    }
    
    .card h3 {
        font-size: 1.2rem;
        margin-top: 15px;
        margin-bottom: 12px;
    }
    
    .card h4 {
        font-size: 1rem;
    }
    
    /* KRITISCH: Form Row - 1 Spalte */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 1.2rem; /* ← REDUZIERT */
        width: 100%;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-control {
        width: 100%;
        padding: 11px; /* ← REDUZIERT */
        font-size: 16px;
        border-radius: 6px;
    }
    
    select.form-control {
        height: 44px;
        font-size: 16px;
        padding: 10px 11px;
    }
    
    textarea.form-control {
        min-height: 100px;
        font-size: 16px;
    }
    
    .custom-dropdown-selected {
        padding: 11px;
        font-size: 0.95rem;
    }
    
    .dropdown-option-image,
    .dropdown-option-image-placeholder {
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }
    
    .dropdown-option-name {
        font-size: 0.9rem;
    }
    
    .dropdown-option-details {
        font-size: 0.8rem;
    }
    
    .btn {
        width: 100%;
        padding: 13px 18px; /* ← REDUZIERT */
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .btn-large {
        padding: 15px 22px; /* ← REDUZIERT */
        font-size: 1.05rem;
    }
    
    .price-display {
        font-size: 1.3rem; /* ← Kleiner */
        padding: 12px 5px;
    }
    
    .price-display strong {
        font-size: 1.6rem;
    }
    
    .price-breakdown {
        font-size: 0.85rem; /* ← Kleiner */
        line-height: 1.6;
    }
    
    #rabattSection {
        padding: 12px; /* ← REDUZIERT */
        margin-top: 15px;
        border-radius: 6px;
    }
    
    #rabattSection h4 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    #rabattSection > div {
        flex-direction: row;
        gap: 8px;
    }
    
    #rabattSection input {
        font-size: 15px; /* ← REDUZIERT */
        padding: 11px;
        flex: 1;
    }
    
    #rabattSection button {
        padding: 11px 14px; /* ← REDUZIERT */
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    #bookingDetails {
        padding-top: 18px;
    }
    
    #bookingDetails hr {
        margin: 18px 0;
    }
    
    #privacyCheck {
        width: 18px;
        height: 18px;
        margin-right: 8px;
        flex-shrink: 0;
    }
    
    .location-btn {
        right: 10px;
        font-size: 1.05rem;
        padding: 8px;
    }
    
    .alert {
        margin: 10px; /* ← REDUZIERT */
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .spinner {
        width: 45px;
        height: 45px;
    }
    
    .loading-overlay p {
        font-size: 1rem;
        margin-top: 15px;
        padding: 0 15px;
    }
}

/* ============================================= */
/* RESPONSIVE - KLEINE HANDYS (<400px)         */
/* ============================================= */

@media (max-width: 400px) {
    .main-content {
        padding: 15px 8px; /* ← NOCH MEHR REDUZIERT */
        margin: 15px auto 30px;
    }
    
    .card {
        padding: 15px 10px; /* ← NOCH MEHR REDUZIERT */
    }
    
    .card h2 {
        font-size: 1.25rem;
    }
    
    .form-control,
    select.form-control,
    textarea.form-control {
        padding: 10px;
        font-size: 15px;
    }
    
    select.form-control {
        height: 42px;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 13px 18px;
        font-size: 1rem;
    }
    
    .dropdown-option-image,
    .dropdown-option-image-placeholder {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }
    
    .dropdown-option-name {
        font-size: 0.85rem;
    }
    
    .dropdown-option-details {
        font-size: 0.75rem;
    }
    
    #rabattSection {
        padding: 10px;
    }
    
    #rabattSection > div {
        flex-direction: column;
    }
    
    #rabattSection input,
    #rabattSection button {
        width: 100%;
    }
    
    .price-display {
        font-size: 1.2rem;
    }
    
    .price-display strong {
        font-size: 1.4rem;
    }
}

/* ============================================= */
/* LANDSCAPE MODE                               */
/* ============================================= */

@media (max-width: 900px) and (orientation: landscape) {
    body {
        padding-top: 55px;
    }
    
    .main-content {
        margin-top: 10px;
        padding: 15px 12px;
    }
    
    .card {
        padding: 18px 15px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
}

/* ============================================= */
/* TOUCH OPTIMIERUNGEN                          */
/* ============================================= */

@media (hover: none) and (pointer: coarse) {
    button,
    .btn,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
    }
    
    .form-control,
    select.form-control {
        min-height: 44px;
    }
    
    .custom-dropdown-selected,
    .custom-dropdown-option {
        min-height: 50px;
    }
    
    .location-btn {
        padding: 12px;
        font-size: 1.2rem;
    }
}

/* ============================================= */
/* iOS SAFARI FIXES                             */
/* ============================================= */

@supports (-webkit-touch-callout: none) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

@supports (-webkit-overflow-scrolling: touch) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}
/* ===============================================
   ALERT-SYSTEM STYLES
   =============================================== */

.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    pointer-events: none;
}

.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
    border-left: 4px solid;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: all;
    min-width: 300px;
}

.alert-show {
    opacity: 1;
    transform: translateX(0);
}

.alert-fade-out {
    opacity: 0;
    transform: translateX(100%);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.alert-icon {
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.alert-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.alert-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.alert-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Alert-Typen */
.alert-success {
    border-left-color: #4caf50;
}

.alert-success .alert-icon {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
}

.alert-error {
    border-left-color: #f44336;
}

.alert-error .alert-icon {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.alert-warning {
    border-left-color: #ff9800;
}

.alert-warning .alert-icon {
    color: #ff9800;
    background: rgba(255, 152, 0, 0.1);
}

.alert-info {
    border-left-color: #2196f3;
}

.alert-info .alert-icon {
    color: #2196f3;
    background: rgba(33, 150, 243, 0.1);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .alert-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .alert {
        min-width: auto;
    }
}
/* ============================================= */
/* HERO SECTION                                 */
/* ============================================= */

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
    margin-top: -40px; /* Kompensiert body padding-top */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    margin-bottom: 30px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.hero-emoji {
    display: inline-block;
    font-size: 3rem;
    margin-right: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.trust-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.trust-icon {
    font-size: 1.3rem;
}

.hero-arrow {
    font-size: 2rem;
    animation: bounceArrow 1.5s infinite;
    margin-top: 20px;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-emoji {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .trust-badges {
        gap: 15px;
    }
    
    .trust-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .trust-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        flex: 1 1 auto;
        justify-content: center;
    }
}
/* ============================================= */
/* VEHICLE PRICE LIST - VERBESSERT             */
/* ============================================= */

.vehicle-price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.vehicle-price-item {
    display: flex;
    align-items: center;
    padding: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.vehicle-price-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.vehicle-price-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.vehicle-price-item:hover::before {
    transform: scaleY(1);
}

.vehicle-price-item.selected {
    border-color: var(--primary-color);
    background: linear-gradient(to right, rgba(102, 126, 234, 0.05), white);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.vehicle-price-item.selected::before {
    transform: scaleY(1);
}

.vehicle-price-item.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.vehicle-price-item img,
.vehicle-placeholder {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.vehicle-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 2rem;
}

.vehicle-price-info {
    flex: 1;
    min-width: 0;
}

.vehicle-price-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.vehicle-price-info small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.vehicle-price-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: auto;
    flex-shrink: 0;
}

.toggle-price-details {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.toggle-price-details:hover {
    text-decoration: underline;
    color: var(--primary-dark, #5568d3);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .vehicle-price-item {
        padding: 14px;
        gap: 12px;
    }
    
    .vehicle-price-item img,
    .vehicle-placeholder {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .vehicle-price-info strong {
        font-size: 1rem;
    }
    
    .vehicle-price-info small {
        font-size: 0.8rem;
    }
    
    .vehicle-price-amount {
        font-size: 1.2rem;
    }
    
    .vehicle-price-item.selected::after {
        width: 24px;
        height: 24px;
        font-size: 12px;
        top: 8px;
        right: 8px;
    }
}
/* ============================================= */
/* FLOATING ACTION BUTTONS                      */
/* ============================================= */

.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.phone-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f94 100%);
}

.float-btn svg {
    width: 28px;
    height: 28px;
}

/* Animierter Puls-Effekt */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .float-btn {
        width: 52px;
        height: 52px;
    }
    
    .float-btn svg {
        width: 24px;
        height: 24px;
    }
}
/* ============================================= */
/* SCROLL TO TOP BUTTON                         */
/* ============================================= */

.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 80px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
}
/* Visuelle Optimierung für Buchungsformular */
#booking-form-section .card {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 30px;
  background: #fff;
  margin-bottom: 40px;
}

#booking-form-section h2 {
  font-size: 1.6rem;
  color: #667eea;
  margin-bottom: 20px;
}

#booking-form-section label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

#booking-form-section .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 0.95rem;
}

#booking-form-section .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#booking-form-section .form-row .form-group {
  flex: 1;
  min-width: 200px;
}

#booking-form-section .btn-primary,
#booking-form-section .btn-success {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
}

#booking-form-section .btn-primary:hover {
  background-color: #5a67d8;
}

#booking-form-section .btn-success:hover {
  background-color: #38a169;
}

@media (max-width: 768px) {
  #booking-form-section .form-row {
    flex-direction: column;
  }
}
