/* Optimized Banner Form Styles */
.banner-form__control .bootstrap-select > .dropdown-toggle,
.banner-form__control input[type="text"],
.banner-form__control input[type="number"],
.banner-form__control input[type="email"] {
    padding-left: 10px;
    height: 25px;
    margin-bottom: 10px;
    font-size: 13px;
    border: 2px solid #ccc !important;
}

.banner-form__control label {
    font-size: 12px;
    margin-top: 10px;
}

.banner-form__control ::placeholder {
    font-size: 11px;
}

input[type="radio"] {
    width: 20px;
    height: 20px;
}

.types {
    font-weight: 900;
    font-size: 16px;
    padding-top: 2px;
    margin: 0;
}

.flight-type-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.hidden {
    display: none;
}

.btn-add-city {
    font-size: 13px;
    background: #000;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
}

.btn-add-city:hover {
    background: #333;
}

.removeField {
    color: #f44336;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    margin-top: -20px;
    text-align: center;
}

/* Video Slider Styles */
.slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    will-change: transform;
}

.video-slide {
    width: 100%;
    height: auto;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    padding: 60px 20px;
}

.cta-content {
    max-width: 800px;
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #000;
}

.cta-btn {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 16px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #e68900;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* Countdown Styles */
#countdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#countdown li {
    display: inline-block;
    font-size: 1.0em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
}

#countdown li span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
}

/* Utility Classes */
.border-0 {
    border: 0;
}

.width-100 {
    width: 100%;
}

/* Responsive Styles */
@media all and (max-width: 768px) {
    #countdown li {
        font-size: calc(1.125rem * 0.8);
    }
    
    #countdown li span {
        font-size: calc(3.375rem * 0.8);
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .flight-type-selector {
        flex-direction: column;
        gap: 10px;
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

video {
    max-width: 100%;
    height: auto;
}
