/**
 * Booking Landing Styles — BEM-Konvention.
 *
 * Block:    .wbs-booking__landing
 */

/* === Hero Section === */
.wbs-booking__landing-hero {
    width: 100%;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, #0066cc, #004499);
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.wbs-booking__landing-hero-headline {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.wbs-booking__landing-hero-subline {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.wbs-booking__landing-hero-cta {
    background-color: white;
    color: #0066cc;
    border-radius: 8px;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.wbs-booking__landing-hero-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* === Service Grid === */
.wbs-booking__landing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wbs-booking__landing-grid-item {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wbs-booking__landing-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* === Trust Badges === */
.wbs-booking__landing-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background-color: #f8f9fa;
    padding: 2rem;
}

.wbs-booking__landing-trust-badge {
    text-align: center;
}

.wbs-booking__landing-trust-icon svg {
    width: 48px;
    height: 48px;
    fill: #0066cc;
}

.wbs-booking__landing-trust-label {
    font-weight: 600;
    margin-top: 0.5rem;
}

/* === Sticky CTA Mobile === */
@media (max-width: 768px) {
    .wbs-booking__landing-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
        box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .wbs-booking__landing-sticky-cta a {
        display: block;
        width: 100%;
        background-color: #0066cc;
        color: white;
        border-radius: 8px;
        padding: 1rem;
        text-align: center;
        text-decoration: none;
    }

    .wbs-booking__landing-sticky-cta a:hover {
        background-color: #004499;
    }
}

/* === Responsive Breakpoints === */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Additional styles for tablets can be added here if needed */
}

@media (min-width: 1024px) {
    .wbs-booking__landing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
