/* ========================================
   Book With Experts - Main Stylesheet
   ======================================== */

/* ========== CSS Variables ========== */
:root {
    --primary-color: #004d7d;
    --secondary-color: #fa7a19;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --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), #003a5d);
    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);
}

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

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #004d7d 0%, #003a5d 100%);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(0, 77, 125, 0.95) 0%, rgba(0, 58, 93, 0.92) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    color: var(--light-color);
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-color);
    margin-bottom: 50px;
    opacity: 0.95;
}

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

.search-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.trip-type-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

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

.tab-label {
    padding: 12px 40px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

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

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

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

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
}

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

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 77, 125, 0.1);
}

/* Airport Select - Search Form */
.search-form-container .form-group {
    min-width: 0;
}

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

.select2-container--default .select2-selection--single {
    height: 50px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    min-height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
    padding-left: 16px;
    padding-right: 30px;
    color: var(--gray-800);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 10px;
}

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

/* Select2 dropdown - professional styling */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.select2-dropdown {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

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

.travelers-btn {
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.travelers-btn::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.passenger-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light-color);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 8px;
    box-shadow: var(--shadow-md);
    z-index: 100;
}

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

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

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

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

.btn-minus,
.btn-plus {
    width: 35px;
    height: 35px;
    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);
}

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

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

.btn-select {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    padding-top: 32px;
}

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

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-search {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary-color), #e96d10);
    color: var(--light-color);
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-search i {
    margin-right: 10px;
}

/* 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;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--secondary-color);
    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;
}

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

/* 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 */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #003a5d);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--light-color);
}

.page-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #003a5d);
    color: var(--light-color);
}
.content-section label{
    color: var(--dark-color);
}

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

.content-wrapper h2 {
    font-size: 32px;
    color: var(--light-color);
    margin: 40px 0 20px;
}

.content-wrapper h3 {
    font-size: 24px;
    color: var(--light-color);
    margin: 30px 0 15px;
}

.content-wrapper h4 {
    color: var(--light-color);
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.content-wrapper ul, .content-wrapper ol {
    margin: 20px 0 20px 30px;
}

.content-wrapper li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

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

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

.content-section .alert-info {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--secondary-color);
    color: var(--light-color);
}

/* 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: #e7f3ff;
    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, #28a745, #20c997);
    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 */
.contact-info-box {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    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(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--light-color);
}

.contact-info-content p {
    margin: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .search-form-container {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .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);
    }
}

@media (max-width: 767px) {
    .hero-banner {
        min-height: 600px;
        padding: 40px 0;
        background-attachment: scroll;
    }
    
    .search-form-container {
        padding: 25px 15px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        min-width: 0;
    }
    
    .search-form-container .select2-container,
    .search-form-container .airport-select {
        width: 100% !important;
        max-width: 100%;
    }
    
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 14px;
        padding-right: 35px;
    }
    
    .trip-type-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-label {
        width: 100%;
        text-align: center;
    }
    
    .destination-card {
        height: 350px;
    }
    
    .airlines-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enquiry-box {
        padding: 30px 20px;
    }
}

@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;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
