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

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Global Select Stylings */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23666" d="M1 4l5 5 5-5"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center !important;
    background-size: 10px;
    padding-right: 35px !important;
    cursor: pointer;
}

/* =========================================
   Premium SweetAlert2 Custom Styling
========================================= */
div:where(.swal2-container) .swal2-popup {
    border-radius: 24px !important;
    padding: 2.5em 2em !important;
    font-family: 'Poppins', sans-serif !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

div:where(.swal2-container) .swal2-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    padding-top: 0.5em !important;
}

div:where(.swal2-container) .swal2-html-container {
    font-size: 15px !important;
    color: #666 !important;
    line-height: 1.6 !important;
}

div:where(.swal2-container) .swal2-styled.swal2-confirm {
    background: #F47419 !important;
    border-radius: 12px !important;
    padding: 12px 35px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    box-shadow: 0 4px 15px rgba(244, 116, 25, 0.3) !important;
    border: none !important;
    margin-top: 15px !important;
}

div:where(.swal2-container) .swal2-icon {
    border-width: 2px !important;
    margin-top: 0 !important;
    transform: scale(0.9) !important;
}

div:where(.swal2-container) .swal2-icon.swal2-warning {
    border-color: #F47419 !important;
    color: #F47419 !important;
}

div:where(.swal2-container) .swal2-icon.swal2-warning .swal2-icon-content {
    color: #F47419 !important;
}
.main-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #F47419;
    text-decoration: none;
}

.nav-links {
    margin-left: auto;
}

.nav-links a {
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #008cff;
}

.auth-buttons .login-btn {
    margin-right: 15px;
    text-decoration: none;
    color: #333;
}

.auth-buttons .signup-btn {
    background: #F47419;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.auth-buttons .signup-btn:hover {
    background: black;
}

/* FOOTER */
.main-footer {
    background: #0b2239;
    color: white;
    margin-top: 60px;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

/* Booking Stats */
.booking-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 110px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    background: #f9fbff;
    transition: 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 22px;
    color: #F47419;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #555;
}

/* Popular Routes Section */
.popular-routes {
    padding: 80px 0;
    background: #f5f7fa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.see-all-btn {
    text-decoration: none;
    background: #F47419;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    transition: 0.3s;
}

.see-all-btn:hover {
    background: #006edc;
}

/* Grid */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.route-card {
    background: white;
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.route-card img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
}

.route-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.route-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.route-info span {
    font-size: 14px;
    font-weight: 600;
    color: #F47419;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #ffffff;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-controls button {
    background: #F47419;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-controls button:hover {
    background: #006edc;
}

/* Slider */
.partners-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-top: 30px;
}

.partners-slider::-webkit-scrollbar {
    display: none;
}

/* Partner Card */
.partner-card {
    min-width: 180px;
    background: #f9fbff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

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

.partner-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.partner-card p {
    font-weight: 500;
    font-size: 14px;
}

/* Cheapest Fares Section */
.cheapest-fares {
    padding: 80px 0;
    background: #f5f7fa;
}

.cheapest-fares .container {
    max-width: 100%;
    width: 100%;
}

/* Slider */
.fares-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 30px 10px 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.fares-slider::-webkit-scrollbar {
    height: 8px;
}

.fares-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.fares-slider::-webkit-scrollbar-thumb {
    background: #F47419;
    border-radius: 10px;
}

.fares-slider::-webkit-scrollbar-thumb:hover {
    background: #e65b00;
}

/* Card */
.fare-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    scroll-snap-align: start;
}

.fare-card:hover {
    transform: translateY(-8px);
}

/* Image */
.fare-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Info Section */
.fare-info {
    padding: 18px;
}

.fare-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fare-top h3 {
    font-size: 18px;
}

.fare-top span {
    font-size: 13px;
    color: #666;
}

/* Bottom */
.fare-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #F47419;
}

