/* Modern Homepage Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #004E92;
    --primary-dark: #004e92;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;    border-bottom: 1px solid #d7d7d7;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.75rem;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--primary-color);
  
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    color: white;
    padding: 2rem 0;
    position: relative;
   
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}


.search-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    background: #F2F2F2;
    padding: 0rem;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 5;
}
.search-tab i::before {
    font-size: 30px;
   
    padding: 5px;
    border-radius: 10px;
}
.search-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    border-radius: 10px 0px 0px 10px;
    font-weight: 500;
    color: #030528;
    cursor: pointer;
    transition: all 0.2s;
    display: grid;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    position: relative;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.search-tab.active {
    background: #004E92;
    color: white;
    box-shadow: var(--shadow-sm);
}
.search-tab.active i::before {
    background: none;
}

/* Trip Type Selection */
.trip-type-selection {
    border-bottom: 1px solid #6B7280;
    border-radius: 0px;
    width: 100%;
    text-align: center;
    display: block;
   
}



.trip-type-option {
    flex: 1;
    cursor: pointer;
}

.trip-type-option input[type="radio"] {
    display: none;
}

.trip-type-label {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 5px 10px;
    background: transparent;
    color: #6b7280;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.2s;
    text-align: center;
}

.trip-type-option input[type="radio"]:checked + .trip-type-label {
    color: #024586;
    border-bottom: 2px solid #024586;
   
}

.trip-type-label i {
    font-size: 1rem;
}



.cabin-class-selection .floating-input {
    max-width: 200px;
    margin: 0 auto;
}



.cabin-class-selection .input-with-icon:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.search-form {
    display: none;
}

.search-form.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;    margin-top: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #030c30;
    z-index: 1;
}

.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 5px 5px 5px 45px;
    border: 1px solid #000428;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s;
    background: #F9FAFB;
}

.input-with-icon input:focus,
.input-with-icon select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Floating Label Styles */
.floating-input {
    position: relative;
}

.floating-input .input-with-icon {
    position: relative;
}

.floating-input label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: #030528;
    font-size: 1rem;
    font-weight: 400;
    pointer-events: none;
    transition: all 0.2s ease;
    background: #f9fafb;
    padding: 0 0.25rem;
    z-index: 2;
}

.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label,
.floating-input input.has-value + label,
.floating-input select:focus + label,
.floating-input select.has-value + label {
    top: 0;
    left: 2.75rem;
    font-size: 0.75rem;
    color: #000000;
    font-weight: 400;
    transform: translateY(-50%);
}

.floating-input input {
    padding-top: 10px;
    padding-bottom: 10px;
}

.floating-input input:focus {
    padding-top: 10px;
    padding-bottom: 10px;
}

