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

body {
    font-family: "Poppins", sans-serif;
    background: #fff;
    padding-top: 60px;
}

main {
    /* width: 100%; */
    overflow: hidden;
}

.container {
    width: 80%;
    /* max-width: 1200px; */
    margin: 40px auto;
}

.search-btn-square {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    width: 80px;
    height: 80px;

    border: none;
    border-radius: 12px;
    background: #F47419;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    box-shadow:
        0px 3px 6px 0px #0000001A,
        0px 12px 12px 0px #00000017,
        0px 26px 16px 0px #0000000D,
        0px 47px 19px 0px #00000003,
        0px 74px 21px 0px #00000000;
}

.search-btn-square:hover {
    background: #e06500;
}

.search-btn-square i {
    font-size: 30px;
}

.search-text {
    font-size: 20px;
}

/* HEADER */
.main-header {
    background: #fff;
    padding: 16px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #5CB85C;
    display: inline-block;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #5CB85C;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links .nav-item {
    margin: 0 4px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.3s;
}

.nav-links .nav-item:hover {
    color: #F47419;
}

.nav-links .arrow-down {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
}

.auth-buttons .signup-btn {
    background: #F47419;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

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

/* 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: right;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    position: relative;
    z-index: 1;
}


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

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

.section-header h2 {
    font-family: 'Poppins' !important;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 42px;
    /* Increased font size */
    line-height: 1.1;
    text-transform: none;
    font-weight: 500;
}

.section-header h2 .title-main {
    color: black;
    font-size: 34px;
    /* Medium Grey */
}

.section-header h2 .highlight {
    color: #F47419;
    /* Bright Yellow matching image */
    font-weight: 400;
    font-size: 48px;
}

.section-header h2 .title-suffix {
    color: black;
    align-self: flex-end;
    font-size: 34px;
    /* Indentation for the third line */
}

.see-all-btn {
    text-decoration: none;
    background: #f47419;
    color: white;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 126px;
}

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

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

.route-card {
    border: 1px solid #E1E1E1;
    background: #fff;
    display: flex;
    gap: 19px;
    padding: 15px;
    border-radius: 30px;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.route-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.route-card img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.route-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

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

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

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

}

.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: 600;
    font-size: 14px;
    color: #F47419;
}

/* Cheapest Fares Section */
.cheapest-fares {
    padding: 70px 0 120px;
    background: #f5f7fa;
    overflow: visible;
}

.cheapest-fares .container {
    overflow: visible;
}

.fares-slider-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    padding: 30px 0 10px;
    margin: 0 -10%;
    padding-left: 10%;
    padding-right: 10%;
}

.fares-slider-wrapper::-webkit-scrollbar {
    display: none;
}

/* Slider */
.fares-slider {
    display: flex;
    gap: 25px;
    width: max-content;
}

/* Card */
.fare-card {
    width: 333px;
    height: 410px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 1);
    border-radius: 30px;
    border: 1px solid rgba(225, 225, 225, 1);
    overflow: visible;
    transition: 0.3s;
}

.fare-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

/* Image */
.fare-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    border-radius: 16px;

}

/* Info Section */
.fare-info {
    width: 100%;
    height: 114px;
    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;
}

.fare-via {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin: 8px 0 12px;
}

.fare-via span {
    margin-left: 8px;
}

/* 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;
}

.index-book-btn {
    background: #f47419;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
    width: 120px;
    height: 50px;
}

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

/* Best Of The Week */
.best-of-week {
    padding: 70px 0;
    background: #fff;
}

.week-slider {
    display: flex;
    gap: 24px;
    /* overflow-x: auto; */
    scroll-behavior: smooth;
}

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

.week-card {
    width: 419px;
    height: 505px;
    flex-shrink: 0;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    border-radius: 30px;
    border: 1px solid rgba(225, 225, 225, 1);
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.week-card:hover {
    transform: translateY(-6px);
}

.week-card img {
    width: 418px;
    height: 363px;
    object-fit: cover;
    border-radius: 28px;
    margin: 0 -20px;
}

.week-info {
    padding: 18px;
}

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

.week-info h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.week-location {
    font-size: 19px;
    color: #F47419;
    margin-bottom: 6px;
}

.week-location i {
    margin-right: 6px;
}

.week-duration {
    font-size: 13px;
    color: #666;
    display: block;
    margin-bottom: 14px;
}

.week-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.week-bottom .price {
    font-size: 18px;
    font-weight: 700;
}

.week-book-btn {
    background: #f47419;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
    width: 110px;
    height: 40px;
}

.week-book-btn:hover {
    background: #e06500;
}

.offers-section {
    padding: 00px 5% 80px;
    background: #f9f9f9;
}

.offers-section .section-header {
    margin-bottom: 24px;
}

.offer-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    position: relative;
    left: 570px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 24px;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: 0.3s;
}

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

.offers-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

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

.offers-section .offer-card {
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
}

.offers-section .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

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

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
}

.offer-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.offer-overlay p {
    font-size: 14px;
    color: #F47419;
    margin-bottom: 12px;
}