.book-btn {
    background: #F47419;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.book-btn:hover {
    background: #e60023;
}

.offers-section {
    padding: 60px 8%;
    background: #fff;
}

.offers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.offers-header h2 {
    font-size: 26px;
    font-weight: bold;
}

.offer-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #F47419;
    color: white;
    border-color: #008cff;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

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

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-content {
    padding: 15px;
}

.offer-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.offer-content p {
    font-size: 14px;
    color: gray;
    margin-bottom: 12px;
}

.offer-content button {
    padding: 8px 15px;
    border: none;
    background: #F47419;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.offer-content button:hover {
    background: #e94e5b;
}

/* Responsive */
@media(max-width: 992px) {
    .offers-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .offers-container {
        grid-template-columns: 1fr;
    }
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #F47419, #F47419);
    padding: 50px 0 60px;
    /* Reduced height */
    color: #fff;
    position: relative;
    width: calc(100% - 90px);
    margin: 40px auto;
    /* Center horizontally */
    border-radius: 25px;
    /* Modern rounded look */
}

.hero-section .container {
    position: relative;
    top: 150px;
    /* adjust this value */
}

.hero-container.container {
    width: 100%;
    max-width: none;
    margin: 0;
}

.search-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 120px;
}

/* Hero Text Top Left */
.hero-text {
    position: absolute;
    top: 0px;
    left: 90px;
    /* Left padding */

    background: #ffffff;
    padding: 20px 30px;
    border-radius: 15px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    width: fit-content;
}

.hero-text h1 {
    margin: 0;
    font-size: 28px;
    color: #F47419;
}


.hero-text p {
    margin-top: 8px;
    font-size: 15px;
    color: #555;
}

.booking-tabs {
    position: absolute;
    top: -55px;
    /* THIS creates half inside / half outside */
    left: 270px;
    display: flex;
    gap: 20px;
}

.tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 90px;
    background: #f5f7fa;
    border-radius: 18px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* Hover effect */
.tab:hover {
    transform: translateY(-5px);
    background: #e8f0ff;
}

/* Active tab */
.tab.active {
    background: #F47419;
    color: white;
}

