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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Arupala Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 60, 114, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.2s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #4D73FC;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4D73FC;
    transition: width 0.2s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta-btn {
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    gap: 8px;
    padding: 10px 20px;
    background: #4D73FC;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.header-cta-btn:hover {
    background: #3d5fd9;
    transform: translateY(-1px);
    color: white;
    box-shadow: 0 4px 12px rgba(77, 115, 252, 0.3);
}

.header-cta-btn svg {
    width: 18px;
    height: 18px;
}

.phone-link {
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(77, 115, 252, 0.2);
    border-radius: 50px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.phone-link:hover {
    background: #4D73FC;
    color: white;
    transform: translateY(-1px);
}

.phone-link svg {
    width: 18px;
    height: 18px;
}

* {
    box-shadow: none !important;
}

.booking {
    padding-top: 70px;
}

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

.modern-search-form {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 16px;
}

.form-type-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.type-btn {
    padding: 6px 14px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.type-btn.active {
    background: #4D73FC;
    color: white;
}

.type-btn:hover:not(.active) {
    background: #f3f4f6;
    color: #1a1a1a;
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 0;
    align-items: end;
}

@media (min-width: 768px) {
    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .search-grid {
        /* From, To, Dep, Ret, Pass, Btn -> 6 columns */
        /* If return hidden, 5 cols. Grid handles this automatically if elements are hidden? No, hidden elements still take grid slot if not display:none. JS handles display:none */
        grid-template-columns: repeat(4, 1fr) auto;
    }
}

@media (min-width: 1200px) {
    .search-grid {
        grid-template-columns: 1.4fr 1.4fr 1fr 1fr 1.2fr auto;
    }
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.search-field label {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.search-field input,
.search-field select {
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #1a1a1a;
    background: white;
    transition: all 0.2s ease;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: #4D73FC;
    background: #fafbff;
}

.search-field input::placeholder {
    color: #9ca3af;
    font-size: 13px;
}

.search-submit {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.search-btn {
    padding: 8px 24px;
    background: #4D73FC;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Open Sans', sans-serif;
    height: 38px;
    white-space: nowrap;
}

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

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

.trip-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.trip-option {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trip-option input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #4D73FC;
}

.trip-option label {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
}

.destination-card,
.benefit-block,
.blog-box,
.flight-deal-block {
    box-shadow: none !important;
    border: 1px solid #e5e7eb;
}

.cus-btn {
    box-shadow: none !important;
    font-family: 'Open Sans', sans-serif;
    border: none;
    transition: all 0.2s ease;
}

.service-tabs .nav-link {
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-container {
        height: 60px;
        padding: 0 16px;
    }

    .logo img {
        height: 32px;
    }

    .phone-link span {
        display: none;
    }

    .phone-link {
        padding: 10px;
    }

    .header-cta-btn span {
        display: none;
    }

    .header-cta-btn {
        padding: 10px;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .modern-search-form {
        padding: 12px;
    }

    .search-field input,
    .search-field select {
        padding: 8px 10px;
        font-size: 13px;
    }

    .search-btn {
        width: 100%;
        padding: 10px 20px;
    }

    .booking {
        padding-top: 70px;
    }
}

@media (max-width: 992px) {
    .nav-left {
        gap: 24px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu li a {
        font-size: 14px;
    }
}

.main-wrapper {
    padding-top: 70px;
}

section {
    box-shadow: none !important;
}

.card {
    box-shadow: none !important;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.card-body {
    padding: 16px !important;
}

.service-tabs {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.service-tabs .nav-link {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border: none;
    background: none;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.service-tabs .nav-link.active {
    color: #4D73FC;
    border-bottom-color: #4D73FC;
    background: rgba(77, 115, 252, 0.05);
}

.service-tabs .nav-link:hover:not(.active) {
    color: #1a1a1a;
}

.service-tabs .nav-link svg {
    width: 14px;
    height: 14px;
}

#preloader {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #001f3f 0%, #0a2540 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    animation: fadeOut 0.5s ease 3s forwards;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
    max-width: 600px;
    padding: 0 20px;
}

.preloader-logo {
    max-width: 140px;
    height: auto;
    margin-bottom: 40px;
    animation: fadeInScale 0.8s ease 0.1s backwards;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.preloader-welcome {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 12px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeIn 1s ease 0.3s backwards;
}

.preloader-title {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
    animation: fadeIn 1s ease 0.5s backwards;
}

.preloader-subtitle {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 48px 0;
    letter-spacing: 0.3px;
    line-height: 1.5;
    animation: fadeIn 1s ease 0.7s backwards;
}

.progress-bar-container {
    width: 280px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    animation: fadeIn 1s ease 0.9s backwards;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: loading 2.5s ease-in-out forwards, shimmer 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@media (max-width: 768px) {
    .preloader-welcome {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .preloader-title {
        font-size: 36px;
        letter-spacing: -0.3px;
        margin-bottom: 16px;
    }

    .preloader-subtitle {
        font-size: 16px;
        margin-bottom: 36px;
    }

    .preloader-logo {
        max-width: 100px;
        margin-bottom: 32px;
    }

    .progress-bar-container {
        width: 240px;
    }
}

@media (max-width: 480px) {
    .preloader-title {
        font-size: 28px;
    }

    .preloader-subtitle {
        font-size: 14px;
    }

    .progress-bar-container {
        width: 200px;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }

    to {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

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

@keyframes loading {
    0% {
        width: 0%;
    }

    50% {
        width: 60%;
    }

    100% {
        width: 100%;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

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

/* Airport Dropdown Styles */
.airport_select_from,
.airport_select_to {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 200;
    max-height: 300px;
    overflow-y: auto;
    list-style: none;
    padding: 8px;
}

.airport_select_from li,
.airport_select_to li {
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.airport_select_from li:hover,
.airport_select_to li:hover {
    background: rgba(77, 115, 252, 0.08);
    color: #4D73FC;
}

.airport_select_from li strong,
.airport_select_to li strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

.airport_select_from li small,
.airport_select_to li small {
    display: block;
    font-size: 12px;
    color: #6b7280;
}

/* Passenger Area Styles */
.passenger-area {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.passenger-area h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.passenger-box {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.passenger-box:last-of-type {
    border-bottom: none;
}

.passenger-box h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.passenger-box p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

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

.quantity input[type="button"],
.quantity .decrement,
.quantity .increment {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity input[type="button"]:hover,
.quantity .decrement:hover,
.quantity .increment:hover {
    border-color: #4D73FC;
    background: rgba(77, 115, 252, 0.05);
    color: #4D73FC;
}

.quantity .number {
    width: 50px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px;
    font-weight: 500;
    font-size: 14px;
}

/* Radio Tiles for Class Selection */
.radio-tile-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.input-container {
    position: relative;
}

.input-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-tile {
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.radio-tile-label {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.input-container input[type="radio"]:checked+.radio-tile {
    border-color: #4D73FC;
    background: rgba(77, 115, 252, 0.08);
}

.input-container input[type="radio"]:checked+.radio-tile .radio-tile-label {
    color: #4D73FC;
}

.radio-tile:hover {
    border-color: #4D73FC;
}

.airlines-section {
    padding: 30px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.airlines-wrapper {
    overflow: hidden;
    position: relative;
}

.airlines-wrapper::before,
.airlines-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.airlines-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.airlines-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.airlines-carousel {
    display: flex;
    gap: 50px;
    animation: scrollAirlines 40s linear infinite;
    width: max-content;
}

.airline-logo-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.airline-logo-item:hover {
    opacity: 1;
}

.airline-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.airline-logo-item:hover img {
    filter: grayscale(0%);
}

@keyframes scrollAirlines {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 25px));
    }
}

.testimonials-section {
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 15px;
    color: #484848;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
}

.testimonial-author h6 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.testimonial-author p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.destination-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.destination-text {
    padding-right: 40px;
}

.destination-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.destination-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.destination-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(77, 115, 252, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #4D73FC;
    margin: 0 0 4px 0;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.destination-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.destination-btn {
    padding: 14px 32px;
    background: #4D73FC;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.destination-btn:hover {
    background: #3d5fd9;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(77, 115, 252, 0.3);
    color: white;
}

.destination-link {
    padding: 14px 32px;
    color: #4D73FC;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.destination-link:hover {
    color: #3d5fd9;
}

.destination-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.destination-image {
    width: 100%;
    height: auto;
    display: block;
}

.destination-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.destination-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.news-blog-section {
    padding: 60px 0;
    background: white;
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #4D73FC;
}

.news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f3f4f6;
}

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

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

.news-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #6b7280;
}

.news-author,
.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-author svg,
.news-date svg {
    flex-shrink: 0;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #4D73FC;
}

.news-excerpt {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-link {
    color: #4D73FC;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 10px;
}

.news-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.news-link:hover::after {
    transform: translateX(4px);
}

.special-deals-section {
    padding: 60px 0;
    background: white;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.deal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #4D73FC;
}

.deal-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.deal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.deal-card:hover .deal-image {
    transform: scale(1.1);
}

.deal-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #FF4757;
    padding: 6px 12px;
    border-radius: 20px;
}

.deal-discount {
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.deal-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.deal-type {
    font-size: 12px;
    color: #4D73FC;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.deal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.deal-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    flex-grow: 1;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.price-old {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-new {
    font-size: 24px;
    font-weight: 700;
    color: #4D73FC;
}

.deal-btn {
    padding: 12px 24px;
    background: #4D73FC;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.deal-btn:hover {
    background: #3d5fd9;
    transform: translateY(-2px);
    color: white;
}

.promo-banner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.promo-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.promo-text {
    margin-bottom: 32px;
}

.promo-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.promo-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.promo-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4D73FC;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.promo-btn-primary:hover {
    background: #3d5fd9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(77, 115, 252, 0.3);
    color: white;
}

.promo-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.promo-btn-secondary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-2px);
}

.trust-badges-section {
    padding: 50px 0;
    background: #f8f9fa;
}

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

.trust-rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-text {
    display: flex;
    flex-direction: column;
}

.rating-score {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.rating-label {
    font-size: 14px;
    color: #6b7280;
}

.trust-badges {
    display: flex;
    gap: 40px;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-badge-item svg {
    margin-bottom: 4px;
}

.trust-badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.top-routes-section {
    padding: 60px 0;
    background: white;
}

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

.route-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.route-card:hover {
    border-color: #4D73FC;
    box-shadow: 0 8px 24px rgba(77, 115, 252, 0.1);
    transform: translateY(-2px);
}

.route-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(77, 115, 252, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-info {
    flex-grow: 1;
}

.route-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.route-details {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.route-price {
    font-size: 24px;
    font-weight: 700;
    color: #4D73FC;
}

.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #4D73FC;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

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

.faq-answer p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.travel-tips-section {
    padding: 60px 0;
    background: white;
}

.tip-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #4D73FC;
}

.tip-icon {
    width: 80px;
    height: 80px;
    background: rgba(77, 115, 252, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.tip-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.tip-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.newsletter-text {
    margin-bottom: 32px;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-btn {
    padding: 14px 32px;
    background: #4D73FC;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #3d5fd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .promo-title {
        font-size: 32px;
    }

    .promo-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .promo-btn-primary,
    .promo-btn-secondary {
        width: 100%;
    }

    .trust-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .search-grid {
        grid-template-columns: 1fr;
    }

    .search-submit {
        width: 100%;
    }

    .search-btn {
        width: 100%;
    }
}