.offer-overlay p i {
    margin-right: 6px;
}

.explore-btn {
    padding: 10px 20px;
    background: #F47419;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.explore-btn:hover {
    background: #e06500;
}

/* 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 {
    padding: 0;
    color: #fff;
    position: relative;
    width: calc(100% - 90px);
    margin: 30px auto 0;
    border-radius: 24px;
    height: 380px;
    overflow: visible;
}

/* Hero image only in top 380px - search box will overlap bottom half */
.hero-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 580px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.hero-container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
    z-index: 2;
    padding: 0 20px;
    top: 390px;
}

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

/* Half of search box overlaps hero (inside), half sits below (outside) */
.search-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0;
}

.hero-text {
    position: absolute;
    top: -24px;
    left: 120px;
    height: 150px;
    width: 400px;

    padding: 18px 28px;
    border-radius: 16px 16px 16px 16px;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
    z-index: 2;
    background-image: url('/images/rectangle.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* make it cover the whole box */
}

.hero-text h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.hero-line1 {
    color: #333;
    font-size: 39.5px;
    position: relative;
    top: 16px
}

.hero-line2 {
    color: #F47419;
    font-size: 43.5px;
    top: 16px;
    position: relative;
}


.search-box {
    position: relative;
    width: calc(100% - 120px);
    background: #fff;
    padding: 58px 28px 32px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.booking-tabs {
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
}

.tab {
    display: flex;
    flex-direction: column;
    /* ADD THIS */
    align-items: center;
    justify-content: center;
    gap: 4px;
    /* reduce gap for vertical */
    min-width: 112px;
    height: 70px;
    /* increase height */
    padding: 8px 12px;
    /* adjust padding */

    background: #f5f5f5;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    /* slightly smaller text */
    color: #F47419;
    transition: 0.3s ease;
    text-decoration: none;
}

/* ⚫ TEXT Black when inactive */
.tab .tab-text {
    color: black;
}

.tab .tab-icon {
    color: #F47419;
}

.tab i {
    font-size: 18px;
    text-decoration: none;
}

.tab:hover {
    background: #eee;
    color: #F47419;
    text-decoration: none;
}

.tab.active {
    background: #F47419;
    color: #fff;
    text-decoration: none;
}

.tab.active .tab-icon,
.tab.active .tab-text {
    color: white;
}

/* Make SVG follow color */
.tab svg {
    stroke: currentColor;
}

.trip-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.trip-btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background: #f9f9f9;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: 0.3s;
}

.trip-btn.active {
    background: #F47419;
    color: #fff;
    border-color: #F47419;
}

.trip-btn:hover:not(.active) {
    background: #eee;
    color: #333;
}

@media (max-width: 1024px) {
    .search-form {
        flex-wrap: wrap;
    }

    .form-field {
        max-width: none;
        min-width: 160px;
    }

    .hero-text {
        left: 24px;
        top: 24px;
    }

    .hero-text h1 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .booking-tabs {
        left: 50%;
        transform: translateX(-50%);
        gap: 8px;
    }

    .tab {
        min-width: 70px;
        height: 40px;
        font-size: 12px;
    }

    .hero-section {
        height: 320px;
    }

    .hero-bg-wrap {
        height: 320px;
    }

    .hero-container {
        bottom: -80px;
    }

    .stats-row {
        margin-top: 80px;
    }

    .search-box {
        padding: 48px 16px 24px;
    }

    .section-header {
        flex-wrap: wrap;
        gap: 16px;
    }

    .faq-container {
        flex-direction: column;
    }

    .faq-right {
        max-width: 100%;
    }
}

.travel-categories {
    padding: 70px 5% 80px;
    background: #fff;
}

.travel-slider {
    display: flex;
    gap: 24px;
    /* overflow-x: auto; */
    scroll-behavior: smooth;
    /* padding-top: 24px; */
}

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

.travel-categories .travel-card {
    min-width: 300px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(225, 225, 225, 1);
}

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

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

.travel-categories .travel-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.travel-categories .travel-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.travel-categories .travel-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.travel-categories .travel-info .explore-btn {
    display: inline-block;
    margin-top: auto;
}

.travel-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 100%;
}

/* 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: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #333;
}

.form-field {
    flex: 1;
    min-width: 140px;
    max-width: 180px;
    min-height: 80px;
    /* Match search button height */
    display: flex;
    flex-direction: column;
    /* stack rows vertically */
    align-items: flex-start;
    /* left-align text */
    justify-content: center;
    /* Vertically center content */
    gap: 4px;
    /* spacing between rows */
    padding: 12px 14px 12px 14px;
    /* padding inside box */
    background: #f9f9f9;
    /* border: 1px solid #e8e8e8; */
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    /* needed for absolute arrow */
    box-sizing: border-box;
}


.form-field:hover {
    background: #f0f0f0;
    border-color: #ddd;
}

.field-icon {
    color: #F47419;
    font-size: 18px;
    flex-shrink: 0;
}