.trip-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.trip-btn {
    padding: 8px 18px;
    border-radius: 25px;
    border: 1px solid #ddd;
    background: #f5f7fa;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.trip-btn.active,
.trip-btn:hover {
    background: #F47419;
    color: white;
    border-color: #008cff;
}

/* Icon spacing */
.tab i {
    font-size: 20px;
    margin-bottom: 6px;
}

.search-box {
    position: relative;
    width: calc(100% - 120px);
    background: white;
    padding: 65px 30px 50px;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgb(31 3 3 / 72%);
}


.travel-categories {
    padding: 60px 8%;
    background: #f9fbff;
}

.travel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.travel-header h2 {
    font-size: 26px;
    font-weight: bold;
}

.travel-arrows button {
    background: #F47419;
    border: 1px solid #ddd;
    padding: 8px 14px;
    margin-left: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    color: white;

}

.travel-arrows button:hover {
    background: #008cff;
    color: white;
    border-color: #008cff;
}

.travel-slider-wrapper {
    overflow: hidden;
    margin-top: 30px;
}

.travel-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.travel-card {
    min-width: 300px;
    flex-shrink: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

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

.travel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

.travel-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.travel-text p {
    font-size: 13px;
    color: gray;
}

.explore-text {
    font-size: 14px;
    font-weight: 600;
    color: #F47419;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

.explore-text:hover {
    text-decoration: underline;
}

/* Responsive */
@media(max-width: 768px) {
    .travel-card {
        min-width: 250px;
    }
}

/* Trip Type Radio Buttons */
.trip-type {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    font-weight: 500;
}

.trip-type label {
    cursor: pointer;
}

.trip-type input {
    margin-right: 6px;
}

.search-form {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    flex-wrap: wrap;
}

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

.form-group label {
    font-size: 13px;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-width: 160px;
}

/* Swap Button */
.swap-btn {
    display: flex;
    align-items: center;
}

.swap-btn button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    transition: 0.3s;
}

.swap-btn button:hover {
    background: #008cff;
    color: white;
    transform: rotate(180deg);
}

.search-btn {
    background: #F47419;
    ;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    /* icon on top */
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 100px;
    transition: 0.3s;
}

.search-btn span {
    font-size: 14px;
}

.search-btn:hover {
    background: #006edc;
    transform: translateY(-3px);
}

/* OFFERS */
.offers-section {
    padding: 60px 122px;
}

.offers-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.offer-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

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

/* TAB CONTENT */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}



.why-book {
    padding: 80px 8%;
    background: #ffffff;
}

.why-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Top Row */
.why-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-top h2 {
    font-size: 28px;
}

/* Plane Section */
.plane-wrapper {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.plane-img {
    width: 200px;
}

.banner {
    position: absolute;
    top: 40%;
    left: -130px;
    background: #ff4d4d;
    color: white;
    padding: 6px 18px;
    font-weight: bold;
    border-radius: 4px;
    transform: rotate(-5deg);
    white-space: nowrap;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Bottom Row - 4 Cards in One Line */
.why-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.why-card {
    flex: 1;
    background: #f9fbff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.why-card:hover {
    background: #F47419;
    color: white;
    transform: translateY(-6px);
}

.why-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.why-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: #666;
}

.why-card:hover p {
    color: #fff;
}

/* Responsive */
@media(max-width: 992px) {
    .why-top {
        flex-direction: column;
        gap: 20px;
    }

    .why-features {
        flex-direction: column;
    }
}


.faq-section {
    padding: 80px 8%;
    background: #f9fbff;
}

.faq-container {
    display: flex;
    gap: 50px;
}

/* LEFT SIDE */
.faq-left {
    flex: 2;
}

.faq-left h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px;
}

.faq-icon {
    font-size: 20px;
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* RIGHT SIDE */
.faq-right {
    position: relative;
    padding: 20px;
    max-width: 400px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding-top: 140px;
}

.faq-right h3 {
    margin-bottom: 15px;
}

.faq-right p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.faq-btn {
    background: #F47419;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-btn:hover {
    background: #006edc;
    transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 992px) {
    .faq-container {
        flex-direction: column;
    }
}

.footer {
    background: #F47419;
    color: #ffffff;
    padding: 70px 8% 20px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    /* gap between left & right */
    margin-bottom: 40px;
}

/* LEFT SIDE */
.footer-left {
    flex: 1.5;
}

.footer-left h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-left p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
}

/* RIGHT SIDE */
.footer-right {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

/* Columns */
.footer-column h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

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

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

.footer-column ul li a {
    text-decoration: none;
    color: #cbd5e1;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #008cff;
    padding-left: 5px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #94a3b8;
}

/* Responsive */
@media(max-width: 992px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }
}

.faq-right {
    position: relative;
    padding: 60px;
    max-width: 400px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding-top: 150px;
}

.faq-icon {

    top: 30px;
    /* move above heading */
    left: 150px;
}

.iconmark {
    padding-left: 117px;


}

.faq-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* Only affects this page */
.flights-search-page {
    position: relative;
    /* for positioning background */
}

.flights-search-page .search-bg {
    position: absolute;
    top: -118px;

    width: 100vw;
    /* full viewport width */
    height: auto;
    /* adjust with search box */
    min-height: 294px;
    /* minimum height to cover box, adjust as needed */
    background-color: #F47419;
    /* your color */
    z-index: 0;
    /* behind search box */
}

.flights-search-page .search-wrapper {
    position: relative;
    z-index: 1;
    /* make search box above bg */
    padding-top: 20px;
    /* space from top if needed */
    padding-bottom: 20px;
}

.flights-search-page .search-box {
    position: relative;
    background: white;
    /* keep search box visible */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    top: -90px;

}


.flights-main {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Filters */
.flights-filters {
    width: 25%;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f47419;
    /* accent border for style */
    font-family: 'Segoe UI', sans-serif;
}

.flights-filters .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.flights-filters h3 {
    font-size: 20px;
    color: #f47419;
    margin: 0;
}

.reset-btn {
    padding: 5px 12px;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.reset-btn:hover {
    background: #f47419;
    color: #fff;
}

.flights-filters .filter-section {
    margin-bottom: 20px;
}

.flights-filters label {
    display: block;
    margin: 5px 0;
}

/* Flights List */
.flights-list {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Flight Card */
.flight-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: relative;
}

.flight-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-group button {
    margin-right: 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.luxury-btn {
    background: gold;
    color: #000;
}

.superfast-btn {
    background: #f47419;
    color: #fff;
}

.airline-info {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.airline-info img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.flight-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.departure,
.arrival {
    display: flex;
    flex-direction: column;
}

.vertical-line {
    width: 1px;
    background: #ccc;
    height: 70px;
    margin: 0 10px;
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.book-btn {
    padding: 5px 10px;
    background: #f47419;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.flight-offer {
    font-size: 12px;
    color: #f47419;
    margin-top: 5px;
}



.filter-section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
}

.filter-section:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-color: #f47419;
}

.filter-section h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.filter-section label {
    /* display: flex; */
    margin: 6px 0;
    cursor: pointer;
    font-size: 14px;
}

.filter-section input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #f47419;
}

.filter-section select,
.filter-section input[type="range"] {
    width: 100%;
    padding: 5px 8px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Price range labels */
.price-range {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555;
}



.breadcrumb {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
    padding-left: 114px;
    padding-top: 13px;
}

.breadcrumb a {
    color: #f47419;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    font-weight: 500;
}

.flightdetails-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center horizontally */
    gap: 20px;
    /* space between flight cards */
    padding: 20px 0;
}

/* Optional: limit width so cards don’t stretch too wide */
.flightdetails-list .flight-card {
    width: 90%;
    /* adjust max width */
    max-width: 900px;
    /* max width for big screens */
}




.flightdetails-offers {
    margin: 40px 0;
}

.offers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    /* center all 4 tabs */
}

.offer-tab {
    position: relative;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    /* adjust width */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.offer-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f47419;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 12px;
}

.offer-content h4 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
}

.offer-content h3 {
    margin: 5px 0 10px 0;
    color: #f47419;
    font-size: 22px;
}

.offer-content p {
    font-size: 13px;
    color: #555;
    margin: 5px 0;
}

.select-btn {
    margin-top: 15px;
    padding: 10px;
    background: white;
    color: black;
    border: 1px solid #F47419;
    border-radius: 10px;
    cursor: pointer;

    transition: 0.3s;
}

.select-btn:hover {
    background: #F47419;
}

.flightdetails-continue {
    margin: 30px 0;
    width: 100%;

    justify-content: flex-end;
    /* align content to the right */
    font-family: 'Segoe UI', sans-serif;
    padding-left: 1083px;
    padding-bottom: 65px;
    padding-top: 11px;
}

.continue-content {
    display: flex;
    align-items: center;
    gap: 20px;
    /* space between price section and button */
}

.per-member-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center $85 above text */
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #f47419;
}

