/* ========================================
   Friends Holidays UK - Main Stylesheet
   ======================================== */

/* ========== CSS Variables - Friends Holidays UK Brand Colors ========== */
:root {
    --primary-color: #495ad3;
    --secondary-color: #dc27a0;
    --purple: #7429c1;
    --light-blue: #6eccfa;
    --dark-color: #1a1a2e;
    --light-color: #ffffff;
    --gray-100: #f0f4ff;
    --gray-200: #e2e8f7;
    --gray-300: #c9d4ed;
    --gray-400: #9fb0d9;
    --gray-500: #6b7db8;
    --gray-600: #4a5a8a;
    --gray-700: #3d4a6e;
    --gray-800: #2d3652;
    --gray-900: #1a1a2e;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--light-color);
    overflow-x: hidden;
    max-width: 100vw;
}

h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--light-color);
}

 h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-base);
}

/* Sticky Header Wrapper - fixed (sticky breaks with overflow-x: hidden on body) */
.sticky-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Compensate for fixed header - prevent content from hiding under it */
main {
    padding-top: 144px; /* topbar + header height on desktop */
}

@media (max-width: 767px) {
    main {
        padding-top: 124px; /* mobile-topbar + mobile-subheader */
    }
}

/* Top Bar */
.topbar {
    background: linear-gradient(135deg, var(--primary-color), var(--purple));
    padding: 12px 0;
    border-bottom: 2px solid var(--secondary-color);
}

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

.topbar-link {
    color: var(--light-color);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-link:hover {
    color: var(--secondary-color);
}

.topbar-link i {
    font-size: 12px;
}

/* Mobile Top Bar */
.mobile-topbar {
    background: var(--light-color);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.mobile-topbar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-logo img {
    height: 50px;
    width: auto;
}

.mobile-subheader {
    background: var(--primary-color);
    padding: 12px 0;
}

.mobile-subheader-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.mobile-subheader-content .mobile-phone {
    min-width: 0;
    flex-shrink: 1;
}

@media (max-width: 380px) {
    .mobile-subheader-content .mobile-phone span {
        font-size: 12px;
    }
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: var(--light-color);
    font-size: 24px;
    padding: 0;
}

.mobile-phone {
    color: var(--light-color);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mobile-phone i {
    font-size: 16px;
}

/* Header */
.header {
    background: var(--light-color);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.navbar-nav {
    gap: 40px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link-whatsapp i {
    font-size: 18px;
    color: #25D366;
}

.nav-link-whatsapp:hover i,
.nav-link-whatsapp:hover {
    color: #25D366 !important;
}

/* Mobile Menu */
.offcanvas {
    max-width: 300px;
}

.offcanvas-logo {
    height: 50px;
    width: auto;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--primary-color);
    color: var(--light-color);
}

.mobile-contact-info {
    margin-top: 40px;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.mobile-contact-info h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mobile-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.mobile-contact-info i {
    color: var(--secondary-color);
    width: 20px;
}

.mobile-contact-info .mobile-whatsapp i {
    color: #25D366;
}

/* ========== Hero Banner with Swiper ========== */
.hero-banner {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    /* overflow: hidden; */
}

.hero-banner-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-banner-swiper .swiper-slide {
    height: 100%;
}

.banner-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(73, 90, 211, 0.75) 0%, rgba(116, 41, 193, 0.7) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0 80px;
}

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

.hero-alert {
    max-width: 600px;
    margin: 0 auto 20px;
}

.hero-title {
    font-size: 52px;
    color: var(--light-color);
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--light-color);
    margin-bottom: 36px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Banner Pagination - Beautiful bullets */
.hero-banner-pagination {
    bottom: 24px !important;
    z-index: 3;
}

.hero-banner-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-banner-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 5px;
    background: var(--light-color);
}

/* ========== Search Form Container ========== */
.search-form-container {
    background: var(--light-color);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.search-form-container .trip-type-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    justify-content: center;
}

.search-form-container .trip-type-tabs input[type="radio"] {
    display: none;
}

.search-form-container .tab-label {
    padding: 10px 32px;
    background: var(--gray-100);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-600);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.search-form-container .tab-label:hover {
    background: var(--gray-200);
}

.search-form-container .trip-type-tabs input[type="radio"]:checked + .tab-label {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.search-form-container .trip-type-tabs input[type="radio"]:checked + .tab-label:hover {
    background: var(--primary-color);
}

.search-form-container .form-row {
    display: grid;
    gap: 18px;
    align-items: end;
}

.search-form-container .form-row-1 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 18px;
}

.search-form-container .form-row-2 {
    grid-template-columns: 1fr 1fr auto;
}

.search-form-container .form-group {
    position: relative;
    min-width: 0;
}

.search-form-container .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--gray-500);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-form-container .form-control {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition-base);
    background: var(--light-color);
}

.search-form-container .form-control:hover {
    border-color: var(--gray-400);
}

.search-form-container .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(73, 90, 211, 0.15), inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-form-container .return-date-group {
    visibility: visible;
    opacity: 1;
    transition: visibility 0.25s ease, opacity 0.25s ease;
}

.search-form-container .return-date-group.return-date-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.search-form-container .airport-select,
.search-form-container .select2-container {
    width: 100% !important;
    min-width: 0;
}

.search-form-container .select2-container--default .select2-selection--single {
    height: 44px !important;
    min-height: 44px !important;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.search-form-container .select2-container--default .select2-selection--single:hover {
    border-color: var(--gray-400);
}

.search-form-container .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(73, 90, 211, 0.15), inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-form-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
    padding-left: 14px;
    padding-right: 36px;
    padding-top: 2px;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.search-form-container .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection-choice {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
}

.search-form-container .select2-container--default .select2-selection--single .select2-selection__rendered .airport-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-800);
}