.field-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    /* space between image and "to" */

}

.field-location-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.field-to {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.field-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    align-items: flex-start;
    padding-right: 20px;
}

.field-main {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.field-sub {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.field-arrow {
    position: absolute;
    right: 10px;
    top: calc(50% + 4px);
    /* vertically between last two text lines */
    font-size: 14px;
    color: #888;
    pointer-events: none;
    /* allow clicking the box, not arrow */
}

.search-btn-square {
    width: 80px;
    height: 80px;
    min-width: 56px;
    background: #F47419;
    color: #fff;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.search-btn-square:hover {
    background: #e06500;
    transform: scale(1.05);
}

/* Booking stats - below hero */
.hero-section .booking-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 28px 40px 32px;
    margin-top: 0;
    border-top: none;
    padding-top: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    background: #fff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    width: 92%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -8px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-icon {
    color: #F47419;
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.stat-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 13px;
    color: #666;
}

/* 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: 70px 5% 38px;
    background: #F47419;
    position: relative;
    overflow: hidden;
}

.why-book-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 25 L55 30 L35 35 L30 55 L25 35 L5 30 L25 25 Z' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E"); */
    pointer-events: none;
}

.why-book .why-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

.why-top h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.why-top h2 span {
    font-weight: 700;
    color: #fff;
}

.travel-now-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.travel-now-cta i {
    font-size: 28px;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: white;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.why-image {
    width: 60px;
    /* adjust size as needed */
    height: 60px;
    object-fit: contain;
}

.why-icon i {
    font-size: 24px;
}

.why-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    height: auto;
}

/* Testimonials */
.testimonials-section {
    padding: 70px 5% 0px;
    background: #F47419;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.testimonials-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 9;
    /* background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='2' fill='%23fff'/%3E%3C/svg%3E"); */
    pointer-events: none;
    z-index: 1;
}

.testimonials-bg1 {
    position: absolute;
    width: 60%;
    height: 99%;
    top: 0;
    left: 444px;
    right: 0;
    bottom: 0;
    opacity: 9;
    pointer-events: none;
    z-index: 1;
}

.testimonials-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 48px;
    line-height: 1.35;
    top: 10px;
    position: relative;
}

.testimonials-title span {
    font-weight: 700;
    color: #fff;
    right: 39px;
    position: relative;
    font-size: 46px;
}

.testimonials-title p {
    right: -31px;
    position: relative;
    font-size: 21px;
    color: black;
}

.testimonials-title p1 {
    right: 60px;
    position: relative;
    font-size: 28px;
    color: black;
}

.testimonials-content {
    display: flex;
    align-items: center;
    gap: 160px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    left: 170px;
    top: -62px;
}

.testimonial-image {
    flex-shrink: 0;
    width: 111px;
}

.testimonial-image img {
    width: 380px;
    height: 404px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    top: 67px;
    /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); */
}

.testimonial-bubbles {
    flex: 1;
    min-width: 300px;
    position: relative;
    min-height: 280px;
}

.testimonial-bubble {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-width: 320px;
}

.quote-icon {
    color: #F47419;
    font-size: 28px;
    margin-bottom: 10px;
}

.testimonial-bubble p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 14px;
}