.search-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    padding: 10px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.2s;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.destination-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.destination-info h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.destination-info p {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Deals Section */
.deals {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.deal-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.2s;
    position: relative;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.deal-card.featured {
    grid-column: span 2;
}

.deal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 2;
}

.deal-image {
    height: 200px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-content {
    padding: 1.5rem;
}

.deal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.deal-location {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.875rem;
}

.current-price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.deal-duration {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    opacity: 0.9;
    font-size: 1.125rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    background: #d97706;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* Date Range Picker Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
@media (min-width: 768px) {
.mobile-nav {
    display: none !important;
}}
@media (max-width: 768px) {
    a.navbar-brand img {
        height: 40px !important;
    }
    .search-tab i::before {
        font-size: 15px;
        padding: 0px;
        border-radius: 0px;
    }
    .trip-type-selection {
        display: block;padding-bottom: 0px;
       
    }
    .modal.show {
        align-items: flex-start;
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .modal.show {
        align-items: flex-start;
        padding: 0;
    }
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.3s ease;
    margin: 1rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.date-picker-container {
    display: block;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: start;
}

.calendar-container {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-header h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.calendar-nav {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-secondary);
}

.calendar-nav:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
}

.calendar-day:hover {
    background: var(--primary-color);
    color: white;
}

.calendar-day.disabled {
    color: var(--text-light);
    cursor: not-allowed;
}

.calendar-day.disabled:hover {
    background: transparent;
    color: var(--text-light);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
}

.calendar-day.in-range {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.calendar-day.range-start,
.calendar-day.range-end {
    background: var(--primary-color);
    color: white;
}

.date-selection-info {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.selected-dates {
    margin-bottom: 1.5rem;
}

.date-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.date-info:last-child {
    border-bottom: none;
}

.date-info label {
    font-weight: 600;
    color: var(--text-primary);
}

.date-info span {
    color: var(--text-secondary);
    font-weight: 500;
}

.date-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Passenger Picker Styles */
.passenger-picker-container {
    max-width: 400px;
    margin: 0 auto;
}

.passenger-type {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.passenger-type:last-of-type {
    border-bottom: none;
}

.passenger-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.passenger-label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.passenger-label i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 2rem;
    text-align: center;
}

.passenger-label h4 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.passenger-label p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.passenger-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.passenger-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background: white;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 1rem;
}

.passenger-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.passenger-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.passenger-btn:disabled:hover {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.passenger-count {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 2rem;
    text-align: center;
}

.passenger-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1.5rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 0.5rem 0;
    z-index: 1000;
}

.mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    transition: color 0.2s;
    min-width: 3rem;
    min-height: 3rem;
    justify-content: center;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item i {
    font-size: 1.25rem;
}

/* Airport Suggestions Styles */
.airport-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1050;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.airport-suggestions.show {
    display: block;
}

.airport-suggestion {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.airport-suggestion:last-child {
    border-bottom: none;
}

.airport-suggestion:hover {
    background-color: #f8f9fa;
}

.airport-suggestion.selected {
    background-color: #e3f2fd;
    border-left: 3px solid #030528;
}

.airport-suggestion .airport-code {
    background: #030528;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    min-width: 40px;
    text-align: center;
}

.airport-suggestion .airport-details {
    flex: 1;
}

.airport-suggestion .airport-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;font-size: 12px;
}

.airport-suggestion .airport-location {
    font-size: 12px;
    color: #666;    
}

.airport-suggestion .all-airports-suggestion {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: bold;
}

.airport-suggestion .all-airports-suggestion .airport-name {
    color: white;
}

.airport-suggestion .all-airports-suggestion .airport-location {
    color: rgba(255,255,255,0.8);
}

/* Airport Selection Dropdown Styles */
.airport-selection-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1050;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.airport-selection-dropdown.show {
    display: block;
}

.airport-selection-dropdown .dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.airport-selection-dropdown .dropdown-header h6 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.airport-selection-dropdown .close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.airport-selection-dropdown .close-btn:hover {
    background-color: #e9ecef;
}

.airport-selection-dropdown .dropdown-content {
    padding: 8px 0;
}

.airport-option {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.airport-option:last-child {
    border-bottom: none;
}

.airport-option:hover {
    background-color: #f8f9fa;
}

.airport-option.selected {
    background-color: #e3f2fd;
    border-left: 3px solid #2196f3;
}

.airport-option .airport-code {
    background: #2196f3;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    min-width: 40px;
    text-align: center;
}

.airport-option .airport-details {
    flex: 1;
}

.airport-option .airport-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.airport-option .airport-location {
    font-size: 12px;
    color: #666;
}

.airport-option .all-airports-option {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: bold;
}

.airport-option .all-airports-option .airport-name {
    color: white;
}

.airport-option .all-airports-option .airport-location {
    color: rgba(255,255,255,0.8);
}

/* Field Input Wrapper Positioning */
.field-input-wrapper {
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Fix mobile search tab clickability */
    .search-tab {
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        z-index: 15;
    }
    
    .search-tab:active {
        transform: scale(0.98);
    }
  
    
    /* Ensure search tabs are above any other elements */
    .search-tabs {
        position: relative;
        z-index: 20;margin-bottom: 0px;
    }
    ul.navbar-nav.ms-auto li {
        align-items: baseline;
    }
    div#navbarNav {
        background: #f9fafb;
    }
    /* Ensure search forms are properly displayed on mobile */
    .search-form {
        position: relative;
        z-index: 1;
    }
    
    /* Fix mobile form inputs */
    .floating-input input,
    .floating-input select {
        min-height: 48px;
        font-size: 0.875em; /* Prevents zoom on iOS */
    }
    
    /* Fix mobile button touch targets */
    .search-btn {
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Fix mobile select styling */
    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }
    
    /* Fix cabin class select specifically */
    #cabin-class {
               -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: transparent;
        border: 1px solid #011642;
        border-radius: 8px;
        color: #011642;
        font-size: 16px;
        padding: 12px 40px 12px 50px;
        width: 100%;
        min-height: 48px;
    }
    
    #cabin-class:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }
    
    #cabin-class option {
        background-color: #1f2937;
        color: #fff;
        padding: 8px;
    }
    
    /* Fix mobile modal positioning */
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .search-widget {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-card.featured {
        grid-column: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .modal-content {
        width: 98%;
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .date-picker-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .date-selection-info {
        order: -1;
        padding: 1rem;
    }
    
    .calendar-container {
        padding: 1rem;
    }
    
    .calendar-grid {
        gap: 0.25rem;
    }
    
    .calendar-day {
        font-size: 0.75rem;
        min-height: 2rem;
    }
    
    .calendar-day-header {
        font-size: 0.75rem;
        padding: 0.25rem;
    }
    
    .calendar-header h4 {
        font-size: 1rem;
    }
    
    .calendar-nav {
        width: 2rem;
        height: 2rem;
    }
    
    body {
        padding-bottom: 5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 0rem 0;
    }
    
    /* Additional mobile fixes for small screens */
    .search-tab {
        padding: 5px 0px;
        font-size: 0.875rem;
    }
    
    .search-tab i {
        font-size: 1.25rem;
    }
    
    .search-tab span {
        font-size: 0.75rem;
    }
    
    /* Fix form layout on small screens */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    /* Fix trip type selection on mobile */
    .trip-type-selection {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trip-type-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .trip-type-option {
        width: 100%;
    }
    
    .cabin-class-selection {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-widget {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features,
    .destinations,
    .deals,
    .testimonials {
        padding: 3rem 0;
    }
    
    .newsletter {
        padding: 3rem 0;
    }
    
    .newsletter-text h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 0.75rem;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .date-picker-container {
        gap: 0.75rem;
    }
    
    .date-selection-info {
        padding: 0.75rem;
    }
    
    .calendar-container {
        padding: 0.75rem;
    }
    
    .calendar-day {
        font-size: 0.7rem;
        min-height: 1.75rem;
    }
    
    .calendar-day-header {
        font-size: 0.7rem;
        padding: 0.2rem;
    }
    
    .date-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .date-actions .btn-outline,
    .date-actions .btn-primary {
        width: 100%;
        padding: 0.75rem;
    }
    
    .selected-dates {
        margin-bottom: 1rem;
    }
    
    .date-info {
        padding: 0.5rem 0;
        font-size: 0.875rem;
    }
    
    .date-info label {
        font-size: 0.875rem;
    }
    
    .date-info span {
        font-size: 0.875rem;
    }
    
    .passenger-picker-container {
        max-width: 100%;
    }
    
    .passenger-type {
        padding: 1rem 0;
    }
    
    .passenger-label {
        gap: 0.75rem;
    }
    
    .passenger-label i {
        font-size: 1.25rem;
        width: 1.5rem;
    }
    
    .passenger-label h4 {
        font-size: 1rem;
    }
    
    .passenger-label p {
        font-size: 0.8rem;
    }
    
    .passenger-controls {
        gap: 0.75rem;
    }
    
    .passenger-btn {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.875rem;
    }
    
    .passenger-count {
        font-size: 1.125rem;
        min-width: 1.75rem;
    }
    
    .passenger-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .passenger-actions .btn-outline,
    .passenger-actions .btn-primary {
        width: 100%;
        padding: 0.75rem;
    }
    
    .floating-input label {
        font-size: 0.875rem;
    }
    
    .floating-input input:focus + label,
    .floating-input input:not(:placeholder-shown) + label,
    .floating-input input.has-value + label {
        font-size: 0.7rem;
    }
    label.trip-type-option i {
        display: none;
    }
    .trip-type-options {
        display: flex
        ;
            flex-direction: row;
        gap: 0.25rem;
    }
    
    .trip-type-label {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .trip-type-label i {
        font-size: 0.875rem;
    }
    
    .cabin-class-selection .floating-input {
        max-width: 100%;
    }
    
    .cabin-class-selection {
       
        padding-top: 0.75rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }
    
    .modal-header {
        padding: 0.75rem;
    }
    
    .modal-header h3 {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 0.5rem;
        height: calc(100vh - 70px);
    }
    
    .date-picker-container {
        gap: 0.5rem;
    }
    
    .date-selection-info {
        padding: 0.5rem;
    }
    
    .calendar-container {
        padding: 0.5rem;
    }
    
    .calendar-day {
        font-size: 0.65rem;
        min-height: 1.5rem;
    }
    
    .calendar-day-header {
        font-size: 0.65rem;
        padding: 0.15rem;
    }
    
    .calendar-header h4 {
        font-size: 0.875rem;
    }
    
    .calendar-nav {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .date-actions .btn-outline,
    .date-actions .btn-primary {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
}

/* Location Suggestions Styles */
.location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.location-suggestion {
    padding: 12px 45px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-suggestion:hover {
    background-color: #f9fafb;
}

.location-suggestion:last-child {
    border-bottom: none;
}

.location-suggestion i {
    color: #6b7280;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.location-suggestion .location-info {
    flex: 1;
}

.location-suggestion .location-name {
    font-weight: 500;
    color: #111827;
    font-size: 14px;
    margin-bottom: 2px;
}

.location-suggestion .location-details {
    font-size: 12px;
    color: #6b7280;
}

.location-selection-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.dropdown-header h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.close-btn:hover {
    background-color: #e5e7eb;
    color: #374151;
}

.dropdown-content {
    max-height: 250px;
    overflow-y: auto;
}

.location-option {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-option:hover {
    background-color: #f9fafb;
}

.location-option:last-child {
    border-bottom: none;
}

.location-option i {
    color: #6b7280;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.location-option .location-info {
    flex: 1;
}

.location-option .location-name {
    font-weight: 500;
    color: #111827;
    font-size: 14px;
    margin-bottom: 2px;
}

.location-option .location-details {
    font-size: 12px;
    color: #6b7280;
}

.location-option .location-type {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile responsive for location suggestions */
@media (max-width: 768px) {
    .location-suggestions,
    .location-selection-dropdown {
        max-height: 200px;
    }
    
    .location-suggestion,
    .location-option {
        padding: 10px 12px;
    }
    
    .location-suggestion .location-name,
    .location-option .location-name {
        font-size: 13px;
    }
    
    .location-suggestion .location-details,
    .location-option .location-details {
        font-size: 11px;
    }
}

/* Location-Based Flight Slider Styles */
.location-flights {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.location-flights .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-flights .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.location-flights .section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.location-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.location-status i {
    font-size: 0.8rem;
}

.flight-options-container {
    position: relative;
    min-height: 400px;
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.error-icon {
    width: 80px;
    height: 80px;
    background: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.error-icon i {
    font-size: 2rem;
    color: #dc2626;
}

.error-state h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.error-state p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 400px;
}

.flight-slider {
    position: relative;
    overflow: hidden;
}

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

.slider-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}



.flight-cards-wrapper {
    overflow: hidden;
    padding: 0 60px;
}

.flight-cards {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.flight-card {
    flex: 0 0 100%;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    max-width: 400px;
    margin: 0 auto;
}

.flight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.flight-header {
    margin-bottom: 20px;
}

.flight-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.airport-info {
    text-align: center;
    flex: 1;
}

.airport-code {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.airport-name {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.flight-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.flight-details {
    margin-bottom: 20px;
}

.flight-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-item i {
    width: 16px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.flight-price {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.flight-actions {
    display: flex;
    gap: 12px;
}

.flight-actions .btn-outline,
.flight-actions .btn-primary {
    
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--primary-dark);
}

/* Responsive Design for Flight Slider */
@media (max-width: 1024px) {
    .flight-card {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .slider-btn.prev-btn {
        margin-left: -15px;
    }
    
    .slider-btn.next-btn {
        margin-right: -15px;
    }
    
    .flight-cards-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .location-flights {
        padding: 60px 0;
    }
    
    .location-flights .section-header h2 {
        font-size: 2rem;
    }
    
    .flight-card {
        flex: 0 0 95%;
    }
    
    .flight-cards-wrapper {
        padding: 0 20px;
    }
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn.prev-btn {
        margin-left: -10px;
    }
    
    .slider-btn.next-btn {
        margin-right: -10px;
    }
    
    .flight-route {
        gap: 10px;
    }
    
    .flight-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .airport-code {
        font-size: 1.2rem;
    }
    
    .airport-name {
        font-size: 0.75rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .flight-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .location-flights .section-header h2 {
        font-size: 1.8rem;
    }
    
    .location-status {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .flight-card {
        padding: 20px;
    }
    
    .flight-info {
        gap: 6px;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
}

/* Location-Based Hotel Slider Styles */
.location-hotels {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.location-hotels .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-hotels .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.location-hotels .section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hotel-options-container {
    position: relative;
    min-height: 400px;
}

.hotel-slider {
    position: relative;
    overflow: hidden;
}

.hotel-cards-wrapper {
    overflow: hidden;
    padding: 0 60px;
}

.hotel-cards {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.hotel-card {
    flex: 0 0 100%;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    max-width: 400px;
    margin: 0 auto;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hotel-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-rating i {
    color: #fbbf24;
    font-size: 0.7rem;
}

.hotel-info {
    margin-bottom: 20px;
}

.hotel-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hotel-location i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.amenity-tag {
    background: #f1f5f9;
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.hotel-price {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hotel-actions {
    display: flex;
    gap: 12px;
}

.hotel-actions .btn-outline,
.hotel-actions .btn-primary {
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Responsive Design for Hotel Slider */
@media (max-width: 1024px) {
    .hotel-card {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .slider-btn.prev-btn {
        margin-left: -15px;
    }
    
    .slider-btn.next-btn {
        margin-right: -15px;
    }
    
    .hotel-cards-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .location-hotels {
        padding: 60px 0;
    }
    
    .location-hotels .section-header h2 {
        font-size: 2rem;
    }
    
    .hotel-card {
        flex: 0 0 100%;
    }
    
    .hotel-cards-wrapper {
        padding: 0 20px;
    }
    
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn.prev-btn {
        margin-left: -10px;
    }
    
    .slider-btn.next-btn {
        margin-right: -10px;
    }
    
    .hotel-image {
        height: 160px;
    }
    
    .hotel-name {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .hotel-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .location-hotels .section-header h2 {
        font-size: 1.8rem;
    }
    
    .location-status {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hotel-card {
        padding: 20px;
    }
    
    .hotel-image {
        height: 140px;
    }
    
    .hotel-amenities {
        gap: 6px;
    }
    
    .amenity-tag {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
}

/* Multi-City Styles */


.multicity-routes {
    display: flex;
    flex-direction: column;
   
}

.multicity-route {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px;
    position: relative;
}

.multicity-route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.route-number {
    font-weight: 600;
   
    font-size: 0.9rem;
}

.remove-route-btn {
    background: rgba(255, 59, 48, 0.2);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-route-btn:hover {
    background: rgba(255, 59, 48, 0.3);
    border-color: rgba(255, 59, 48, 0.5);
}

.multicity-route .form-row {
    margin-bottom: 0;
}

.add-route-container {
    text-align: center;
    margin-top: 1rem;
}

.add-route-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.add-route-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.add-route-btn i {
    font-size: 0.8rem;
}

/* Route container visibility */
.route-container {
    transition: all 0.3s ease;
}

.multicity-container {
    transition: all 0.3s ease;
}

/* Multi-city mobile styles */
@media (max-width: 768px) {
    .multicity-route {
        padding: 0.75rem;
    }
    
    .multicity-route-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .add-route-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

/* Cabin Class Select in Modal */
.cabin-class-controls {
    display: flex;
    align-items: center;
}

.cabin-class-select {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    min-width: 150px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cabin-class-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.cabin-class-select:hover {
    border-color: #667eea;
}
