* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background-color: var(--gray-100);
    color: var(--gray-800);
    line-height: 1.6;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.top-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item i {
    color: var(--accent);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-main {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    /* container size */
    height: 60px;
    display: flex;
    align-items: center;
}

.logo figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* full logo visible */
    transform: scale(1.4);
    /* logo bada dikhega */
    transform-origin: left center;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary-light);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    transition: color 0.3s;
}

.nav-item:hover>a {
    color: var(--primary);
}

.nav-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 700;
    margin-left: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--gray-100);
}

.dropdown-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg,
            var(--primary-light),
            var(--primary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.dropdown-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.dropdown-sub {
    font-size: 12px;
    color: var(--gray-600);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.currency-selector,
.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.currency-selector:hover,
.lang-selector:hover {
    background: var(--gray-100);
}

.flag {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    background: linear-gradient(to bottom,
            #ff9933 33%,
            #fff 33%,
            #fff 66%,
            #138808 66%);
}

.header-actions {
    display: flex;
    gap: 12px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.btn-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--danger);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.btn-primary {
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-light));
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 590px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    overflow: visible;
}


.hero::before {
    content: "";

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-bg-pattern {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 80%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%),
        radial-gradient(circle at 40% 20%,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;

    padding: 60px 20px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 15px;

}

.hero-title span {
    color: var(--accent);
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.hero-stat {
    color: white;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    display: block;
}

.hero-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Booking Container */
.booking-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: -100px;
}

.booking-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.booking-tabs {
    display: flex;
    background: var(--gray-100);
    padding: 8px;
    gap: 8px;
}

.booking-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s;
    border: none;
    background: transparent;
}

.booking-tab i {
    font-size: 20px;
}

.booking-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.booking-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

.booking-form {
    padding: 35px;
}

.trip-type {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 0;
}

.radio-card input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.radio-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
}

.booking-fields {
    display: grid;
    grid-template-columns: 1fr 50px 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
    margin-bottom: 25px;
}

.field-group {
    position: relative;
}

.field-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.field-input {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.field-input:hover,
.field-input:focus-within {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.field-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-sub {
    font-size: 13px;
    color: var(--gray-600);
}

.field-icon {
    color: var(--primary);
    font-size: 20px;
}

.swap-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    margin-bottom: 8px;
    transition: all 0.3s;
    font-size: 16px;
}

.swap-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: rotate(180deg);
}

.search-btn-large {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    height: fit-content;
}

.search-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.fare-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fare-chip {
    border: 1px solid var(--gray-200);
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fare-chip:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.fare-chip.active {
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-light));
    color: white;
    border-color: transparent;
}