.search-form-container .select2-container--default .select2-selection--single .select2-selection__rendered .airport-meta {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 1px;
}

.search-form-container .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--gray-500);
    font-size: 14px;
}

.search-form-container .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
    right: 10px;
}

.search-form-container .date-picker {
    height: 44px;
    cursor: pointer;
}

.select2-results__option .airport-option {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
}

.select2-results__option .airport-option .airport-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-800);
}

.select2-results__option .airport-option .airport-meta {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* Fix 1 - Select2 text and dropdown colors (brand) */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--gray-800);
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--gray-500);
}

.select2-container--default .select2-results__option {
    color: var(--gray-700);
    background-color: var(--light-color);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] .airport-meta {
    color: rgba(255, 255, 255, 0.9);
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--gray-100);
    color: var(--primary-color);
    font-weight: 600;
}

.select2-search--dropdown .select2-search__field {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--gray-800);
    padding: 8px 12px;
    font-family: var(--font-primary);
    font-size: 14px;
    outline: none;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(73, 90, 211, 0.12);
}

.select2-dropdown {
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(73, 90, 211, 0.15);
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(73, 90, 211, 0.12);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--primary-color) transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--primary-color) transparent;
}

/* Fix 2 - Select2 dropdown scrollbar */
.select2-results__options {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray-100);
    max-height: 220px;
    overflow-y: auto;
}

.select2-results__options::-webkit-scrollbar {
    width: 4px;
}

