/* ========================================
   Choose A Trip — Main Stylesheet
   ======================================== */

/* ========== Brand tokens + semantic aliases ========== */
:root {
    --brand-primary: #231e55;
    --brand-primary-dark: #17134a;
    --brand-secondary: #d83d33;
    --brand-secondary-dark: #b82a24;
    --brand-secondary-light: #e8655d;
    --text-gray: #45435c;
    --light-gray: #f5f4fb;
    --white: #ffffff;
    --black: #000000;

    --primary-color: var(--brand-primary);
    --primary-dark: var(--brand-primary-dark);
    --primary-light: #3a3270;
    --primary-muted: rgba(35, 30, 85, 0.14);

    --secondary-color: var(--brand-secondary);
    --secondary-dark: var(--brand-secondary-dark);
    --secondary-light: var(--brand-secondary-light);

    /* Legacy token name — deep ink for headings on light backgrounds */
    --dark-green: #1e1a42;

    --accent-color: var(--brand-secondary);
    --accent-dark: var(--brand-primary-dark);
    --accent-light: #fde8e7;
    --accent-tint: #eceaf7;
    --accent-warm-tint: #fdf2f1;
    --light-orange: rgba(216, 61, 51, 0.35);

    --dark-color: var(--dark-green);
    --light-color: var(--white);
    --surface-ice: var(--light-gray);

    --gray-100: var(--light-gray);
    --gray-200: #e8e6f0;
    --gray-300: #d4d0e0;
    --gray-400: #b8b3c9;
    --gray-500: #8c879e;
    --gray-600: #6b667d;
    --gray-700: #524e62;
    --gray-800: var(--text-gray);
    --gray-900: #1a1828;

    --font-primary: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', 'Manrope', system-ui, sans-serif;

    --section-padding: 92px;
    --section-padding-mobile: 56px;
    --transition-base: 0.3s ease;
    --transition-smooth: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(35, 30, 85, 0.08);
    --shadow-md: 0 8px 24px rgba(35, 30, 85, 0.1);
    --shadow-lg: 0 16px 40px rgba(35, 30, 85, 0.12);
    --shadow-xl: 0 24px 56px rgba(35, 30, 85, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --hero-header-offset: 144px;
}

@media (max-width: 767px) {
    :root {
        --hero-header-offset: 124px;
    }
}

/* 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: 1.0625rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: var(--gray-800);
    background-color: var(--surface-ice);
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--light-color);
}

h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    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(--primary-dark));
    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-light);
}

.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(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    padding: 0 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-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(--white);
}

.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(--primary-color);
    width: 20px;
}

/* ========== Homepage hero: skyline + form — fits in first viewport (no scroll to form) ========== */
.hero-home {
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.hero-home__skyline {
    flex: 0 0 auto;
    min-height: 140px;
    /* Keep image strip short so the search card fits in first viewport */
    height: min(90vh, calc(100svh - var(--hero-header-offset) - 200px));
    max-height: min(680px, calc(100svh - var(--hero-header-offset) - 240px));
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

@media (min-width: 992px) {
    .hero-home__skyline {
        background-attachment: fixed;
    }
}

/* Slight overlap only — form sits higher in view, fully visible without scrolling */
.hero-home__search {
    position: relative;
    z-index: 12;
    flex: 0 0 auto;
    margin-top: clamp(-1rem, -2vw, -1.75rem);
    padding: 0 0 clamp(0.75rem, 2vw, 1.25rem);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
}

.hero-home__alert {
    max-width: 720px;
    margin: 0 auto 1rem;
    text-align: left;
}

.hero-home .search-form-container,
.hero-home__form {
    max-width: 1180px;
    border-radius: 18px;
    padding: 12px 14px 11px;
    box-shadow:
        0 22px 50px rgba(35, 30, 85, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

/* Search Form */
.search-form-container {
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--radius-lg);
    padding: 16px 18px 14px;
    box-shadow: 0 18px 48px rgba(35, 30, 85, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    border: 1px solid rgba(35, 30, 85, 0.1);
    backdrop-filter: blur(12px);
}

.search-form--compact .search-form-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(35, 30, 85, 0.1);
}

.search-form--compact .search-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    text-align: left;
    margin: 0;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    font-weight: 700;
}

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

.search-form--compact .trip-type-tabs {
    margin-bottom: 0;
}

.search-form--compact .trip-type-tabs--inline {
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

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

.search-form--compact .tab-label {
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-width: 1px;
    background: var(--accent-tint);
    color: var(--primary-color);
}

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

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

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

.search-form--compact .search-form-body {
    margin-top: 2px;
}

.search-form--compact .search-row {
    display: grid;
    gap: 10px 12px;
}

.search-form--compact .search-row--primary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 10px;
}

.search-form--compact .search-row--secondary {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 1.15fr) auto minmax(124px, 152px);
    align-items: end;
}

.form-group {
    position: relative;
}

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

.search-form--compact .form-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--primary-color);
    margin-bottom: 5px;
    opacity: 0.92;
}

