/* Flight-specific styles */
.flight-booking-wrap {
    background: rgba(255, 255, 255, 0.95);
}

.flight-booking-form {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trip-type-buttons .btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 10px 20px;
}

.passenger-dropdown {
    min-width: 300px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flight-offer-card .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.flight-offer-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.discount-badge {
    top: -5px;
    right: 10px;
}

.route-arrow {
    position: relative;
}

.flight-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #007bff, transparent);
    margin-top: 5px;
}

.destination-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.destination-card .card:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.service-card {
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 123, 255, 0.05);
}

.step-card {
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
}

.cursor-pointer {
    cursor: pointer;
}

.banner-five-bg {
    position: relative;
}

.banner-five-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(108, 117, 125, 0.8));
}

.banner-five-content {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flight-booking-form {
        margin: 20px;
        padding: 20px !important;
    }
    
    .trip-type-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .trip-type-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .passenger-dropdown {
        min-width: 250px;
    }
}

/* Animation for form elements */
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    transition: all 0.3s ease;
}

/* Airline logos placeholder styles */
.airline-logo img {
    border-radius: 50%;
    border: 2px solid #f8f9fa;
}

/* Price styling */
.current-price {
    font-size: 1.5rem;
}

.original-price {
    font-size: 0.9rem;
}

/* Stats section animations */
.stats-section .stat-item {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.stats-section .stat-item:hover {
    transform: translateY(-5px);
}

/* CTA section styling */
.cta-content {
    border-radius: 20px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Flight search form improvements */
.form-label {
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control-lg {
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control-lg:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
