/* Homepage Banner Styles */
.homepage-banner {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.banner-type-selector {
    font-size: 14px;
}

/* Common Banner Styles */
.banner-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--blue-accent-light);
    margin-bottom: 20px;
}

.banner-description {
    font-size: 18px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient-blue-accent);
    border: 1px solid rgba(74, 144, 226, 0.6);
    border-radius: 50px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.banner-cta:hover {
    background: var(--gradient-blue-4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

/* Option 1: Banner with Vehicle Slider */
.banner-slider-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
}

.banner-slider {
    width: 100%;
    height: 100%;
}

.banner-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.85) 0%, rgba(26, 42, 58, 0.6) 100%);
}

.banner-slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.banner-slide-vehicle {
    margin: 30px 0;
    padding: 20px 30px;
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: inline-block;
}

.slide-vehicle-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.slide-vehicle-subtitle {
    font-size: 16px;
    color: var(--blue-accent-light);
}

.banner-slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.banner-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
}

.banner-slider-pagination .swiper-pagination-bullet-active {
    background: var(--blue-accent-light);
    width: 30px;
    border-radius: 6px;
}

.banner-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.banner-slider-prev,
.banner-slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 42, 58, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.banner-slider-prev:hover,
.banner-slider-next:hover {
    background: rgba(74, 144, 226, 0.5);
    border-color: rgba(74, 144, 226, 0.8);
    transform: scale(1.1);
}

/* Option 2: Banner with Floating Stats */
.banner-stats-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.banner-stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.9) 0%, rgba(26, 42, 58, 0.7) 100%);
}

.banner-stats-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 0;
}

.banner-floating-stats {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.floating-stat-card {
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    min-width: 180px;
    animation: floatUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--white);
    background: var(--gradient-blue-accent);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Option 3: Banner with Quick Booking Form */
.banner-quick-booking-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.banner-quick-booking-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-quick-booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.85) 0%, rgba(26, 42, 58, 0.65) 100%);
}

.banner-quick-booking-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.quick-booking-text {
    max-width: 600px;
}

.quick-booking-form-wrapper {
    background: rgba(26, 42, 58, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.quick-booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.form-field label i {
    color: var(--blue-accent-light);
    font-size: 18px;
}

.form-field input {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-field input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(74, 144, 226, 0.5);
}

.form-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quick-booking-submit {
    padding: 18px 40px;
    background: var(--gradient-blue-accent);
    border: 1px solid rgba(74, 144, 226, 0.6);
    border-radius: 50px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.quick-booking-submit:hover {
    background: var(--gradient-blue-4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
}

/* Option 4: Banner with Video Background */
.banner-video-wrapper {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-video-fallback {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 58, 0.85) 0%, rgba(26, 42, 58, 0.65) 100%);
    z-index: 1;
}

.banner-video-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 80px 0;
}

.banner-overlay-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

.overlay-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--blue-accent-light);
    margin-bottom: 5px;
    line-height: 1;
}

.overlay-stat-label {
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .banner-quick-booking-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .banner-floating-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .homepage-banner {
        min-height: 500px;
    }

    .banner-title {
        font-size: 36px;
    }

    .banner-subtitle {
        font-size: 20px;
    }

    .banner-description {
        font-size: 16px;
    }

    .banner-slider-wrapper,
    .banner-stats-wrapper,
    .banner-quick-booking-wrapper,
    .banner-video-wrapper {
        min-height: 500px;
    }

    .banner-floating-stats {
        flex-direction: column;
        align-items: center;
    }

    .floating-stat-card {
        width: 100%;
        max-width: 300px;
    }

    .banner-overlay-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-cta {
        padding: 15px 30px;
        font-size: 16px;
    }

    .quick-booking-form-wrapper {
        padding: 30px 20px;
    }

    .banner-slider-nav {
        padding: 0 15px;
    }

    .banner-slider-prev,
    .banner-slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