.search-form--compact .label-optional {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.55;
    font-size: 10px;
}

.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);
    color: var(--text-gray);
}

.form-control::placeholder {
    color: var(--gray-600);
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    color: var(--gray-600);
}

.form-control::-moz-placeholder {
    color: var(--gray-600);
    opacity: 1;
}

.search-form--compact .form-control {
    padding: 8px 11px;
    font-size: 13px;
    min-height: 40px;
    border-radius: 10px;
    border-width: 1px;
    border-color: rgba(35, 30, 85, 0.16);
}

.search-form--compact .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(35, 30, 85, 0.15);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(35, 30, 85, 0.12);
}

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

.search-form--compact .select2-container--default .select2-selection--single {
    height: 40px;
    min-height: 40px;
    border-radius: 10px;
    border-width: 1px;
    border-color: rgba(35, 30, 85, 0.16);
}

.search-form--compact .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    padding-left: 12px;
    padding-right: 28px;
    font-size: 14px;
}

.search-form--compact .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
    right: 8px;
}

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

.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(--accent-tint);
    color: var(--primary-color);
    font-weight: 600;
}

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

.search-form--compact .travelers-btn {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    border-width: 1px;
    border-color: rgba(35, 30, 85, 0.16);
    color: var(--gray-800);
    background: var(--light-color);
}

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

.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(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

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

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

.search-form--compact .checkbox-group {
    padding-top: 0;
    padding-bottom: 6px;
    align-self: center;
}

.search-form--compact .search-row__direct .checkbox-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.search-form--compact .form-group--submit .search-submit-label {
    display: block;
    height: 16px;
    margin-bottom: 5px;
}

.search-form--compact .form-group--submit {
    min-width: 0;
}

.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) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.btn-search--inline {
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(216, 61, 51, 0.35);
}

.btn-search--inline i {
    margin-right: 0;
    font-size: 14px;
}

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

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

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

.about-section--premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, var(--accent-tint) 0%, #ebe8f7 42%, var(--accent-warm-tint) 100%);
}

.about-section--premium::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -15%;
    width: 55%;
    height: 75%;
    background: radial-gradient(ellipse, rgba(35, 30, 85, 0.08) 0%, transparent 68%);
    pointer-events: none;
}

.about-section--premium .container {
    position: relative;
    z-index: 1;
}

.about-section--premium .about-image {
    box-shadow: 0 28px 56px rgba(35, 30, 85, 0.14);
    outline: 3px solid rgba(216, 61, 51, 0.28);
    outline-offset: 8px;
    border-radius: 22px;
}

.about-section--premium .section-label {
    color: var(--secondary-color);
    background: rgba(216, 61, 51, 0.12);
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.1em;
}

.about-section--premium .feature-item {
    background: var(--light-color);
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(35, 30, 85, 0.08);
    box-shadow: var(--shadow-sm);
    margin-bottom: 14px;
    align-items: flex-start;
    transition: var(--transition-base);
}

