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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
}

/* Header */
header {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-visible {
    transform: translateY(0);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Hero Section with Carousel */
.hero {
    position: relative;
    color: white;
    padding: 4rem 20px;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 70px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.hero-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-with-form {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    text-align: left;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(255, 126, 95, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

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

/* Booking Form in Hero */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

.booking-form h2 {
    color: #ff7e5f;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.6rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    height: 48px;
}

.form-group textarea {
    height: auto;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7e5f;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 126, 95, 0.4);
}

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

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 4rem 20px;
    scroll-margin-top: 70px;
}

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

.features-title {
    text-align: center;
    color: #ff7e5f;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    line-height: 1.4;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 126, 95, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #ff7e5f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 20px;
}

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

.reviews-section h2 {
    text-align: center;
    color: #ff7e5f;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.reviews-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.review-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #ff7e5f;
    border: 2px solid #ff7e5f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-carousel-btn:hover {
    background: #ff7e5f;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.review-carousel-btn-prev {
    left: -25px;
}

.review-carousel-btn-next {
    right: -25px;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.reviewer-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.reviewer-info p {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: #555;
    line-height: 1.8;
    font-style: italic;
    flex-grow: 1;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: #ff7e5f;
    opacity: 0.1;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 126, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.review-dot.active {
    background: #ff7e5f;
    width: 30px;
    border-radius: 6px;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem 20px;
    margin-top: 4rem;
    scroll-margin-top: 70px;
}

/* Success Message */
.success-message {
    display: none;
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.success-message.show {
    display: block;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    margin-right: auto;
    color: #333;
}

.checkbox-left {
    display: flex;
    align-items: center;
}

/* Swap Button */
.swap-btn {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 126, 95, 0.3);
}

.swap-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 126, 95, 0.4);
}

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

.swap-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.swap-btn:hover .swap-icon {
    transform: rotate(180deg);
}

.airport-fixed {
    background: #f8f9fa;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.airport-fixed::before {
    content: "✈️";
    font-size: 1.2rem;
}

/* Select2 Custom Styles */
.select2-container--default .select2-selection--single {
    height: 48px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: normal;
    color: #333;
    padding: 0;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 46px;
    display: flex;
    align-items: center;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__placeholder {
    color: #999;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__clear {
    position: absolute;
    right: 35px;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__clear:hover {
    color: #ff7e5f;
}

.select2-container--default.select2-container--focus
    .select2-selection--single {
    border-color: #ff7e5f;
    outline: none;
}

.select2-dropdown {
    border: 1px solid #ff7e5f;
    border-radius: 8px;
}

.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: #ff7e5f;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.5rem;
}

.select2-container--default
    .select2-search--dropdown
    .select2-search__field:focus {
    border-color: #ff7e5f;
    outline: none;
}

.select2-container {
    width: 100% !important;
}

/* Price Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 95vh;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    border: none;
    background: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #ff7e5f;
}

.modal-title {
    color: #ff7e5f;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trip-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.trip-info p {
    margin: 0.5rem 0;
    color: #555;
}

.trip-info strong {
    color: #333;
}

.price-list {
    margin-bottom: 1.5rem;
    max-height: 42vh;
    overflow-y: auto;
    padding-right: 0.35rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.price-item:hover {
    border-color: #ff7e5f;
    background: #fff5f2;
}

.price-item.selected {
    border-color: #ff7e5f;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe9e0 100%);
}

.price-item-left {
    display: flex;
    align-items: center;
}

.price-item-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.price-item-info h4 {
    color: #333;
    margin-bottom: 0.25rem;
}

.price-item-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.price-item-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff7e5f;
}

.modal-form {
    margin-top: 1.5rem;
}

.form-group-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Mobile Booking Section */
.mobile-booking-section {
    display: none;
    padding: 2rem 20px;
    background: #f8f9fa;
}

.desktop-only {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 350px;
        padding: 2rem 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-with-form {
        display: block;
        max-width: 100%;
    }

    .hero-content {
        text-align: center;
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .carousel-btn {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-booking-section {
        display: block;
    }

    .mobile-booking-section .booking-form {
        padding: 1.5rem;
        max-width: 100%;
        background: white;
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .form-group-inline {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-height: 92vh;
    }

    .price-list {
        max-height: 38vh;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
    }

    .price-item-left {
        margin-bottom: 0.5rem;
    }

    /* Keep reviews carousel active on mobile */
    .reviews-carousel-wrapper {
        padding: 0;
    }

    .reviews-carousel {
        overflow: hidden;
    }

    .reviews-carousel-track {
        display: flex;
        gap: 1rem;
    }

    .review-card {
        padding: 1.5rem;
        min-height: auto;
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }
}
