/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 110, 253, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Top Header */
.top-header {
    font-size: 0.9rem;
}

.top-header a {
    transition: opacity 0.3s ease;
}

.top-header a:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    line-height: 1.2;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: none;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 120px;
    }
    
    .footer-logo {
        height: 50px;
        max-width: 150px;
    }
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('../Banner/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 0 50px;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.4) 0%, rgba(255, 133, 51, 0.3) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

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

/* Flight Search Form Wrapper */
.search-form-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Make hero section container full width for search form */
.hero-section > .container {
    max-width: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1400px) {
    .hero-section > .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 992px) {
    .hero-section > .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-section > .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Flight Search Card */
.flight-search-card {
    background: white;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
    margin-top: 20px;
    animation: fadeInUp 1.2s ease;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 100%;
}

@media (min-width: 1400px) {
    .flight-search-card {
        padding: 28px 40px;
    }
    
    .search-form .form-control {
        padding: 9px 12px;
        font-size: 14px;
        height: 42px;
    }
    
    .search-form .input-group-text {
        padding: 9px 12px;
        font-size: 14px;
    }
    
    .form-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

/* Main Tabs */
.main-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 3px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.main-tab {
    flex: 1;
    border: none;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-tab:first-child {
    background: white;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.main-tab:last-child {
    background: transparent;
    color: #6c757d;
}

.main-tab.active:first-child {
    background: white;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.main-tab.active:last-child {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.main-tab:hover:not(.active) {
    color: var(--primary-color);
}

.main-tab i {
    font-size: 11px;
    margin-right: 4px;
}

/* Trip Type Selection */
.trip-type-selection {
    padding: 8px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e9ecef;
}

.trip-type-selection .form-check {
    margin-right: 20px;
    margin-bottom: 0;
}

.trip-type-selection .form-check-input {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    margin-top: 0.15rem;
    border: 2px solid #dee2e6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.trip-type-selection .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.trip-type-selection .form-check-label {
    font-weight: 600;
    font-size: 13px;
    color: #495057;
    cursor: pointer;
    transition: color 0.2s ease;
}

.trip-type-selection .form-check-label:hover {
    color: var(--primary-color);
}

.trip-type-selection .form-check-label i {
    font-size: 11px;
    opacity: 0.7;
}

/* Form Sections */
.form-section {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Swap Cities Button */
.btn-swap-cities {
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    font-size: 14px;
}

.btn-swap-cities:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) rotate(180deg);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-swap-cities:active {
    transform: translateY(-50%) rotate(180deg) scale(0.95);
}

@media (max-width: 768px) {
    .btn-swap-cities {
        right: -12px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

.search-form .form-label {
    font-weight: 600;
    color: #495057;
    font-size: 11px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
}

.search-form .form-label i {
    font-size: 10px;
    margin-right: 4px;
    opacity: 0.7;
    color: var(--primary-color);
}

.search-form .form-control {
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #fff;
    height: 38px;
}

.search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    background: #fff;
    outline: none;
}

.search-form .input-group-text {
    padding: 7px 10px;
    font-size: 13px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    border: 1.5px solid var(--primary-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    transition: all 0.3s ease;
}

.search-form .input-group .form-control:focus ~ .input-group-text,
.search-form .input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
}

.input-group-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    border: 1.5px solid var(--primary-color);
    border-right: none;
}

/* Passenger Buttons */
.passenger-group {
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #e0e0e0;
    transition: all 0.3s ease;
}

.passenger-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.passenger-btn {
    width: 32px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    border: none;
    padding: 0;
    transition: all 0.2s ease;
    background: #f8f9fa;
    color: #495057;
    border-radius: 0;
}

.passenger-btn:first-child {
    border-radius: 0;
}

.passenger-btn:last-child {
    border-radius: 0;
}

.passenger-btn:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.passenger-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f0f0f0;
}

.search-form .input-group .form-control {
    padding: 7px 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    background: transparent;
}

.passenger-group .form-control:focus {
    box-shadow: none;
    border: none;
}

/* Form Actions */
.form-actions {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

/* Action Buttons */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
    height: 42px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    color: white;
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp i {
    font-size: 16px;
    margin-right: 6px;
}

.btn-gmail {
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.25);
    height: 42px;
}

.btn-gmail:hover {
    background: linear-gradient(135deg, #1a73e8 0%, #4285F4 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.35);
    color: white;
}

.btn-gmail:active {
    transform: translateY(0);
}

.btn-gmail i {
    font-size: 16px;
    margin-right: 6px;
}

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

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

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: background 0.2s ease;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

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

.suggestion-code {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 10px;
}

/* Quick Links */
.quick-links {
    border-top: 1px solid #e9ecef;
}

.quick-link-item {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Why Section */
.why-section {
    background: white;
}

.why-section p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Airlines Section */
.airline-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    height: 100%;
}

.airline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.airline-logo {
    margin-bottom: 15px;
}

.airline-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Routes Section */
.route-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.route-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.route-item:hover {
    background: white;
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f8f9fa;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Features Section */
.feature-item {
    padding: 30px 20px;
}

.feature-item h5 {
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #f5f5f0 !important;
    color: #333;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    font-size: 16px;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer-link {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color) !important;
}

.footer-bottom {
    background: #e8e8e0;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.footer-bottom p {
    color: #333;
    font-size: 14px;
    margin: 0;
}

.footer-brand {
    color: #ff6600;
    font-weight: 600;
}

.social-links-footer {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0 2px;
    vertical-align: middle;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.social-icon i {
    font-size: 16px;
    display: inline-block;
    line-height: 1;
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

/* Fallback for Twitter/X icon if not available */
.social-icon .fa-x-twitter:before {
    content: "\f099"; /* Twitter icon fallback */
}

/* Ensure all brand icons are properly loaded */
.social-icon .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

.social-icon:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Benefits & Key Advantages Section */
.benefits-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 80px 0 120px !important;
}

.benefits-decorative-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(13, 110, 253, 0.03) 100%);
    pointer-events: none;
    overflow: hidden;
}

.benefits-decorative-top::before,
.benefits-decorative-top::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px dashed rgba(13, 110, 253, 0.2);
    border-radius: 50%;
    top: 20px;
}

.benefits-decorative-top::before {
    left: 5%;
    transform: rotate(-45deg);
}

.benefits-decorative-top::after {
    right: 5%;
    transform: rotate(45deg);
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.benefits-highlight {
    color: #ff6600;
}

.benefits-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefit-icon-vip {
    background: linear-gradient(135deg, #32cd32 0%, #228b22 100%);
}

.benefit-icon-concert {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
}

.benefit-icon-travel {
    background: linear-gradient(135deg, #9370db 0%, #7b68ee 100%);
}

.benefit-icon-guarantee {
    background: linear-gradient(135deg, #20b2aa 0%, #008b8b 100%);
}

.benefit-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.benefit-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.landmarks-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #4a90e2 0%, #5ba3f0 100%);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0 100px !important;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefits-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .benefit-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .benefit-card-title {
        font-size: 1.2rem;
    }
    
    .landmarks-silhouette {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .social-links-footer {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 10px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Contact Info */
.contact-info .contact-icon {
    width: 50px;
    text-align: center;
}

.contact-info h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Route Card */
.route-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color) !important;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.scroll-top-btn.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 50px;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .flight-search-card {
        padding: 16px;
        border-radius: 12px;
    }

    .main-tabs {
        margin-bottom: 10px;
    }

    .main-tab {
        padding: 7px 10px;
        font-size: 12px;
    }

    .trip-type-selection {
        padding: 7px 8px;
        margin-bottom: 10px;
    }

    .trip-type-selection .form-check {
        margin-right: 15px;
    }

    .form-section {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .search-form .form-label {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .search-form .form-control {
        padding: 6px 9px;
        font-size: 12px;
        height: 36px;
    }

    .search-form .input-group-text {
        padding: 6px 9px;
        font-size: 12px;
    }

    .btn-swap-cities {
        right: -12px;
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: calc(50% + 8px);
    }

    .passenger-btn {
        width: 30px;
        height: 34px;
        font-size: 16px;
    }

    .form-actions {
        margin-top: 12px;
        padding-top: 12px;
    }

    .btn-whatsapp,
    .btn-gmail {
        padding: 9px 14px;
        font-size: 12px;
        height: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .search-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    .flight-search-card {
        padding: 14px;
        border-radius: 10px;
    }

    .main-tab {
        font-size: 11px;
        padding: 6px 8px;
    }

    .trip-type-selection {
        padding: 6px;
    }

    .trip-type-selection .form-check-label {
        font-size: 12px;
    }

    .form-section {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .search-form .row > div {
        margin-bottom: 10px;
    }

    .search-form .form-control {
        height: 34px;
        font-size: 11px;
    }

    .btn-swap-cities {
        right: -10px;
        width: 28px;
        height: 28px;
        font-size: 11px;
        top: calc(50% + 10px);
    }

    .passenger-btn {
        width: 28px;
        height: 32px;
    }

    .btn-whatsapp,
    .btn-gmail {
        height: 38px;
        font-size: 11px;
        padding: 8px 12px;
    }
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: slideIn 0.5s ease;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Passenger Counter */
#passengers {
    font-weight: 600;
    font-size: 16px;
}

.btn-outline-secondary {
    border-color: #dee2e6;
    color: #6c757d;
}

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

/* Group Booking Card Component Styles */
.group-booking-card {
    margin-top: 20px;
}

.booking-feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.booking-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    background: white;
}

.booking-feature-card .feature-icon {
    margin-bottom: 12px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.booking-feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-orange);
}

.booking-feature-card h6 {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.booking-feature-card p {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.booking-feature-card .btn {
    border-width: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    transition: all 0.3s ease;
}

.booking-feature-card .btn:hover {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .booking-feature-card {
        margin-bottom: 15px;
        padding: 18px 12px;
    }
    
    .group-booking-card {
        margin-top: 15px;
    }
}