.about-section--premium .feature-item:hover {
    border-color: rgba(216, 61, 51, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.about-section--premium .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 20px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.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: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    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-light);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    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(--white);
    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(--secondary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    border: 2px solid var(--secondary-dark);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
    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(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-package-enquiry:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 0 2px 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(--secondary-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: linear-gradient(160deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--light-color);
}

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

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

/* Home only: light band above green footer — same palette, clear separation */
.why-choose-section.our-advantages {
    background: linear-gradient(185deg, var(--light-gray) 0%, var(--accent-tint) 42%, var(--accent-warm-tint) 100%);
    color: var(--text-gray);
    border-bottom: 1px solid rgba(35, 30, 85, 0.1);
}

.why-choose-section.our-advantages .section-label {
    color: var(--primary-color);
}

.why-choose-section.our-advantages .section-title {
    color: var(--dark-green);
}

.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(--primary-color);
    transform: translateY(-10px);
}

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

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

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    color: var(--white);
    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);
}

/* Our Advantages (home) — layered colour & cards */
.our-advantages {
    position: relative;
    overflow: hidden;
}

.our-advantages::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 55% at 8% 15%, rgba(216, 61, 51, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 70% 50% at 92% 85%, rgba(35, 30, 85, 0.08) 0%, transparent 58%);
    pointer-events: none;
}

.our-advantages .container {
    position: relative;
    z-index: 1;
}

.our-advantages .section-header {
    margin-bottom: 48px;
}

.our-advantages .feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
    backdrop-filter: none;
}

.our-advantages .feature-card:hover {
    background: var(--white);
    border-color: var(--gray-200);
    border-top-color: var(--secondary-color);
    box-shadow: 0 22px 50px rgba(35, 30, 85, 0.12);
}

.our-advantages .feature-card-title {
    color: var(--dark-green);
}

.our-advantages .feature-card-text {
    color: var(--text-gray);
}

.our-advantages .feature-card-icon {
    background: linear-gradient(145deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(216, 61, 51, 0.3);
}

.our-advantages .feature-card:hover .feature-card-icon {
    background: var(--primary-color);
    color: var(--white);
}

/* Footer — compact, less vertical space */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--light-color);
    border-top: 2px solid var(--secondary-color);
}

.footer-main {
    padding: 2.25rem 0 1.75rem;
}

.footer .row {
    --bs-gutter-y: 1.25rem;
}

.footer-widget {
    margin-bottom: 0;
}

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

.footer-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.85rem;
    max-width: 26rem;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 14px;
    transition: var(--transition-base);
    box-shadow: none;
}

.social-links a:hover {
    background: var(--secondary-color);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(216, 61, 51, 0.35);
}

.social-links a:focus-visible {
    outline: 2px solid var(--secondary-light);
    outline-offset: 3px;
}

.footer-widget-title {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

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

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 0.65rem;
}

.footer-contact i {
    width: 18px;
    color: var(--secondary-light);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.95;
}

.contact-info {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2px;
}

.contact-info a, .contact-info span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.45;
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 0 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* Override Bootstrap body text-align: start for this strip */
    text-align: center;
}

/* Center disclaimer + copyright: flex on container + explicit text-align on paragraphs */
.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom-content {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-bottom .footer-bottom-content p.footer-site-disclaimer,
.footer-bottom .footer-bottom-content p.disclaimer.footer-site-disclaimer,
.footer-bottom .footer-bottom-content p.copyright {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.footer-site-disclaimer {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.65rem;
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0;
}

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

.disclaimer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.5;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    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(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Phone Float */
.phone-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    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.08);
    color: var(--white);
    background: var(--primary-color);
}

/* Modal — default + package enquiry */
.modal-header {
    background: var(--primary-color);
    color: var(--light-color);
    border-bottom: 2px solid rgba(216, 61, 51, 0.45);
    padding: 0.85rem 1.15rem;
}

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

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

.modal-body {
    padding: 1.25rem 1.25rem 1.35rem;
}

/* Package / enquiry modal — refined header */
.enquiry-modal .modal-dialog {
    max-width: 640px;
}

.enquiry-modal__box {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(35, 30, 85, 0.28);
}

.enquiry-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: linear-gradient(125deg, var(--primary-dark) 0%, var(--primary-color) 55%, #2f2875 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.enquiry-modal__eyebrow {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.25rem;
}

.enquiry-modal__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
    line-height: 1.25;
}