.select2-results__options::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.search-form-container .form-group-search .btn-search {
    height: 44px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--purple));
    color: var(--light-color);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.search-form-container .form-group-search .btn-search:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.search-form-container .options-expand {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.search-form-container .btn-options-expand {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.search-form-container .btn-options-expand:hover {
    color: var(--secondary-color);
    background: var(--gray-100);
}

.search-form-container .btn-options-expand i {
    margin-right: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.search-form-container .btn-options-expand[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.search-form-container .search-form-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-form-container .search-form-options.is-open {
    max-height: 180px;
}

.search-form-container .form-row-options {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: end;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.search-form-container .checkbox-group {
    display: flex;
    align-items: center;
    padding-bottom: 4px;
}

.search-form-container .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}

.search-form-container .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.search-form-container .travelers-btn {
    height: 44px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-700);
}

.search-form-container .travelers-btn::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
}

/* Fix 3 - Travelers dropdown z-index */
.passenger-dropdown {
    z-index: 9999;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: 0 8px 32px rgba(73, 90, 211, 0.18);
}

.form-group-travelers {
    position: relative;
    z-index: 9999;
}

.search-form-container {
    overflow: visible !important;
}

.search-form-primary {
    overflow: visible !important;
}

.form-row-primary {
    overflow: visible !important;
}

.search-form-container .passenger-group {
    margin-bottom: 15px;
}

.search-form-container .passenger-group:last-of-type {
    margin-bottom: 20px;
}

.search-form-container .passenger-group label {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

.search-form-container .passenger-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-form-container .btn-minus,
.search-form-container .btn-plus {
    width: 36px;
    height: 36px;
    background: var(--gray-200);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition-base);
}

.search-form-container .btn-minus:hover,
.search-form-container .btn-plus:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.search-form-container .passenger-input {
    flex: 1;
    text-align: center;
    padding: 10px;
    height: 44px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.search-form-container .btn-select {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-form-container .btn-select:hover {
    background: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.about-content {
    padding-left: 40px;
}

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-text p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Destinations & Packages */
.destinations-section, .packages-section {
    padding: var(--section-padding) 0;
}

.destinations-section {
    background: var(--light-color);
}

.packages-section {
    background: var(--gray-100);
}

.section-header {
    margin-bottom: 60px;
}

.destinations-swiper {
    padding: 20px 0 60px;
}

.destination-card, .package-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.destination-card {
    height: 400px;
}

.package-card {
    height: 450px;
}

.destination-card:hover, .package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.destination-image, .package-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.destination-image img, .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.destination-card:hover .destination-image img,
.package-card:hover .package-image img {
    transform: scale(1.1);
}

.destination-overlay, .package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.destination-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.package-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 70%);
}

.destination-content, .package-content {
    position: absolute;
    color: var(--light-color);
    z-index: 2;
}

.destination-content {
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.package-content {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
}

.destination-name, .package-title {
    font-weight: 700;
    color: var(--light-color) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.destination-name {
    font-size: 28px;
    margin-bottom: 5px;
}

.package-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.destination-location {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
    color: rgba(255, 255, 255, 0.95) !important;
}

.btn-package-enquiry {
    padding: 10px 25px;
    background: var(--secondary-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-package-enquiry:hover {
    background: var(--light-color);
    color: var(--secondary-color);
}

/* Swiper */
.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 900;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-400);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Airlines Section */
.airlines-section {
    padding: var(--section-padding) 0;
    background: var(--light-color);
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.airline-logo {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    border: 2px solid var(--gray-200);
}

.airline-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.airline-logo img {
    max-width: 100%;
    /* height: 60px; */
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: var(--transition-base);
}

.airline-logo:hover img {
    filter: grayscale(0%);
    /* opacity: 1; */
}

/* Why Choose */
.why-choose-section {
    padding: var(--section-padding) 0;
    background: var(--primary-color);
    color: var(--light-color);
}

.why-choose-section .section-label {
    color: var(--secondary-color);
}

.why-choose-section .section-title {
    color: var(--light-color);
}

.features-row {
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: var(--light-color);
    border-color: var(--secondary-color);
    transform: translateY(-10px);
}

.feature-card:hover .feature-card-icon {
    background: var(--secondary-color);
}

.feature-card:hover .feature-card-title,
.feature-card:hover .feature-card-text {
    color: var(--dark-color);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    color: var(--light-color);
    transition: var(--transition-base);
}

.feature-card-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--light-color);
    transition: var(--transition-base);
}

.feature-card-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    transition: var(--transition-base);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition-base);
}

.social-links .social-facebook {
    background: #1877F2;
}
.social-links .social-facebook:hover {
    background: #166FE5;
    transform: translateY(-3px);
}

.social-links .social-twitter {
    background: #1DA1F2;
}
.social-links .social-twitter:hover {
    background: #1A94DA;
    transform: translateY(-3px);
}

.social-links .social-instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}
.social-links .social-instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    filter: brightness(1.1);
    transform: translateY(-3px);
}

.social-links .social-linkedin {
    background: #0A66C2;
}
.social-links .social-linkedin:hover {
    background: #004182;
    transform: translateY(-3px);
}

.footer-widget-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--light-color);
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 15px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    width: 20px;
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact .contact-whatsapp i {
    color: #25D366;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.contact-info a, .contact-info span {
    color: var(--gray-300);
    font-size: 15px;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background: var(--gray-900);
    padding: 30px 0;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom-content {
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Phone Float */
.phone-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-base);
}

.phone-float:hover {
    transform: scale(1.1);
    color: var(--light-color);
    background: var(--secondary-color);
}

/* WhatsApp Float - Left Bottom */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--light-color);
    background: #128C7E;
}

/* Modal */
.modal-header {
    background: var(--primary-color);
    color: var(--light-color);
    border-bottom: 3px solid var(--secondary-color);
}

.modal-title {
    font-weight: 700;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-group span {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

/* Content Pages - About, Contact, Privacy, Terms, etc. */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--purple));
    padding: 80px 0 60px;
    text-align: center;
    color: var(--light-color);
}

.page-title {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 400;
}

.content-section {
    padding: 90px 0;
    background: var(--light-color);
    color: var(--dark-color);
}

.content-section label {
    color: var(--gray-700);
    font-weight: 600;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 48px 0 20px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.content-wrapper h2:first-of-type {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--purple);
    margin: 32px 0 14px;
    letter-spacing: -0.01em;
}