.testimonial-author {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.author-avatar {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F47419;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 8px;
    vertical-align: middle;
}

.bubble-1 {
    top: 0;
    left: 0;
}

.bubble-2 {
    top: 100px;
    left: 120px;
}

.bubble-3 {
    top: 200px;
    left: 20px;
}

@media (max-width: 992px) {
    .why-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-content {
        flex-direction: column;
    }

    .testimonial-bubbles {
        min-height: auto;
        position: static;
    }

    .testimonial-bubble {
        position: static;
        margin-bottom: 16px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .why-features {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 80px 5% 100px;
    background: #fff;
}

.faq-container {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.faq-left {
    flex: 2;
    min-width: 0;
}

.faq-left h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 28px;
}

.faq-list .faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F47419;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}

.faq-item:not(.active) .faq-toggle {
    background: #e0e0e0;
    color: #666;
}

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

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

.faq-right {
    flex: 1;
    max-width: 380px;
    background: #fff;
    border-radius: 18px;
    padding: 40px 32px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.faq-contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #F47419;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    left: 110px;
}

.faq-right h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.faq-right p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-btn {
    background: #F47419;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    position: relative;
    left: 65px;
}

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

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

.footer {
    background: #F47419;
    position: relative;
    /* background: #f47419f2; */
    color: #fff;
    padding: 80px 5% 30px;
    border-radius: 60px 60px 0 0;
    margin-top: 0;
    z-index: 1;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-left {
    flex: 1.2;
    max-width: 420px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 18px;
}

.logo-icon-green {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #5CB85C;
    display: inline-block;
}

.logo-text-green {
    font-size: 24px;
    font-weight: 700;
    color: #5CB85C;
}

.footer-left p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

/* RIGHT SIDE */
.footer-right {
    flex: 0.5;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

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

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

.footer-column ul li a {
    text-decoration: none;
    display: inline-flex;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transition: 0.3s;
    gap: 5px;

}

.footer-column ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

/* Bottom */
.footer-bottom {
    text-align: right;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

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

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

/* 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: 3px;
    /* 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:1px solid rgba(225, 225, 225, 1); */
    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: 18px;
    color: black;
    margin: 0;
}

.reset-btn {
    padding: 5px 12px;
    background: white;
    color: #f47419;
    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: flex; */
    margin: 5px 0;
}

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

/* Flight Card */
.flight-card {
    background: #fff;
    border-radius: 30px;
    /* 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: #FAFAFA;
    border-radius: 80px;
    font-family: 'Poppins', sans-serif;

    color: #000;
}

.superfast-btn {
    background: #FAFAFA;
    border-radius: 80px;
    color: black;
    font-family: 'Poppins', sans-serif;
}

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

.airline-info img {
    width: 83px;
    height: 66px;
    border-radius: 10px;
}

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

.flight-time-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 103px;
}

.vertical-line-flight-listing {
    width: 1px;
    background: #ccc;
    height: 80px;
    margin: 0 20px;
}

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

.departure .time,
.arrival .time {
    font-size: 24px;
    font-weight: 600;
    order: 1;
}

.departure .date,
.arrival .date {
    font-size: 14px;
    color: #666;
    order: 0;
}

.departure .place,
.arrival .place {
    font-size: 14px;
    color: #333;
    order: 2;
}

.departure .add-to-compare,
.arrival .view-flight-details {
    order: 3;
}

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

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

.pricing .price-amount {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    line-height: 100%;
}

.pricing .per-member {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    line-height: 100%;
}

.pricing .book-btn {
    text-decoration: none;
    padding: 7.25px 14.5px;
    border-radius: 10px;
    box-shadow: 0px 1.45px 4.35px 0px #0000001A,
        0px 7.25px 7.25px 0px #00000017,
        0px 15.95px 10.15px 0px #0000000D,
        0px 29.01px 11.6px 0px #00000003,
        0px 44.96px 13.05px 0px #00000000;
}

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

.flight-offer-icon {
    width: 28px;
    /* Adjust size here */
    height: 28px;
    object-fit: contain;
    position: relative;
    top: 2px;
}

.offer-text {
    position: relative;
    top: -7px;
}

.offer-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.offer-dots span {
    width: 10px;
    height: 3px;
    background: #666;
    border-radius: 30px;
}

.offer-dots span:first-child,
.offer-dots span.active {
    width: 21px;
    height: 3px;
    border-radius: 30px;
    background: rgba(244, 116, 25, 1);
}


.flight-offer {
    font-size: 12px;
    background: #F474191A;
    border-radius: 10px;
    color: black;
    margin-top: 5px;
    text-align: center;
}

.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: block; */
    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: 10px 8px;
    /* margin-bottom: 10px; */
    /* border-radius: 8px;
    border: 1px solid #ccc; */
}

/* Dropdown Filter */
.dropdown-filter {
    margin-bottom: 10px;
}

.filter-dropdown {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23666" d="M1 1l5 5 5-5"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.filter-dropdown:focus {
    outline: none;
    border-color: #f47419;
}

/* Selected Tags */
.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F47419;
    color: #fff;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
}

.tag-x {
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    transition: 0.2s;
}

.tag-x:hover {
    transform: scale(1.2);
}

/* Price Filter Section */
.price-filter-section {
    width: 100%;
    gap: 10px;
}

.price-inputs-wrapper {
    width: 100%;
    gap: 5px;
    margin-bottom: 15px;
}

.range-input {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.range-input input {
    flex: 1;
    width: 100%;
    padding: 10px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #fff;
    color: #333;
}

.range-input input:focus {
    border-color: #f47419;
}

/* Dual Range Slider */
.range-wrapper {
    position: relative;
    height: 6px;
    margin: 20px 0;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #E0E0E0;
    border-radius: 3px;
    /* z-index: 1; */
}

.slider-range {
    position: absolute;
    height: 6px;
    background: #F47419;
    border-radius: 3px;
    z-index: 2;
}

.range-wrapper input[type="range"] {
    position: absolute;
    width: calc(100% + 18px);
    height: 6px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    margin: 0 0 0 -10px;
    padding: 0;
}

.range-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #F47419;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.range-wrapper input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #F47419;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: none;
}

/* Price range checkboxes */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.price-checkbox-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.price-checkbox-item:hover {
    background: #f9f9f9;
}

.price-checkbox-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: #f47419;
    cursor: pointer;
    margin: 0;
}

.price-checkbox-item span {
    color: #333;
    font-size: 14px;
}

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

.flights-filters .filter-section .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: 12px;
    justify-content: center;
    /* center all 4 tabs */
}

.offer-tab {
    position: relative;
    background: #fff;
    border-radius: 20px;
    border: 2px solid rgba(225, 225, 225, 1);
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    padding: 24px;
    width: 280px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}