.enquiry-modal__close {
    opacity: 0.85;
    margin-top: 0.15rem;
}

.enquiry-modal__body {
    padding: 1.25rem 1.35rem 1.4rem;
    background: var(--white);
}

.enquiry-modal__body .form-control,
.enquiry-modal__body label {
    color: var(--gray-800);
}

.enquiry-modal__body label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.enquiry-modal__submit {
    margin-top: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
}

/* Captcha — professional box (modal + pages) */
.captcha-box {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 0.9rem 1rem 1rem;
}

.captcha-box__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.captcha-box__hint {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.captcha-box__row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.65rem 0.85rem;
}

.captcha-box__math {
    flex: 1 1 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.5rem 0.85rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    font-variant-numeric: tabular-nums;
    color: var(--primary-dark);
    letter-spacing: 0.02em;
}

.captcha-box__input {
    flex: 0 1 140px;
    min-width: 0;
    max-width: 160px;
    height: 46px;
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    border: 2px solid var(--gray-300);
    font-weight: 600;
    text-align: center;
}

.captcha-box__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(35, 30, 85, 0.12);
}

@media (max-width: 575px) {
    .captcha-box__row {
        flex-direction: column;
    }

    .captcha-box__math {
        justify-content: center;
    }

    .captcha-box__input {
        flex: 1 1 auto;
        max-width: none;
        width: 100%;
    }
}

/* Legacy class — keep for any old markup */
.captcha-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.captcha-group span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    min-width: 140px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

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

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.92;
}

.page-header--contact {
    position: relative;
    overflow: hidden;
    padding: clamp(3.25rem, 8vw, 4.5rem) 0 clamp(2.75rem, 6vw, 3.75rem);
    background: linear-gradient(125deg, #1e1a48 0%, var(--primary-color) 48%, #322b78 100%);
}

.page-header--contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 85% 15%, rgba(216, 61, 51, 0.14) 0%, transparent 52%);
    pointer-events: none;
}

.page-header--contact .container {
    position: relative;
    z-index: 1;
}

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

/* White enquiry card on green band — reset inherited light text */
.content-section .enquiry-box {
    color: var(--text-gray);
}

.content-section .enquiry-box h2,
.content-section .enquiry-box h3 {
    color: var(--dark-green);
}

.content-section .enquiry-box label {
    color: var(--dark-green);
}

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

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

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

/* About page — light editorial layout */
.page-header--about {
    padding: 88px 0 72px;
    background: linear-gradient(125deg, #17134a 0%, #231e55 45%, #2d2670 100%);
    position: relative;
    overflow: hidden;
}

.page-header--about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 90% at 100% 0%, rgba(216, 61, 51, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.page-header--about .container {
    position: relative;
    z-index: 1;
}

.page-header-kicker {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary-light);
    margin-bottom: 10px;
}

.content-section.content-section--about {
    background: linear-gradient(180deg, #f5f4fb 0%, #ebe8f7 38%, #fafafc 100%);
    color: var(--gray-800);
    padding: 72px 0 88px;
}

.content-section.content-section--about .content-wrapper h2,
.content-section.content-section--about .content-wrapper h3,
.content-section.content-section--about .content-wrapper h4 {
    color: var(--primary-color);
}

.content-section.content-section--about .content-wrapper p,
.content-section.content-section--about .content-wrapper li {
    color: var(--gray-700);
}

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

.content-section.content-section--about .content-wrapper a:hover {
    color: var(--primary-dark);
}

.content-wrapper--about {
    max-width: 820px;
}

.about-content-card {
    background: var(--light-color);
    border-radius: 18px;
    padding: 28px 32px;
    margin-bottom: 20px;
    border: 1px solid rgba(35, 30, 85, 0.08);
    box-shadow: var(--shadow-sm);
}

.about-content-card h2 {
    margin: 0 0 14px 0 !important;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem) !important;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(216, 61, 51, 0.35);
}

.about-content-card p:last-child {
    margin-bottom: 0 !important;
}

.about-content-card--cta {
    background: linear-gradient(135deg, rgba(35, 30, 85, 0.06), rgba(216, 61, 51, 0.06));
    border-color: rgba(35, 30, 85, 0.12);
}

.about-cta-actions {
    margin: 20px 0 0 !important;
}

.about-disclaimer-callout {
    border-radius: 16px;
    border: 1px solid rgba(35, 30, 85, 0.12) !important;
    background: linear-gradient(135deg, var(--accent-tint), var(--accent-warm-tint)) !important;
    color: var(--text-gray) !important;
    padding: 24px 28px !important;
    margin-top: 8px !important;
}

.about-disclaimer-callout h3 {
    color: var(--primary-color) !important;
    font-size: 1.1rem !important;
    margin: 0 0 10px 0 !important;
    font-family: var(--font-heading);
}

.about-disclaimer-callout p {
    color: var(--gray-700) !important;
    margin: 0 !important;
    line-height: 1.75 !important;
}

.about-page-cta {
    padding: 72px 0;
    background: linear-gradient(115deg, #231e55 0%, #17134a 52%, #120f38 100%);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.about-page-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 85% at 0% 100%, rgba(216, 61, 51, 0.2) 0%, transparent 55%);
    pointer-events: none;
}

.about-page-cta .container {
    position: relative;
    z-index: 1;
}

.about-page-cta__kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 8px;
}

.about-page-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--light-color);
    letter-spacing: -0.02em;
}