.per-member {
    font-size: 14px;
    color: #555;
}

.continue-btn {
    padding: 10px 20px;
    background: #f47419;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.continue-btn:hover {
    background: #e65b00;
}





/* Container */
.guest-details-page {
    max-width: 900px;
    margin: 50px auto;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    padding: 0 15px;
}

.guest-details-page h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #f47419;
    font-size: 32px;
    letter-spacing: 0.5px;
}

/* Card Shadow */
.card-shadow {
    background: #fff;
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card-shadow:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Book For Radio */
.book-for label {
    font-weight: bold;
    font-size: 16px;
}

.radio-group {
    display: flex;
    gap: 25px;
    margin: 15px 0 0 0;
}

.radio-group input {
    margin-right: 8px;
}

/* Guest Card */
.guest-card h3 {
    margin-bottom: 15px;
    color: #f47419;
    font-size: 20px;
    border-bottom: 1px dashed #f47419;
    padding-bottom: 5px;
}

.guest-fields,
.guest-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.field {
    display: flex;
    flex-direction: column;
    flex: 1 1 200px;
}

.field label {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
}

.field input,
.field select {
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.field input:focus,
.field select:focus {
    border-color: #f47419;
    outline: none;
    box-shadow: 0 0 8px rgba(244, 116, 25, 0.3);
}

/* Add Guest Button */
.add-guest-btn {
    display: inline-block;
    margin-bottom: 25px;
    padding: 12px 25px;
    background: #fff;
    color: #f47419;
    border: 2px solid #f47419;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.add-guest-btn:hover {
    background: #f47419;
    color: #fff;
}

/* Special Requirement */
.special-requirement input {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Navigation Buttons */
.guest-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.back-btn,
.next-btn {
    padding: 12px 30px;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.back-btn {
    background: #f0f0f0;
    color: #333;
}

.back-btn:hover {
    background: #ddd;
}

.next-btn {
    background: #f47419;
    color: #fff;
}

.next-btn:hover {
    background: #e65b00;
}









.flight-upgrade-section {
    display: flex;
    gap: 40px;
    margin: 50px auto;
    max-width: 1200px;
    flex-wrap: wrap;
}

/* Left and Right Side */
.left-upgrades,
.right-upgrades {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Upgrade Cards */
.upgrade-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.upgrade-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Headings */
.upgrade-card h3 {
    font-size: 20px;
    color: #f47419;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Offer / Price Span */
.offer {
    background: #ffedcc;
    color: #f47419;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
}

.price {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

/* Lists */
.features,
.addons,
.price-summary {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.features li,
.addons li,
.price-summary li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
}

/* Travel Protect Options */
.travel-protect-choice label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
}

.gst-note {
    font-size: 22px;
    color: black;
    margin-top: 5px;
}

/* Coupon Button */
.apply-coupon-btn {
    margin-top: 10px;
    padding: 8px 18px;
    background: #f47419;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.apply-coupon-btn:hover {
    background: #e65b00;
}

.flight-search-form-unique {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
}

/* Form Groups */
.unique-form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 200px;
    position: relative;
}

.unique-form-group label {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

/* Input & Select */
.unique-form-group input,
.unique-form-group select {
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.unique-form-group input:focus,
.unique-form-group select:focus {
    border-color: #f47419;
    outline: none;
    box-shadow: 0 0 8px rgba(244, 116, 25, 0.2);
}

/* Swap Button */
.unique-swap-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.unique-swap-btn button {
    background: #f47419;
    border: none;
    color: #fff;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.unique-swap-btn button:hover {
    background: #e65b00;
    transform: scale(1.1);
}

/* Responsive */
@media(max-width: 768px) {
    .flight-search-form-unique {
        flex-direction: column;
        gap: 15px;
    }

    .unique-swap-btn {
        align-self: center;
    }
}

.upgrade-card-grid {
    background: #fff;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 600px;
    margin: 20px auto;
}

.upgrade-card-grid h3 {
    font-size: 20px;
    color: #f47419;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer {
    background: #ffedcc;
    color: #f47419;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 14px;
}

/* Features Grid */
.features-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 10px 20px;
    /* row gap / column gap */
}

/* Header items */
.feature-header {
    font-weight: bold;
    text-align: center;
    color: #333;
}

/* Tick features */
.features-grid li:not(.feature-header) {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.features-grid li .tick {
    color: #28a745;
    margin-right: 5px;
    font-weight: bold;
}



.features-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
}

.feature-row:nth-child(odd) {
    background: #fff;
    /* alternating row colors */
}

.feature-name {
    font-weight: 500;
    color: #333;
}

.feature-value {
    font-weight: bold;
    color: #f47419;
}

.travel-protect-choice-horizontal {
    display: flex;
    gap: 20px;
    /* space between radio options */
    align-items: center;
    padding-top: 20px;

}

.travel-protect-choice-horizontal label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    color: #333;
}

.travel-protect-choice-horizontal input[type="radio"] {
    margin-right: 8px;
    accent-color: #f47419;
    /* optional: makes radio color match theme */
}


.upgrade-card-checkbox {
    background: #fff;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 559px;
    margin: 20px auto;
}

.upgrade-card-checkbox h3 {
    font-size: 18px;
    color: #f47419;
    margin-bottom: 15px;
}

/* Addons List */
.addons-checkbox {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.addons-checkbox li label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
}

.addons-checkbox li input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #f47419;
    /* checkbox color matches theme */
}



.upgrade-card-bill {
    background: #fff;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 559px;
    margin: 20px auto;
}

.upgrade-card-bill h3 {
    font-size: 18px;
    color: #f47419;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

/* Price list */
.price-summary-bill {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-summary-bill li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
    color: #333;
}

.price-summary-bill li.total {
    font-weight: bold;
    font-size: 16px;
    border-top: 2px solid #f47419;
    padding-top: 12px;
    margin-top: 5px;
}

.price-summary-bill li .amount {
    font-weight: bold;
    color: #f47419;
}

.navigation-footer {
    display: flex;
    justify-content: space-between;
    /* Back left, Next right */
    align-items: center;

    max-width: 450px;
    margin: 20px auto;
    gap: 220px;
}

/* Back button */
.back-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #f47419;
    color: #f47419;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.back-btn:hover {
    background: #f47419;
    color: #fff;
}

/* Next button */
.next-btn {
    padding: 10px 20px;
    background: #f47419;
    border: 2px solid #f47419;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.next-btn:hover {
    background: #fff;
    color: #f47419;
}

.flight-details-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    max-width: 500px;
    margin: 10px 0;
}

.flight-details-summary .dates-seats {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #f47419;
}

.flight-details-summary .passenger-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #333;
}

.flight-details-summary .passenger-info span {
    line-height: 1.3;
}



.payment-options-card {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.payment-options-card h3 {
    font-size: 18px;
    color: #f47419;
    margin-bottom: 15px;
}

.payment-tab {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-tab:hover {
    background: #f9f9f9;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.tab-left {
    flex: 0 0 50px;
}

.payment-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tab-middle {
    flex: 1;
    margin-left: 12px;
}

.tab-middle h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.tab-middle p {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #666;
}

.tab-right {
    flex: 0 0 20px;
    text-align: right;
    color: #888;
    font-size: 14px;
}


.flight-summary-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    width: 600px;
    margin: 20px auto;
}

.flight-summary-card h3 {
    color: #f47419;
    margin-bottom: 15px;
    font-size: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #555;
    min-width: 120px;
}

.summary-value {
    color: #333;
    text-align: right;
    flex: 1;
    padding-left: 15px;
}




/* Modal Background */
.payment-modal {
    display: none;
    /* hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.payment-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px 25px;
    border-radius: 15px;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #f47419;
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
}

.close-btn:hover {
    color: #f47419;
}

/* Tick Icon */
.tick-icon {
    font-size: 50px;
    color: green;
    margin: 15px 0;
}

/* Payment Details */
.payment-details p {
    margin: 5px 0;
    color: #555;
}

/* Buttons */
.modal-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.modal-buttons .back-btn,
.modal-buttons .next-btn {
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.back-btn {
    background: #f0f0f0;
    color: #333;
}

.next-btn {
    background: #f47419;
    color: #fff;
}