/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.language-selector:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: #f3f4f6;
}

.language-option.active {
    background-color: #3b82f6;
    color: white;
}

.language-option.active:hover {
    background-color: #2563eb;
}

/* Flag Icon Styles */
.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.flash-success {
    background: #10b981;
    color: white;
}

.flash-error {
    background: #dc2626;
    color: white;
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.flash-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    color: #1d4ed8;
    transform: scale(1.05);
}

.logo i {
    color: #fbbf24;
    transition: all 0.3s ease;
}

.logo:hover i {
    color: #f59e0b;
    transform: rotate(5deg);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector,
.currency-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector:hover,
.currency-selector:hover {
    border-color: #2563eb;
}

.language-selector i:first-child {
    color: #dc2626;
}

.btn-my-booking {
    background: #1e40af;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-my-booking:hover {
    background: #1e3a8a;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Primary background image with fallback gradient */
    background-image: 
        url('../images/hero-background.jpg?v=1'),
        linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #8b5cf6 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Fallback gradient if image not found - using background-color instead of background */
    background-color: #0ea5e9;
    /* Debug: Add a border to see if the element is visible */
    /* border: 2px solid red; */
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 80px;
}

.hero-text {
    text-align: center;
    margin-bottom: 40px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ABTA Badge */
.abta-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.abta-logo {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 2px;
}

.abta-text {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2px;
}

.abta-subtext {
    font-size: 10px;
    color: #6b7280;
}

/* Booking Form */
.booking-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #fbbf24;
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 2.2fr auto 2.2fr 1.8fr 1.8fr 1.2fr 1.2fr;
    gap: 20px;
    align-items: end;
    width: 100%;
}

.form-group {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.required-label {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 10px;
    font-weight: 600;
    color: #dc2626;
    text-transform: uppercase;
    background: rgba(220, 38, 38, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 15px;
    background: white;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.input-wrapper::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #6b7280;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within::after {
    border-top-color: #2563eb;
    transform: translateY(-50%) rotate(180deg);
}

.input-wrapper:hover {
    border-color: #d1d5db;
}

.input-wrapper:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-wrapper i {
    color: #6b7280;
    margin-right: 10px;
    font-size: 16px;
}

.input-wrapper input,
.input-wrapper select {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #374151;
    background: transparent;
    min-width: 0;
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.input-wrapper select {
    padding-right: 30px;
    position: relative;
}

.input-wrapper select::-ms-expand {
    display: none;
}

.input-wrapper input::placeholder {
    color: #9ca3af;
}

/* Specific styling for different field types */
.form-group.arrival-airport .input-wrapper {
    border-left: 4px solid #fbbf24;
}

.form-group.going-to .input-wrapper {
    border-left: 4px solid #10b981;
}

.form-group.passengers .input-wrapper {
    border-left: 4px solid #8b5cf6;
}

.form-group.flight-arrival .input-wrapper {
    border-left: 4px solid #f59e0b;
}

.form-group.add-return .input-wrapper {
    border-left: 4px solid #6b7280;
}

/* Enhanced hover effects for select fields */
.form-group.arrival-airport .input-wrapper:hover {
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group.going-to .input-wrapper:hover {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group.passengers .input-wrapper:hover {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group.flight-arrival .input-wrapper:hover {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group.add-return .input-wrapper:hover {
    border-color: #6b7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.1);
}

/* Focus states */
.form-group.arrival-airport .input-wrapper:focus-within {
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.form-group.going-to .input-wrapper:focus-within {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-group.passengers .input-wrapper:focus-within {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-group.flight-arrival .input-wrapper:focus-within {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-group.add-return .input-wrapper:focus-within {
    border-color: #6b7280;
    box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.2);
}

/* Return date placeholder styling */
.return-date-wrapper {
    position: relative;
}

.return-placeholder {
    cursor: pointer;
    color: #9ca3af !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    width: 100% !important;
    flex: 1 !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

.return-placeholder:hover {
    color: #6b7280 !important;
}

.return-placeholder:focus {
    color: #6b7280 !important;
}

.return-date-picker {
    width: 100% !important;
    flex: 1 !important;
    font-size: 14px !important;
    color: #374151 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
}

/* Smooth transition between placeholder and date picker */
.return-date-wrapper .return-placeholder,
.return-date-wrapper .return-date-picker {
    transition: all 0.3s ease;
}

/* Hide the dropdown arrow for the placeholder */
.return-date-wrapper:has(.return-placeholder)::after {
    display: none;
}

/* Enhanced select option styling */
.input-wrapper select option {
    padding: 10px 15px;
    background: white;
    color: #374151;
    font-size: 14px;
    border: none;
}

.input-wrapper select option:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.input-wrapper select option:checked {
    background: #2563eb;
    color: white;
    font-weight: 600;
}

/* Icon styling for different field types */
.form-group.arrival-airport .input-wrapper i {
    color: #fbbf24;
}

.form-group.going-to .input-wrapper i {
    color: #10b981;
}

.form-group.passengers .input-wrapper i {
    color: #8b5cf6;
}

.form-group.flight-arrival .input-wrapper i {
    color: #f59e0b;
}

.form-group.add-return .input-wrapper i {
    color: #6b7280;
}

/* Subtle animation for field interactions */
.form-group .input-wrapper {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group .input-wrapper:hover {
    transform: translateY(-1px);
}

.form-group .input-wrapper:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swap-button {
    background: #2563eb;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 10;
}

.swap-button:hover {
    background: #1d4ed8;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.swap-button:active {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.3);
}

.swap-button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.swap-button:hover i {
    transform: rotate(180deg);
}

.search-button {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.search-button:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* Why Book Section */
.why-book-section {
    padding: 80px 0;
    background: white;
}

.why-book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-book-column {
    display: flex;
    flex-direction: column;
}

.why-book-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    flex: 1;
}

.why-book-title {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 20px;
    text-align: left;
}

/* Why book with us - Left column */
.why-book-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-book-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0;
}

.why-book-icon {
    color: #10b981;
    font-size: 18px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.why-book-text {
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

/* Why book a transfer - Right column */
.transfer-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.transfer-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 15px 10px;
}

.transfer-benefit-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 10px;
}

.transfer-benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    line-height: 1.4;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background: #f9fafb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
}

.review-stars i {
    color: #10b981;
    font-size: 18px;
}

.review-score {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .form-row {
        grid-template-columns: 2fr auto 2fr 1.5fr 1.5fr 1fr 1fr;
        gap: 15px;
    }
    
    .booking-form {
        padding: 25px;
        max-width: 1100px;
    }
}

@media (max-width: 1200px) {
    .form-row {
        grid-template-columns: 2fr auto 2fr 1.2fr 1.2fr 0.8fr 0.8fr;
        gap: 12px;
    }
    
    .booking-form {
        padding: 25px;
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .swap-button {
        order: -1;
        align-self: center;
        margin-bottom: 0;
        justify-self: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    /* Adjust field styling for mobile */
    .form-group .input-wrapper:hover {
        transform: none;
    }
    
    .form-group .input-wrapper:focus-within {
        transform: none;
    }
    
    .booking-form {
        padding: 20px;
        margin: 0 10px;
    }
    
    /* Why book section responsive */
    .why-book-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-book-card {
        padding: 30px;
    }
    
    .transfer-benefits-list {
        gap: 15px;
    }
    
    .transfer-benefit-item {
        min-width: 100px;
        padding: 10px 5px;
    }
    
    .transfer-benefit-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .header-controls {
        gap: 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .booking-form {
        padding: 20px;
        margin: 0 10px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Why book section mobile */
    .why-book-section {
        padding: 60px 0;
    }
    
    .why-book-card {
        padding: 25px;
    }
    
    .why-book-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .transfer-benefits-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .transfer-benefit-item {
        flex-direction: row;
        text-align: left;
        min-width: auto;
        padding: 15px;
        background: #f9fafb;
        border-radius: 8px;
    }
    
    .transfer-benefit-image {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .transfer-benefit-text {
        text-align: left;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .booking-form {
        padding: 15px;
    }
    
    .input-wrapper {
        padding: 10px 12px;
    }
    
    .search-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Tables Section Styles */
.tables-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.table-container {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.table-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.table-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    background-color: #09aeed;
    padding: 16px 12px;
    border-radius: 8px 8px 0 0;
    margin: -24px -24px 20px -24px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.data-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.data-table tr:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 12px 16px;
    text-align: left;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
}

.table-cell-bold {
    font-weight: 700;
}

.table-row-price {
    background-color: #11B981;
}

.table-row-price .table-cell {
    color: white;
}

.table-image-cell {
    text-align: center;
    vertical-align: middle;
    padding: 8px;
}

.table-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.data-table tr:nth-child(even) {
    background-color: #f9fafb;
}

.data-table tr:hover {
    background-color: #f3f4f6;
}

.data-table tr.table-row-price:hover {
    background-color: #11B981;
}

/* Responsive Design for Tables */
@media (max-width: 768px) {
    .tables-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tables-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .table-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .table-container {
        padding: 16px;
    }
    
    .table-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .table-cell {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Booking Section Styles */
.booking-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
}

.booking-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-section .section-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.booking-section .section-subtitle {
    color: #64748b;
    font-size: 1.2rem;
    font-weight: 400;
}

.booking-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-button-group {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-button-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15), 0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.booking-route-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-btn {
    background: linear-gradient(135deg, #11b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(17, 185, 129, 0.3);
}

.booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.booking-btn:hover::before {
    left: 100%;
}

.booking-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 185, 129, 0.4);
}

.booking-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(17, 185, 129, 0.3);
}

.booking-btn i {
    font-size: 1.3rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.booking-btn .btn-text {
    flex: 1;
    text-align: left;
}

.booking-btn .btn-price {
    font-size: 1.2rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* Responsive Design for Booking Section */
@media (max-width: 768px) {
    .booking-section {
        padding: 60px 0;
    }
    
    .booking-section .section-title {
        font-size: 2rem;
    }
    
    .booking-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .booking-buttons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .booking-button-group {
        padding: 24px;
    }
    
    .booking-route-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .booking-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .booking-btn i {
        font-size: 1.1rem;
        margin-right: 10px;
    }
    
    .booking-btn .btn-price {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 40px 0;
    }
    
    .booking-section .section-title {
        font-size: 1.75rem;
    }
    
    .booking-section .section-subtitle {
        font-size: 1rem;
    }
    
    .booking-buttons-grid {
        padding: 0 16px;
    }
    
    .booking-button-group {
        padding: 20px;
    }
    
    .booking-route-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    
    .booking-btn {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .booking-btn .btn-text {
        font-size: 0.95rem;
    }
    
    .booking-btn .btn-price {
        font-size: 1rem;
        padding: 5px 10px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #f9fafb;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

.footer-logo i {
    font-size: 1.8rem;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f9fafb;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #10b981;
}

.social-media {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
    font-size: 0.95rem;
}

.contact-item i {
    color: #10b981;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #10b981;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-description {
        max-width: none;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        justify-content: center;
    }
    
    .footer-logo i {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .social-media {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }
    
    .footer-bottom-link {
        font-size: 0.85rem;
    }
}

/* Error Page Styles */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0 40px;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 8px 16px -4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.error-icon {
    margin-bottom: 30px;
}

.error-icon i {
    font-size: 4rem;
    color: #f59e0b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.error-message {
    margin-bottom: 30px;
}

.error-details {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.error-code {
    background: #f3f4f6;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: inline-block;
    border-left: 4px solid #dc2626;
}

.error-code-label {
    font-weight: 600;
    color: #374151;
    margin-right: 8px;
}

.error-code-value {
    font-family: 'Courier New', monospace;
    color: #dc2626;
    font-weight: 700;
}

.error-help {
    margin-bottom: 40px;
    text-align: left;
}

.error-help h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.error-suggestions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.error-suggestions li:hover {
    background: #f3f4f6;
    transform: translateX(5px);
}

.error-suggestions li i {
    color: #10b981;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.error-suggestions li span {
    color: #374151;
    font-weight: 500;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: #6b7280;
    color: white;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 114, 128, 0.4);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.error-additional-help {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.help-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.help-icon {
    flex-shrink: 0;
}

.help-icon i {
    font-size: 2rem;
    color: #2563eb;
}

.help-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.help-content p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.help-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1d4ed8;
}

.contact-link i {
    font-size: 1rem;
}

/* Error Page Responsive Design */
@media (max-width: 768px) {
    .error-page {
        padding: 60px 0 20px;
    }
    
    .error-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-icon i {
        font-size: 3rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .help-card {
        flex-direction: column;
        text-align: center;
    }
    
    .help-contact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-content {
        padding: 25px 15px;
        margin: 0 15px;
    }
    
    .error-title {
        font-size: 1.75rem;
    }
    
    .error-icon i {
        font-size: 2.5rem;
    }
    
    .error-suggestions li {
        padding: 12px 15px;
    }
    
    .help-card {
        padding: 20px;
    }
    
    .help-contact {
        flex-direction: column;
        gap: 15px;
    }
}