.about-page-cta__text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    max-width: 36rem;
}

.about-page-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 992px) {
    .about-page-cta__buttons {
        justify-content: flex-end;
    }
}

.btn-primary--outline-light {
    background: transparent !important;
    color: var(--light-color) !important;
    border: 2px solid rgba(255, 255, 255, 0.88) !important;
}

.btn-primary--outline-light:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white) !important;
}

/* 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: var(--accent-tint);
    border-left: 4px solid var(--secondary-color);
    color: var(--text-gray);
}

.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;
    background: var(--surface-ice);
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    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;
    background: var(--surface-ice);
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary-muted);
    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: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: var(--light-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

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

/* ========== Homepage 2026 — sections ========== */
.home-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.home-eyebrow--on-dark {
    color: rgba(255, 255, 255, 0.85);
}

.home-eyebrow--light {
    color: rgba(255, 255, 255, 0.75);
}

.home-section-head {
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.home-section-head__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.2vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
    line-height: 1.15;
}

.home-section-head__text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--gray-600);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.home-section-head__text--end {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

/* About */
.home-about {
    position: relative;
    padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
    background: linear-gradient(180deg, #faf9ff 0%, var(--light-gray) 55%, #fff 100%);
}

.home-about__visual {
    position: relative;
    padding: 0 0 1rem 1.25rem;
}

.home-about__shape {
    position: absolute;
    inset: 12% -4% -6% 8%;
    background: linear-gradient(145deg, rgba(216, 61, 51, 0.12), rgba(35, 30, 85, 0.08));
    border-radius: 32px;
    transform: rotate(-2deg);
}

.home-about__figure {
    position: relative;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(35, 30, 85, 0.14);
    z-index: 1;
}

.home-about__figure img {
    width: 100%;
    height: auto;
    display: block;
}

.home-about__stat {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(35, 30, 85, 0.12);
}

.home-about__stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.home-about__stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    max-width: 12rem;
    line-height: 1.35;
}

.home-about__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home-about__lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.75rem;
}

.home-about__points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.home-about__points li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(35, 30, 85, 0.08);
}

.home-about__points li:last-child {
    border-bottom: none;
}

.home-about__ico {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-size: 1.1rem;
}

.home-about__points strong {
    display: block;
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.2rem;
}

.home-about__points span:not(.home-about__ico) {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.55;
}

.home-about__cta {
    padding: 0.9rem 1.75rem;
    border-radius: 999px;
}

/* Destinations — dark band + glass cards */
.home-destinations {
    position: relative;
    padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 6.5rem);
    background: linear-gradient(165deg, #1a1548 0%, var(--primary-dark) 42%, #231e55 100%);
    color: var(--white);
    overflow: hidden;
}