.offer-tab.is-selected {
    border: 3px solid #F47419;
    transform: translateY(-10px);

    /* box-shadow: 0 8px 24px rgba(244, 116, 25, 0.2); */
}

.offer-badge {
    position: absolute;
    top: -2px;
    right: 20px;
    background: #F47419;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
}

.offer-content h4 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #F47419;
    font-size: 20px;
    font-weight: 600;
}

.offer-content h3 {
    margin: 0 0 4px 0;
    color: #333;
    font-size: 32px;
    font-weight: 700;
}

.offer-content p {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.offer-content p strong {
    color: #F47419;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    margin-top: 12px;
}

.select-btn {
    margin-top: 20px;
    padding: 14px;
    background: white;
    color: #333;
    border: 2px solid #F47419;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
}

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

.select-btn.is-selected {
    background: #F47419;
    color: white;
}

.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: 24px;
    color: #555;
}

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

.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;
    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;
    margin-top: 10px;
}

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

.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;
}


/* 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: 31px;
    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: #f47419;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

.features-grid li .tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    background: rgba(244, 116, 25, 1);
    color: #fff;
    border-radius: 50%;
    margin-right: 5px;
    font-weight: bold;
    font-size: 10px;
}

.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: 14px 40px;
    background: #fff;
    border: 2px solid #E0E0E0;
    color: #333;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

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

/* Next button */
.next-btn {
    padding: 14px 40px;
    background: #F47419;
    border: none;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

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

.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; */
    display: flex;
    align-items: center;
}

.tab-logo {
    width: 40px;
    /* Control size here */
    height: auto;
    /* Maintain aspect ratio */
    object-fit: contain;
    display: block;
    /* Prevent extra bottom space */
}

.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;
}

/* Space for overlapping search box: half sits below hero */
.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 80%;
    margin: 330px auto 40px;
    padding: 30px 40px;
    background: #ffffff;
    border-radius: 20px;

}

.stats-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 14px;
    width: 204px;
    height: 61px;
    gap: 13px;
}

.stats-left {
    flex: 0 0 auto;
}

.stats-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-count {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.stats-text {
    margin: 2px 0 0;
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}

.stats-icon {
    font-size: 26px;
    color: #F47419;
    margin-bottom: 10px;
    display: block;
}

.stats-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 8px 0 4px;
}

.stats-box p {
    font-size: 14px;
    color: #666;
}




.flight-section {
    position: relative;
    background: #f9fafc;
    padding: 120px 40px;
    overflow: hidden;
}

.flight-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.content {
    position: relative;
    z-index: 2;
}

hr {
    border: none;
    /* remove default border */
    border-top: 0.px solid gray;
    /* thickness + color */
    margin: 1em 0;
    /* spacing above/below */
}

.flights-search-page {
    width: 90%;
    /* max-width: 1200px; */
    margin: 191px auto 40px auto;
}

hr {
    border: none;
    border-top: 0.5px solid #ccc;
    /* very thin, light gray */
    margin: 10px 0;
}

.brand-logo-img {
    height: 50px;
    /* adjust height */
    width: auto;
    /* keep aspect ratio */
    display: block;
    border-radius: 10px;
}





/* new */

/* Wrapper */
.travel-offers-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Main Card */
.travel-card {
    position: relative;
    width: 594px;
    height: 631px;
    border-radius: 50px;
    /* overflow: hidden; */
}

/* Smaller Even Card */
.travel-card-alt {
    width: 307px;
}

/* Image */
.travel-card img {
    width: 100%;
    height: 518px;
    object-fit: cover;
    border-radius: 28px;
}

/* Smaller image for even cards */
.travel-card-alt img {
    height: 307px;
}

/* Overlay content */
.travel-card-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff;
}

.travel-card-content-even {
    position: absolute;
    bottom: 25px;
    left: 19px;
    color: #fff;
    top: 305px;
}

.travel-card-content-even-second {
    position: absolute;
    bottom: 25px;
    left: 35px;
    color: #fff;
    top: 245px;
}