.recent-searches {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.recent-label {
    font-size: 12px;
    color: var(--gray-600);

}

.recent-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.recent-tag {
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}

.recent-tag:hover {
    background: var(--primary-light);
    color: white;
}

/* Airlines Marquee */
.airlines-section {
    padding: 60px 0;
    background: white;
    overflow: hidden;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
}

.section-title span {
    color: var(--primary);
}

.view-all {
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marquee-container {
    position: relative;
    max-width: 1260px !important;
    overflow: hidden;
    margin: 0 auto;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
}

.marquee-container::after {
    right: 0;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.airline-logo-card {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    margin: 0 15px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.airline-logo-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.airline-logo-card img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;

    transition: all 0.3s;
}

.airline-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Routes Section */
.routes-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.routes-grid {
    display: grid;
    /* grid-template-columns: 2fr 1fr; */
    gap: 30px;
}

.routes-table-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.routes-header {
    padding: 25px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.routes-title {
    font-size: 20px;
    font-weight: 700;
}

.filter-tabs {
    display: flex;
    gap: 10px;
}

.filter-tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
}

.filter-tab.active {
    background: var(--primary);
    color: white;
}

.route-row {
    display: grid;
    grid-template-columns: 120px 1fr 150px 120px 100px;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #d5d5d5;
    transition: background 0.3s;
}

.route-row:hover {
    background: var(--gray-100);
}

.route-airline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
}

.airline-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.route-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.route-cities {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.route-code {
    font-size: 12px;
    color: var(--gray-600);
}

.route-time {
    font-size: 14px;
    color: var(--gray-600);
}

.route-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.btn-select {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-select.primary {
    background: var(--primary);
    color: white;
}

.btn-select.secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Fare Calendar */
.fare-calendar {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.calendar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.calendar-day {
    text-align: center;
    padding: 15px 10px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-day:hover,
.calendar-day.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.calendar-day.active .day-price {
    color: white;
}

.day-name {
    font-size: 12px;
    margin-bottom: 5px;
    opacity: 0.7;
}

.day-date {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.day-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--success);
}

/* Offers Section */
.offers-section {
    padding: 60px 0;
    background: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.offer-card-large {
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-card-large::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.3) 0%,
            transparent 70%);
}

.offer-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.offer-green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.offer-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.offer-purple {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.offer-badge-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-content-card {
    color: white;
    position: relative;
    z-index: 1;
}

.offer-title-card {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.offer-desc {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 15px;
    line-height: 1.5;
}

.offer-code-large {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: monospace;
}

.offer-image-large {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    opacity: 0.9;
}

/* Destinations Swiper */
.destinations-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.destinations-swiper-container {
    position: relative;
}

.destinations-swiper {
    padding: 20px 10px 50px;
}

.destination-card-large {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.destination-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.destination-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destination-card-large:hover .destination-image-wrap img {
    transform: scale(1.1);
}

.destination-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.destination-fav {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s;
}

.destination-fav:hover {
    background: var(--danger);
    color: white;
}

.destination-info-large {
    padding: 25px;
}

.destination-header-large {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.destination-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.destination-price-large {
    text-align: right;
}

.price-label {
    font-size: 12px;
    color: var(--gray-600);
    text-decoration: line-through;
}

.price-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.destination-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-600);
}

.meta-item i {
    color: var(--accent);
}

.destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    color: var(--accent);
    font-size: 14px;
}

.rating-text {
    font-size: 13px;
    color: var(--gray-600);
}

.btn-explore {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: var(--primary-dark);
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Features Grid */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: var(--gray-100);
    transition: all 0.3s;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    position: relative;
}

.feature-icon-large::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 28px;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-light));
    opacity: 0.3;
    z-index: -1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    text-align: justify;
}

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg,
            #1e3a8a 0%,
            #3b82f6 50%,
            #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

.testimonials-title {
    text-align: center;
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
}

.testimonials-marquee-container {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.testimonials-marquee {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 40s linear infinite;
    width: max-content;
}

.testimonials-marquee:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card-marquee {
    flex-shrink: 0;
    width: 380px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-card-marquee:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #f59e0b;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    font-style: italic;
}

/* Navigation Arrows */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.testimonial-arrow:hover {
    background: white;
    color: #1e40af;
    transform: scale(1.1);
}

/* Dots Indicator */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #f59e0b;
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card-marquee {
        width: 300px;
        padding: 20px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}

/* App Download */
.app-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.app-content h2 span {
    color: var(--primary);
}

.app-content p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.app-feature-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-btn i {
    font-size: 32px;
}

.app-btn-text small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.app-btn-text strong {
    font-size: 18px;
    font-weight: 700;
}

.app-visual {
    position: relative;
}

.phone-mockup {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: var(--dark);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-header-section {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.faq-header-section p {
    font-size: 16px;
    color: var(--gray-600);
}

.faq-list-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-large {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item-large:hover {
    border-color: var(--primary-light);
}

.faq-item-large.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
}

.faq-trigger-large {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-number {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item-large.active .faq-number {
    background: var(--primary);
    color: white;
}

.faq-question-large {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
}

.faq-icon-large {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s;
}

.faq-item-large.active .faq-icon-large {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.faq-content-large {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-large.active .faq-content-large {
    max-height: 300px;
}

.faq-answer-large {
    padding: 0 30px 25px 90px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Newsletter */
.newsletter-section {
    padding: 3rem 0;
    background: linear-gradient(135deg,
            var(--primary-dark),
            var(--primary));
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.newsletter-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-container h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.newsletter-container p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.newsletter-form-large {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 20px 25px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    outline: none;
}

.newsletter-btn {
    padding: 20px 40px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Footer */
.footer-large {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid-large {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-large .logo {
    margin-bottom: 25px;
}

.footer-brand-large .logo-text {
    color: white;
}

.footer-desc-large {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col-large h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links-large {
    list-style: none;
}

.footer-links-large li {
    margin-bottom: 15px;
}

.footer-links-large a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-large a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-contact-text strong {
    color: white;
    display: block;
    margin-bottom: 5px;
}

.footer-bottom-large {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-payments {
    display: flex;
    gap: 15px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
}

/* Search Results Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
}

.search-modal.active {
    display: block;
}

.search-modal-content {
    background: var(--gray-100);
    min-height: 100vh;
    padding: 40px 0;
}

.search-header {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-header h2 {
    font-size: 28px;
    color: white;
}

.close-search {
    background: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.close-search:hover {
    background: var(--danger);
    color: white;
}

.flight-results {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.flight-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 80px 1fr 150px 150px 120px;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.flight-card:hover {

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.flight-logo {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.flight-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.flight-info p {
    font-size: 14px;
    color: var(--gray-600);
}

.flight-time {
    text-align: center;
}

.flight-time-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.flight-time-sub {
    font-size: 13px;
    color: var(--gray-600);
}

.flight-duration {
    text-align: center;
    position: relative;
}

.duration-line {
    height: 2px;
    background: var(--gray-300);
    margin: 10px 0;
    position: relative;
}

.duration-line::after {
    content: "✈";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.flight-price {
    text-align: right;
}

.flight-price .price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.flight-price .per-person {
    font-size: 12px;
    color: var(--gray-600);
}

.btn-book-now {
    background: var(--success);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book-now:hover {
    background: #059669;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1200px) {
    .booking-fields {
        grid-template-columns: 1fr 1fr;
    }

    .swap-btn {
        display: none;
    }

    .search-btn-large {
        grid-column: span 2;
        justify-content: center;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .booking-fields {
        grid-template-columns: 1fr;
    }

    .search-btn-large {
        grid-column: span 1;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .app-container {
        grid-template-columns: 1fr;
    }

    .footer-grid-large {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter-form-large {
        flex-direction: column;
    }
}

.route-airline img {
    height: 26px;
    width: auto;
    object-fit: contain;
    display: block;

    transition: all 0.3s ease;
}

/* .main-flex {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
} */