.home-destinations__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(216, 61, 51, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 45%);
    pointer-events: none;
}

.home-destinations .home-section-head__title {
    color: var(--white);
}

.home-destinations .home-section-head__text {
    color: rgba(255, 255, 255, 0.78);
}

.home-dest-swiper {
    padding: 0.5rem 0 3.5rem;
}

.home-dest-swiper .destination-card {
    height: 420px;
    border-radius: 22px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-dest-swiper .destination-overlay {
    background: linear-gradient(to top, rgba(15, 10, 40, 0.92) 0%, rgba(15, 10, 40, 0.2) 55%, transparent 100%);
}

.home-dest-swiper .destination-content {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1.35rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-dest-swiper .destination-name {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    text-shadow: none;
}

.home-dest-swiper .destination-location {
    font-size: 0.9rem;
    opacity: 0.88;
}

.home-dest-swiper .swiper-button-next,
.home-dest-swiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.home-dest-swiper .swiper-button-next::after,
.home-dest-swiper .swiper-button-prev::after {
    font-size: 16px;
    color: var(--white);
}

.home-dest-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35);
}

.home-dest-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    width: 28px;
    border-radius: 6px;
}

/* Packages — masonry-style grid */
.home-packages {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    background: var(--white);
    position: relative;
}

.home-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35, 30, 85, 0.12), transparent);
}

.home-packages__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .home-packages__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.home-packages__cell:nth-child(2) .home-package-tile,
.home-packages__cell:nth-child(4) .home-package-tile {
    min-height: 440px;
}

.home-package-tile {
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
}

.home-package-tile .package-content {
    padding: 1.5rem 1.35rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 100%);
}

.home-package-tile .package-title {
    font-size: 1.35rem;
}

.home-package-tile .btn-package-enquiry {
    border-radius: 999px;
    padding: 0.55rem 1.35rem;
    font-size: 0.9rem;
}

/* Airlines */
.home-airlines {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, var(--accent-tint) 0%, var(--white) 100%);
}

.home-airlines__strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.25rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(35, 30, 85, 0.08);
    box-shadow: var(--shadow-md);
}

.home-airlines .airline-logo.home-airline-chip {
    flex: 1 1 calc(25% - 1rem);
    min-width: 130px;
    max-width: 180px;
    padding: 1.35rem 1rem;
    border-radius: 16px;
    background: var(--gray-100);
    border: 1px solid rgba(35, 30, 85, 0.06);
    transition: var(--transition-base);
}

.home-airlines .home-airline-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 61, 51, 0.35);
    box-shadow: var(--shadow-md);
}

/* Pillars — light band (distinct from footer purple) */
.home-pillars {
    position: relative;
    padding: clamp(3.25rem, 7vw, 5.25rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fd 35%, #eef1f9 100%);
    color: var(--text-gray);
    overflow: hidden;
    border-top: 1px solid rgba(35, 30, 85, 0.07);
}

.home-pillars__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 100% 0%, rgba(216, 61, 51, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(35, 30, 85, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.home-pillars__head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-pillars__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary-dark);
    margin-bottom: 0.65rem;
}

.home-pillars__intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--gray-600);
    max-width: 38rem;
    margin: 0 auto;
}

.home-pillar {
    position: relative;
    height: 100%;
    padding: 1.65rem 1.4rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(35, 30, 85, 0.09);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(35, 30, 85, 0.07);
    transition: var(--transition-smooth);
}

.home-pillar:hover {
    border-color: rgba(216, 61, 51, 0.28);
    box-shadow: 0 22px 50px rgba(35, 30, 85, 0.11);
    transform: translateY(-5px);
}

.home-pillar__num {
    position: absolute;
    top: 0.85rem;
    right: 1.1rem;
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(35, 30, 85, 0.06);
}

.home-pillar__icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(35, 30, 85, 0.2);
}

.home-pillar__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.45rem;
    letter-spacing: -0.02em;
}

.home-pillar__text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--gray-600);
    margin: 0;
}