.travel-card-content h3 {
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

.travel-card-content p {
    margin: 5px 0 0;
    color: #ff7a00;
    font-weight: 500;
}

/* Orange Bottom Box */
.travel-info-box {
    background: #ff7a00;
    color: #fff;
    padding: 18px 20px;
    border-radius: 20px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



/* Section Background */
.airline-showcase {
    background: #FEF8F3;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

/* Container */
.airline-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Top Header */
.airline-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

/* Heading */
.airline-heading h2 {
    font-family: 'Poppins' !important;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 42px;
    line-height: 1.1;
    text-transform: none;
    font-weight: 500;
}

.airline-heading h2 .title-main {
    color: black;
    font-size: 34px;
}

.airline-heading h2 .highlight {
    color: #F47419;
    font-weight: 400;
    font-size: 48px;
}

.airline-heading h2 .title-suffix {
    color: black;
    align-self: flex-end;
    font-size: 34px;
}

/* Arrow Buttons */
.airline-nav-buttons {
    display: flex;
    gap: 15px;
}

.airline-nav-buttons button {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 14px;
    background: #ff7a00;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.airline-nav-buttons button:hover {
    transform: translateY(-4px);
}

/* Carousel Layout */
.airline-carousel-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    padding: 30px 0 10px;
    margin-right: calc(-50vw + 40%);
    position: relative;
}

.airline-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.airline-carousel {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
}

/* Each Partner Item */
.airline-item {
    display: flex;
    align-items: center;

}

/* White Logo Box */
.airline-logo-box {
    width: 167px;
    height: 133px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.airline-logo-box img {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
}

/* Orange Name Box */
.airline-name-box {
    width: 220px;
    height: 100px;
    background: #ff7a00;
    color: #fff;
    padding: 15px 40px 15px 50px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    margin-left: -35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.airline-subtitle {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

.like-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.like-icon .heart {
    color: #fff;
    font-size: 28px;
    transition: color 0.3s ease;
}

.like-icon.active .heart {
    color: #e63946;
}

.like-icon:active {
    transform: scale(1.2);
}

.travel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* space between image & text */
}

.travel-icon {
    width: 254px;
    height: 43px;
    object-fit: contain;
}

.footer-bg {
    content: "";
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 50%;
    object-fit: cover;
    opacity: 0.6;

    /* z-index: 999; */
}

.testimonials-header {
    display: flex;
    align-items: center;
    /* gap: 40px;   space between image & text */
}

.testimonials-image img {
    width: 150px;
    /* adjust size */
    height: auto;
    object-fit: contain;
}

.testimonials-content {
    flex: 0.8;
}


.feature-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.feature-text svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

.faq-logo {
    left: 104px;
    position: relative;
}


.flight-card {
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    position: relative;
    border: 1px solid rgba(225, 225, 225, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.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; */
    font-family: "Segoe UI", sans-serif;

    box-sizing: border-box;
    /* VERY IMPORTANT */
}

.range-input {
    display: flex;
    gap: 10px;
    width: 100%;
}

.range-input input {
    flex: 1;
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
}

.range-input input:focus {
    border-color: #f47419;
}

.filter-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.quick-item {
    padding: 10px;
    text-align: center;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* Hover Effect */
.quick-item:hover {
    background: #f47419;
    color: white;
    border-color: #f47419;
}

/* Active State (when clicked with JS) */
.quick-item.active {
    background: #f47419;
    color: white;
    border-color: #f47419;
}

h3.filter-title {
    padding-bottom: 16px;
}

/* ═══════════════════════════════════════════
   PAYMENT MODAL
   ═══════════════════════════════════════════ */
.payment-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 550px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    animation: modalSlideIn .3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F47419;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    line-height: 1;
}

.modal-close-btn:hover {
    background: #d86314;
    transform: rotate(90deg);
}

.success-icon {
    margin: 0 auto 25px;
    animation: successPop 0.5s ease 0.2s both;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px;
}

.modal-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 35px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.booking-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 35px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.detail-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-secondary,
.btn-primary {
    flex: 1;
    padding: 14px 24px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary {
    background: #fff;
    color: #333;
    border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.btn-primary {
    background: #F47419;
    color: #fff;
}

.btn-primary:hover {
    background: #d86314;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 116, 25, 0.3);
}

/* ═══════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    font-size: 13px;
    color: #888;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #f47419;
    text-decoration: none;
    font-weight: 500;
}

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

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

.breadcrumb .breadcrumb-sep {
    color: #bbb;
}

/* ═══════════════════════════════════════════
   LAZY IMAGE BASE
   ═══════════════════════════════════════════ */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity .3s ease;
}

img[loading="lazy"].loaded,
img {
    opacity: 1;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-controls button {
    background: #fdf1e8;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #F47419;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: #F47419;
    color: #fff;
    box-shadow: 0 4px 10px rgba(244, 116, 25, 0.3);
}


.duration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.duration-time {
    font-size: 14px;
    /* font-weight: 600; */
    color: #666;
}

.duration-img {
    width: 165px;
    height: auto;
}

.duration-stops {
    font-size: 13px;
    color: #666;
}

.add-to-compare,
.view-flight-details {
    font-size: 14px;
    color: #F47419;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
}

.add-to-compare:hover,
.view-flight-details:hover {
    text-decoration: underline;
}

.add-to-compare span {
    font-size: 20px;
    margin-left: 4px;
    vertical-align: middle;
}

.flight-details-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    color: #000;
    margin: 0 0 20px 0;
}

.flight-details-container {
    width: 90%;
    margin-left: 5%;
    margin-right: auto;
}

.flight-card-detail {
    width: 643px;
    border-radius: 30px;
    border: 1px solid rgba(225, 225, 225, 1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
}

.flight-details-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    color: #000;
    margin: 0 0 20px 0;
}

/* --- Luxury Venue Premium Card --- */
.venue-premium-card {
    width: 440px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 40px;
    border: 1px solid rgba(225, 225, 225, 1);
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.venue-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image-wrap {
    position: relative;
}

.card-image-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 35px;
}

.badge-rating {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    backdrop-filter: blur(4px);
}

.badge-rating i {
    color: #FFD700;
    margin-right: 5px;
}

.btn-fav {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.image-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.image-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.image-dots .dot.active {
    background: #fff;
    width: 24px;
    border-radius: 10px;
}

.venue-premium-body {
    padding: 0 25px 10px;
}

.venue-cat {
    color: #F47419;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.venue-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 15px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 12px;
    margin-bottom: 20px;
}

.det-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.det-item i {
    color: #F47419;
    font-size: 16px;
}

.price-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-info .amount {
    font-size: 28px;
    font-weight: 700;
    color: #1e1e1e;
}

.price-info .label {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}

.btn-book-now {
    background: #F47419;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(244, 116, 25, 0.3);
}

.btn-book-now:hover {
    background: #e06500;
    transform: scale(1.05);
}

.card-divider {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin: 0 0 15px 0;
}

.card-highlights {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #777;
    flex-wrap: wrap;
}

.card-highlights i {
    color: #F47419;
}

/* --- Popular Cities Premium Cards --- */
.popular-cities-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.popular-cities-section .week-slider {
    margin-right: calc(-50vw + 40%);
}

.city-premium-card {
    width: 440px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 40px;
    border: 1px solid rgba(225, 225, 225, 1);
    padding: 12px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.city-premium-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 32px;
}

.city-premium-body {
    padding: 15px 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-info-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 5px;
}

.city-info-text p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.btn-explore-now {
    background: #F47419;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(244, 116, 25, 0.3);
}

.btn-explore-now:hover {
    background: #e06500;
    transform: scale(1.05);
}

/* --- Top Venue Deals Section (Figma Design) --- */
.venue-deals-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.section-title .title-main {
    font-size: 34px;
    color: #1a1a1a;
    font-weight: 500;
}

.section-title .highlight {
    font-size: 48px;
    color: #F47419;
    font-weight: 700;
    margin: -5px 0;
}

.section-title .title-suffix {
    font-size: 34px;
    color: #1a1a1a;
    /* font-weight: 700; */
    align-self: flex-end;
    padding-left: 20px;
}

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

.deals-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.deals-filter-btn {
    padding: 12px 25px;
    border-radius: 12px;
    border: none;
    background: #F4F4F4;
    color: #444;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.deals-filter-btn.active {
    background: #F47419;
    color: #fff;
    box-shadow: 0 4px 15px rgba(244, 116, 25, 0.3);
}

.venue-deals-grid {
    display: flex;
    gap: 24px;
    height: 600px;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin-right: calc(-50vw + 50%);
    /* Pull to right edge */
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.venue-deals-grid::-webkit-scrollbar {
    display: none;
}

.deals-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
    width: 307px;
    flex-shrink: 0;
}

.deals-col.col-main {
    width: 580px;
}

/* Base Card Styles */
.deal-card {
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    cursor: pointer;
}

.deal-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

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

/* Card Variations */
.col-main .deal-card {
    height: 100%;
    border-radius: 60px;
}

.col-2 .deal-card {
    height: 75%;
    border-radius: 40px;
}

.col-3 .deal-card {
    height: 75%;
    border-radius: 40px;
}

.col-4 .deal-card {
    height: 100%;
    border-radius: 40px;
}

/* Quote/Info Boxes */
.deals-info-box {
    width: 100%;
    max-width: 307px;
    height: 98px;
    background: #F47419;
    gap: 6.95px;
    opacity: 1;
    border-radius: 25px;
    padding: 11.12px 13.9px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1),
        0px 12px 12px 0px rgba(0, 0, 0, 0.09),
        0px 26px 16px 0px rgba(0, 0, 0, 0.05),
        0px 47px 19px 0px rgba(0, 0, 0, 0.01),
        0px 74px 21px 0px rgba(0, 0, 0, 0);
}

.col-2 .deal-card,
.col-3 .deal-card {
    height: calc(100% - 98px - 24px);
}

.deals-info-box p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.deals-info-box .quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    opacity: 0.4;
}

/* Overlays */
.deal-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.deal-card-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
}

.deal-card-overlay p {
    font-size: 15px;
    color: #F47419;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Right Side Cards (Columns 2,3,4) might need height adjustments */
.deals-col.col-2 {
    justify-content: flex-start;
}

.deals-col.col-3 {
    justify-content: flex-end;
}

.deals-col.col-4 {
    justify-content: flex-start;
}

@media (max-width: 1200px) {
    .venue-deals-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .deals-col {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .venue-deals-grid {
        grid-template-columns: 1fr;
    }
}

/* Hotel Testimonials Redesign */
.hotel-testimonials-section {
    background-color: #F47419;
    background-image: url('../images/flights/Vector.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 0 0 0;
    margin-top: 30px;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: flex-end;
}

.testimonials-map-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/flights/Vector.png');
    background-size: cover;
    opacity: 0.15;
    /* Increased slightly for better visibility */
    pointer-events: none;
    z-index: 1;
}

.travel-now-badge {
    position: absolute;
    top: 50px;
    left: 4%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.travel-now-badge img {
    height: 50px;
    width: auto;
    /* transform: rotate(90deg); */
    /* Counter-rotate if the original is upside down */
}

.testimonials-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.testimonials-left-girl {
    width: 35%;
    position: relative;
    margin-top: -80px;
    /* Moved higher up */
    display: flex;
    align-items: flex-end;
}

.testimonials-left-girl img {
    width: 130%;
    /* margin-left: 40%; */
    margin-bottom: -472px;
    display: block;
    filter: drop-shadow(-6.23px 0px 14.24px rgba(0, 0, 0, 0.1)) drop-shadow(-26.69px 0px 26.69px rgba(0, 0, 0, 0.09)) drop-shadow(-59.61px 0px 35.59px rgba(0, 0, 0, 0.05)) drop-shadow(-106.77px 0px 42.71px rgba(0, 0, 0, 0.01));
}

.testimonials-right-content {
    width: 50%;
    color: #fff;
}

.testimonials-main-title {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    /* Make it as wide as 'Our Travelers' */
}

.testimonials-main-title p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #000;
}

.testimonials-main-title h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.testimonials-main-title span {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    align-self: flex-end;
    /* Align to the end of the 'fit-content' box */
    opacity: 1;
}

.premium-testimonial-stacks {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* All cards align to the right boundary */
    gap: 30px;
    /* Space between cards as shown in screenshot */
    position: relative;
    width: 100%;
}

/* Base style (Side Cards 1 & 3) */
.premium-testi-card {
    background: #fff;
    width: 580px;
    min-height: 180px;
    border-radius: 35.64px;
    padding: 20px 45px;
    display: flex;
    flex-direction: column;
    gap: 4.99px;
    color: #333;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Center / Highlighted Card (2nd) - Premium Shadow */
.premium-testi-card:nth-child(2) {
    width: 745px;
    min-height: 314px;
    border-radius: 50px;
    padding: 30px 54px;
    gap: 7px;
    z-index: 5;
    box-shadow: -16px 7px 38px 0px rgba(0, 0, 0, 0.29),
        -63px 30px 70px 0px rgba(0, 0, 0, 0.26),
        -142px 67px 94px 0px rgba(0, 0, 0, 0.15),
        -253px 119px 112px 0px rgba(0, 0, 0, 0.04),
        -396px 186px 122px 0px rgba(0, 0, 0, 0.01);
}

/* Ensure the parent section is large enough for the stacked cards */
.hotel-testimonials-section {
    min-height: 850px;
}

.testi-quote-icon {
    font-size: 40px;
    color: #F47419;
    opacity: 0.6;
    margin-bottom: 10px;
    display: block;
}

.premium-testi-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.premium-testi-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.testi-user-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-user-box img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-user-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.testi-user-info span {
    font-size: 13px;
    color: #888;
}

.vertical-slider-indicator {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vertical-bar {
    width: 6px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.vertical-bar.active {
    height: 60px;
    background: #fff;
}

@media (max-width: 991px) {
    .testimonials-flex {
        flex-direction: column;
    }

    .testimonials-left-girl,
    .testimonials-right-content {
        width: 100%;
    }

    .testimonials-left-girl img {
        width: 100%;
        margin-left: 0;
    }

    .premium-testi-card {
        width: 100%;
        margin-left: 0 !important;
    }
}

/* ================= VIDEO TESTIMONIALS SECTION ================= */
.video-testimonials-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    overflow: hidden;
}

.video-testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/flights/Vector.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
}

.video-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.video-testimonials-title {
    margin-top: 20px;
}

.video-testimonials-title p {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin: 0 0 8px 0;
}

.video-testimonials-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.video-testimonials-title span {
    font-size: 16px;
    font-weight: 600;
    color: #F47419;
    display: block;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.video-testi-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(244, 116, 25, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.video-testi-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(244, 116, 25, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(244, 116, 25, 0.4);
}

.video-testi-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #F47419;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.video-testi-content {
    padding: 20px;
}

.video-testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.video-testi-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F47419;
}

.video-testi-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px 0;
}

.video-testi-info span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.video-testi-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-style: italic;
}

.video-testi-rating {
    display: flex;
    gap: 3px;
    color: #F47419;
    font-size: 14px;
}

/* Video Modal */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background: #F47419;
    transform: rotate(90deg);
}

.video-modal-player {
    width: 100%;
    background: #000;
    border-radius: 20px 20px 0 0;
}

.video-modal-player video {
    width: 100%;
    display: block;
    border-radius: 20px 20px 0 0;
}

.video-modal-info {
    padding: 25px;
}

.video-modal-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}

.video-modal-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .video-testimonials-section {
        padding: 50px 0;
    }

    .video-testimonials-title h2 {
        font-size: 32px;
    }

    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-thumbnail {
        height: 180px;
    }

    .video-modal-content {
        max-width: 100%;
        border-radius: 15px;
    }

    .video-modal-info h3 {
        font-size: 18px;
    }
}