/* Modern Hero Section - Inspired by Figma Design */

.hero-modern-section {
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.4) 100%), linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    min-height: 600px;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-left-content {
    color: #ffffff;
    padding-right: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 165, 0, 0.15);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 600;
    color: #ffa500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge i {
    margin-right: 8px;
    font-size: 14px;
}

.hero-main-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-main-heading .highlight {
    color: #ffa500;
    display: block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-trust-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1e3a5f;
    margin-left: -12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #1e3a5f;
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar.count {
    background: #ffa500;
    color: #fff;
    font-size: 14px;
}

.hero-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stars {
    color: #ffa500;
    font-size: 16px;
    letter-spacing: 2px;
}

.hero-rating-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Right Content - Booking Card */
.hero-booking-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.booking-form-group {
    margin-bottom: 20px;
}

.booking-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    color: #1f2937;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.booking-form-control:focus {
    outline: none;
    border-color: #ffa500;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.booking-form-control::placeholder {
    color: #9ca3af;
}

.booking-date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.booking-date-group {
    display: flex;
    flex-direction: column;
}

.booking-date-input {
    position: relative;
}

.booking-date-input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.booking-date-input .booking-form-control {
    padding-left: 44px;
}

.booking-promo-input {
    position: relative;
}

.booking-promo-input i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.booking-promo-input .booking-form-control {
    padding-left: 44px;
}

.booking-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

.booking-submit-btn i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-modern-section {
        padding: 60px 0 80px;
        min-height: auto;
    }
    
    .hero-left-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-main-heading {
        font-size: 40px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-trust-section {
        justify-content: center;
    }
    
    .hero-booking-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .hero-main-heading {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .booking-date-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .hero-modern-section {
        padding: 40px 0 60px;
    }
    
    .hero-main-heading {
        font-size: 28px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .hero-booking-card {
        padding: 20px;
    }
    
    .booking-form-control {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .booking-submit-btn {
        padding: 14px;
        font-size: 15px;
    }
}

/* Select2 Customization for Modern Look */
.hero-booking-card .select2-container--default .select2-selection--single {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    height: 48px;
    background: #f9fafb;
}

.hero-booking-card .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding-left: 16px;
    color: #1f2937;
}

.hero-booking-card .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
    right: 10px;
}

.hero-booking-card .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #ffa500;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}