/* Contact page */
.contact-page {
    position: relative;
    padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
    background: linear-gradient(180deg, #f0f2fa 0%, #f7f8fc 45%, #fafbff 100%);
}

.contact-page__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 20%, rgba(216, 61, 51, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(35, 30, 85, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.contact-page__aside {
    height: 100%;
    padding: 1.75rem 1.5rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(35, 30, 85, 0.08);
    box-shadow: 0 16px 44px rgba(35, 30, 85, 0.08);
}

.contact-page__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
}

.contact-page__aside-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.contact-page__aside-lead {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

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

.contact-page__channel {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(35, 30, 85, 0.07);
}

.contact-page__channel:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-page__channel-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--accent-tint), #e4e0f7);
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-page__channel-name {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.2rem;
}

.contact-page__channel-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.contact-page__channel-value:hover {
    color: var(--secondary-color);
}

.contact-page__channel-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-700);
}

.contact-page__form-panel {
    height: 100%;
    padding: clamp(1.75rem, 4vw, 2.25rem);
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(35, 30, 85, 0.08);
    box-shadow: 0 20px 50px rgba(35, 30, 85, 0.09);
}

.contact-page__form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.contact-page__form-intro {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

.contact-page__field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.35rem;
}

.contact-page__input,
.contact-page__textarea {
    border-radius: 12px;
    border: 1px solid var(--gray-300);
    font-size: 0.95rem;
}

.contact-page__input:focus,
.contact-page__textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(35, 30, 85, 0.1);
}

.contact-page__textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-page__submit {
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 0.25rem;
}

.contact-page__alert {
    margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 1199px) {
    .search-form--compact .search-row--secondary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .search-form--compact .search-row__direct {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .search-form--compact .form-group--submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 60px;
    }
    
    .search-form-container {
        padding: 18px 18px 16px;
    }

    .search-form--compact .search-form-head {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .search-form--compact .search-title {
        text-align: center;
    }

    .search-form--compact .trip-type-tabs--inline {
        justify-content: center;
    }
    
    .search-form--compact .search-row--primary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-form--compact .search-row--secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-form--compact .form-group--travelers {
        grid-column: 1 / -1;
    }
    
    .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-home__skyline {
        min-height: 120px;
        height: min(28vh, calc(100svh - var(--hero-header-offset) - 320px));
        max-height: 280px;
        background-attachment: scroll;
    }

    .hero-home__search {
        margin-top: -0.75rem;
        padding-bottom: 1rem;
    }

    .hero-home .search-form-container {
        padding: 11px 12px 10px;
    }

    .home-about {
        padding-top: 2.75rem;
    }

    .home-about__visual {
        padding-left: 0;
        padding-bottom: 0;
    }

    .home-packages__grid {
        grid-template-columns: 1fr;
    }

    .home-package-tile,
    .home-packages__cell:nth-child(2) .home-package-tile,
    .home-packages__cell:nth-child(4) .home-package-tile {
        min-height: 360px;
    }

    .home-airlines .airline-logo.home-airline-chip {
        flex: 1 1 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }

    .home-dest-swiper .destination-card {
        height: 360px;
    }

    .home-pillar {
        padding: 1.45rem 1.2rem 1.35rem;
    }

    .contact-page__aside {
        margin-bottom: 0.5rem;
    }
    
    .search-form-container {
        padding: 14px 12px 12px;
        max-width: 100%;
    }

    .search-form--compact .search-row--primary,
    .search-form--compact .search-row--secondary {
        grid-template-columns: 1fr;
    }

    .search-form--compact .form-group--travelers {
        grid-column: auto;
    }

    .search-form--compact .search-row__direct {
        grid-column: auto;
    }

    .search-form--compact .form-group--submit {
        grid-column: auto;
    }
    
    .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:not(.trip-type-tabs--inline) {
        flex-direction: column;
        gap: 10px;
    }
    
    .trip-type-tabs:not(.trip-type-tabs--inline) .tab-label {
        width: 100%;
        text-align: center;
    }

    .search-form--compact .trip-type-tabs--inline {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-form--compact .trip-type-tabs--inline .tab-label {
        width: auto;
        flex: 1 1 auto;
        min-width: 120px;
        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;
    }
}