.content-wrapper h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
}

.content-wrapper p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-weight: 400;
}

.content-wrapper ul, .content-wrapper ol {
    margin: 16px 0 24px 28px;
}

.content-wrapper li {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.content-wrapper a {
    color: var(--primary-color);
    font-weight: 500;
}

.content-wrapper a:hover {
    color: var(--secondary-color);
}

.content-section .alert-info {
    background: rgba(110, 204, 250, 0.12);
    border-left: 4px solid var(--primary-color);
    color: var(--gray-700);
}

.content-section .alert-info h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
}

/* Enquiry Form */
.enquiry-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.enquiry-box {
    background: var(--light-color);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.alert {
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.alert-info {
    background: rgba(110, 204, 250, 0.2);
    border-left: 4px solid var(--primary-color);
    color: var(--primary-color);
}

.search-details {
    background: var(--gray-100);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.search-details h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-300);
}

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

.detail-label {
    font-weight: 600;
    color: var(--gray-700);
}

.detail-value {
    color: var(--gray-600);
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-box {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-blue));
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-lg);
}

.thank-you-box h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thank-you-box p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Error Pages */
.error-section {
    padding: 100px 0;
    text-align: center;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--gray-300);
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.error-description {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
}

/* Contact Form - Content Section (white background) */
.content-section .contact-info-box {
    background: var(--light-color);
    color: var(--gray-700);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    border: 2px solid var(--gray-200);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.content-section .contact-info-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(73, 90, 211, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-info-box .contact-whatsapp .contact-info-icon {
    background: rgba(37, 211, 102, 0.15);
}

.contact-info-box .contact-whatsapp .contact-info-icon i {
    color: #25D366;
}

.content-section .contact-info-content h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    color: var(--purple);
}

.content-section .contact-info-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
}

.content-section .contact-info-content a {
    color: var(--primary-color);
    font-weight: 500;
}

.content-section .contact-info-content a:hover {
    color: var(--secondary-color);
}

/* Contact page form box */
.content-section .contact-form-box {
    border: 2px solid var(--gray-200);
    border-top: 3px solid var(--primary-color);
}

.contact-form-box .contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.content-wrapper p strong {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-banner {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-banner-swiper {
        position: relative;
        height: 280px;
        min-height: 280px;
    }
    
    .hero-overlay {
        display: none;
    }
    
    .hero-content-wrapper {
        padding: 40px 0 50px;
        background: linear-gradient(180deg, rgba(73, 90, 211, 0.95) 0%, rgba(116, 41, 193, 0.9) 100%);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .hero-banner-pagination {
        bottom: 12px !important;
    }
    
    .search-form-container .form-row-1 {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .search-form-container .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
    
    .search-form-container .form-group-travelers,
    .search-form-container .form-group-search {
        grid-column: span 2;
    }
    
    .search-form-container {
        padding: 28px 24px;
    }
    
    .search-form-container .form-row-options {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        min-width: 0;
    }
    
    .search-form-container .select2-container {
        width: 100% !important;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 14px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .airlines-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-wrapper h2 {
        font-size: 24px;
    }
    
    .content-wrapper h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .hero-banner-swiper {
        height: 220px;
        min-height: 220px;
    }
    
    .hero-content-wrapper {
        padding: 30px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .search-form-container {
        padding: 24px 18px;
        max-width: 100%;
    }
    
    .search-form-container .form-row-1 {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .search-form-container .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .search-form-container .form-group-travelers,
    .search-form-container .form-group-search {
        grid-column: span 1;
    }
    
    .search-form-container .select2-container,
    .search-form-container .airport-select {
        width: 100% !important;
        max-width: 100%;
    }
    
    .search-form-container .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 14px;
        padding-right: 35px;
    }
    
    .search-form-container .tab-label {
        padding: 8px 24px;
        font-size: 13px;
    }
    
    .destination-card {
        height: 350px;
    }
    
    .airlines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enquiry-box {
        padding: 30px 20px;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .content-wrapper h2 {
        font-size: 22px;
    }
    
    .content-wrapper p,
    .content-wrapper li {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .airlines-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .cta-buttons .btn-primary {
        text-align: center;
    }
}

/* Mobile: Fix horizontal overflow & phone float visibility */
@media (max-width: 767px) {
    .phone-float {
        bottom: 20px;
        right: 15px;
        width: 52px;
        height: 52px;
        font-size: 20px;
        z-index: 1000;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 15px;
        width: 52px;
        height: 52px;
        font-size: 24px;
        z-index: 1000;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
