/* ========================================
    Make A Holiday — Main Stylesheet
    ======================================== */

/* ========== Brand tokens + semantic aliases ========== */
:root {
    --brand-primary: #242d36;
    --brand-primary-dark: #1a2229;
    --brand-secondary: #d41019;
    --brand-secondary-dark: #a80d14;
    --brand-secondary-light: #e85c63;
    --text-gray: #3d4752;
    --light-gray: #f0f3f6;
    --white: #ffffff;
    --black: #000000;

    --primary-color: var(--brand-primary);
    --primary-dark: var(--brand-primary-dark);
    --primary-light: #3a4652;
    --primary-muted: rgba(36, 45, 54, 0.12);

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

    --dark-green: #242d36;

    --accent-color: var(--brand-secondary);
    --accent-dark: var(--brand-primary-dark);
    --accent-light: #fde8e9;
    --accent-tint: #e8ecf0;
    --accent-warm-tint: #fce8e9;
    --light-orange: rgba(212, 16, 25, 0.28);

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

    --gray-100: var(--light-gray);
    --gray-200: #e2e8ed;
    --gray-300: #cfd8df;
    --gray-400: #a8b4bd;
    --gray-500: #7d8a96;
    --gray-600: #5c6874;
    --gray-700: #45505a;
    --gray-800: var(--text-gray);
    --gray-900: #1a1f24;

    --font-primary: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-heading: 'Instrument Sans', 'DM Sans', 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(36, 45, 54, 0.07);
    --shadow-md: 0 8px 24px rgba(36, 45, 54, 0.09);
    --shadow-lg: 0 16px 40px rgba(36, 45, 54, 0.1);
    --shadow-xl: 0 24px 56px rgba(36, 45, 54, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 22px;
    --hero-header-offset: 132px;
    --fd-header-stack-height: 132px;
}

@media (max-width: 991px) {
    :root {
        --hero-header-offset: 108px;
        --fd-header-stack-height: 108px;
    }
}

/* 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(--dark-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 */
main {
    padding-top: var(--fd-header-stack-height);
}

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

/* ========== 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(36, 45, 54, 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(36, 45, 54, 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(36, 45, 54, 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(36, 45, 54, 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(36, 45, 54, 0.16);
}

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

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(36, 45, 54, 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(36, 45, 54, 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(36, 45, 54, 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(212, 16, 25, 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(36, 45, 54, 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(36, 45, 54, 0.14);
    outline: 3px solid rgba(212, 16, 25, 0.28);
    outline-offset: 8px;
    border-radius: 22px;
}

.about-section--premium .section-label {
    color: var(--secondary-color);
    background: rgba(212, 16, 25, 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(36, 45, 54, 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(212, 16, 25, 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(36, 45, 54, 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(212, 16, 25, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 70% 50% at 92% 85%, rgba(36, 45, 54, 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(36, 45, 54, 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(212, 16, 25, 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(212, 16, 25, 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(212, 16, 25, 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(36, 45, 54, 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) 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(36, 45, 54, 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, var(--primary-dark) 0%, var(--primary-color) 48%, #2f3d48 100%);
}

.page-header--contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 85% 15%, rgba(212, 16, 25, 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, var(--primary-dark) 0%, var(--primary-color) 45%, #2f3d48 100%);
    position: relative;
    overflow: hidden;
}

.page-header--about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 90% at 100% 0%, rgba(212, 16, 25, 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(36, 45, 54, 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(212, 16, 25, 0.35);
}

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

.about-content-card--cta {
    background: linear-gradient(135deg, rgba(36, 45, 54, 0.06), rgba(212, 16, 25, 0.06));
    border-color: rgba(36, 45, 54, 0.12);
}

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

.about-disclaimer-callout {
    border-radius: 16px;
    border: 1px solid rgba(36, 45, 54, 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, var(--primary-color) 0%, var(--primary-dark) 52%, #12161a 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(212, 16, 25, 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(212, 16, 25, 0.12), rgba(36, 45, 54, 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(36, 45, 54, 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(36, 45, 54, 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(36, 45, 54, 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, #151b20 0%, var(--primary-dark) 42%, var(--primary-color) 100%);
    color: var(--white);
    overflow: hidden;
}

.home-destinations__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(212, 16, 25, 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-destinations .fd-section-head__title {
    color: var(--white);
}

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

.home-destinations .fd-eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

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

.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(36, 45, 54, 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(36, 45, 54, 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(36, 45, 54, 0.06);
    transition: var(--transition-base);
}

.home-airlines .home-airline-chip:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 16, 25, 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(36, 45, 54, 0.07);
}

.home-pillars__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 100% 0%, rgba(212, 16, 25, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 0% 100%, rgba(36, 45, 54, 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(36, 45, 54, 0.09);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(36, 45, 54, 0.07);
    transition: var(--transition-smooth);
}

.home-pillar:hover {
    border-color: rgba(212, 16, 25, 0.28);
    box-shadow: 0 22px 50px rgba(36, 45, 54, 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(36, 45, 54, 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(36, 45, 54, 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(212, 16, 25, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(36, 45, 54, 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(36, 45, 54, 0.08);
    box-shadow: 0 16px 44px rgba(36, 45, 54, 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(36, 45, 54, 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(36, 45, 54, 0.08);
    box-shadow: 0 20px 50px rgba(36, 45, 54, 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(36, 45, 54, 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;
    }
}

/* ========== Make A Holiday — header, hero, search, footer ========== */
.fd-site-header {
    box-shadow: 0 4px 24px rgba(36, 45, 54, 0.08);
}

.fd-topbar {
    background: var(--white);
    padding: 10px 0;
}

.fd-topbar__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
    min-height: 56px;
}

@media (min-width: 992px) {
    .fd-topbar__container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        justify-content: stretch;
    }

    .fd-topbar__email {
        justify-self: start;
    }

    .fd-topbar__logo-link {
        justify-self: center;
    }

    .fd-topbar__phone {
        justify-self: end;
    }
}

.fd-topbar__side {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    min-width: 0;
}

.fd-topbar__side i {
    color: #ffffff;
    flex-shrink: 0;
}


.fd-topbar__email i {
    color: var(--primary-color);
}

.fd-topbar__cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212, 16, 25, 0.28);
}

.fd-topbar__cta:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    color: var(--white) !important;
}

.fd-topbar__logo-link {
    display: flex;
    align-items: center;
    line-height: 0;
}

/* Intrinsic asset 710×405; display size scales for clarity without dominating */
.fd-topbar__logo {
    height: auto;
    width: auto;
    max-height: clamp(44px, 5.5vw, 56px);
    max-width: min(240px, 34vw);
    object-fit: contain;
}
/* 
.fd-topbar__accent {
    height: 2px;
    background: var(--secondary-color);
    width: 100%;
} */

.fd-mobile-bar {
    background: var(--white);
    border-bottom: 2px solid var(--gray-200);
}

.fd-mobile-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
}

.fd-mobile-bar__menu {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.fd-mobile-bar__call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--white);
    background: var(--secondary-color);
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(212, 16, 25, 0.25);
}

.fd-mobile-bar__call i {
    font-size: 0.95rem;
}

.fd-mobile-bar__call-num {
    white-space: nowrap;
}

@media (max-width: 380px) {
    .fd-mobile-bar__call {
        padding: 10px 12px;
        font-size: 0.8125rem;
    }
}

.fd-main-nav {
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fd-main-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
}

.fd-main-nav__link {
    display: block;
    padding: 14px 22px;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 10px;
    transition: background var(--transition-base), color var(--transition-base);
}

.fd-main-nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.fd-main-nav__link.is-active {
    color: var(--white);
    background: rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -3px 0 var(--white);
}

@media (max-width: 991px) {
    .fd-topbar {
        border-bottom: 2px solid var(--secondary-color);
    }

    .fd-topbar__container {
        text-align: center;
    }
}

/* Hero */
.fd-hero {
    position: relative;
    margin-top: 0;
    overflow: hidden;
    background: var(--primary-dark);
}

.fd-hero__skeleton {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(110deg, #2a3540 8%, #3d4a57 18%, #2a3540 33%);
    background-size: 200% 100%;
    animation: fd-shimmer 1.2s ease-in-out infinite;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.fd-hero__skeleton--done {
    opacity: 0;
    visibility: hidden;
}

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

@media (prefers-reduced-motion: reduce) {
    .fd-hero__skeleton {
        animation: none;
        background: var(--primary-color);
    }
}

.fd-hero-swiper {
    width: 100%;
    height: 60vh;
    min-height: 60vh;
    max-height: 60vh;
}

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

.fd-hero-slide {
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    height: 100%;
}

.fd-hero-slide__media {
    position: absolute;
    inset: 0;
}

.fd-hero-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fd-hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(36, 45, 54, 0.25) 0%, rgba(36, 45, 54, 0.75) 100%);
    pointer-events: none;
}

.fd-hero-slide__content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 0 5.5rem;
    max-width: 720px;
}

.fd-hero-slide__kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.fd-hero-slide__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.65rem;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.fd-hero-slide__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 34rem;
    margin: 0;
    line-height: 1.55;
}

.fd-hero-swiper__pagination {
    bottom: 22px !important;
    z-index: 6;
}

.fd-hero-swiper__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.fd-hero-swiper__pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.15);
}

.fd-hero-swiper__nav {
    position: absolute;
    top: 50%;
    z-index: 6;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    padding: 0.35rem 0.5rem;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease, color 0.2s ease;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}

.fd-hero-swiper__nav i {
    font-size: clamp(1.35rem, 3.5vw, 1.85rem);
    line-height: 1;
}

.fd-hero-swiper__nav:hover {
    background: transparent;
    color: #ffffff;
    opacity: 0.82;
}

.fd-hero-swiper__nav--prev { left: 12px; }
.fd-hero-swiper__nav--next { right: 12px; }

@media (max-width: 575px) {
    .fd-hero-swiper__nav { display: none; }
}

/* Floating plane icons — CSS only */
.fd-hero__flyers {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.fd-hero__plane {
    position: absolute;
    color: rgba(255, 255, 255, 0.35);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    will-change: transform;
}

.fd-hero__plane--a {
    top: 18%;
    left: -10%;
    animation: fd-fly-a 22s linear infinite;
}

.fd-hero__plane--b {
    top: 42%;
    left: -12%;
    animation: fd-fly-b 28s linear infinite;
    animation-delay: -6s;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    opacity: 0.85;
}

.fd-hero__plane--c {
    top: 62%;
    left: -8%;
    animation: fd-fly-c 26s linear infinite;
    animation-delay: -12s;
}

@keyframes fd-fly-a {
    0% { transform: translate(0, 0) rotate(12deg); }
    100% { transform: translate(120vw, -8vh) rotate(12deg); }
}

@keyframes fd-fly-b {
    0% { transform: translate(0, 0) scaleX(-1) rotate(-8deg); }
    100% { transform: translate(115vw, 5vh) scaleX(-1) rotate(-8deg); }
}

@keyframes fd-fly-c {
    0% { transform: translate(0, 0) rotate(18deg); }
    100% { transform: translate(125vw, -12vh) rotate(18deg); }
}

@media (prefers-reduced-motion: reduce) {
    .fd-hero__plane {
        animation: none;
        opacity: 0.2;
    }
    .fd-hero__plane--a { top: 22%; left: 12%; }
    .fd-hero__plane--b { top: 48%; left: 55%; }
    .fd-hero__plane--c { top: 68%; left: 30%; }
}

.fd-hero__search-wrap {
    position: relative;
    z-index: 8;
    margin-top: -2.75rem;
    padding-bottom: 3rem;
}

.fd-hero__alert {
    max-width: 720px;
    margin: 0 auto 1rem;
}

/* Slim search bar */
.search-form--slim.fd-search-bar {
    padding: 14px 16px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.fd-search-bar__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.fd-search-bar__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px 12px;
}

.fd-search-bar__field {
    flex: 1 1 120px;
    min-width: 0;
    margin: 0;
}

.fd-search-bar__field--date {
    flex: 0 1 118px;
}

.fd-search-bar__field--pax {
    flex: 1 1 160px;
    position: relative;
}

.fd-search-bar__field--submit {
    flex: 0 0 auto;
}

.fd-search-bar__submit {
    min-height: 40px;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.fd-date-field {
    position: relative;
}

.fd-date-clear {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 8px;
    background: var(--gray-200);
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.fd-date-clear:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.passenger-dropdown__section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin: 0 0 8px;
}

.passenger-class-radios {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.passenger-class-radios__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    margin: 0;
}

.passenger-class-radios__item input {
    accent-color: var(--secondary-color);
}

/* Section headings */
.fd-section {
    padding: var(--section-padding) 0;
}

.fd-section-head__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.fd-section-head__text {
    color: var(--gray-700);
    max-width: 40rem;
    margin: 0.5rem auto 0;
    line-height: 1.65;
}

.fd-section-head__text--end {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

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

.fd-eyebrow--dark {
    color: var(--secondary-dark);
}

.fd-eyebrow--on-dark {
    color: rgba(255, 255, 255, 0.75);
}

/* Destinations / airlines / packages refinements */
.fd-section--destinations {
    position: relative;
}

.fd-dest-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.fd-airlines-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.fd-airlines-marquee__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
    padding: 8px 0;
}

.fd-airline-chip {
    background: var(--white);
    border-radius: 14px;
    padding: 12px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.fd-airline-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.fd-packages-grid {
    margin-top: 2rem;
}

.fd-package-card {
    border-radius: var(--radius-xl);
}

/* About + pillars */
.fd-section--about {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
}

.fd-about-title {
    color: var(--dark-color);
}

.fd-pillars {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--primary-color);
    color: var(--white);
}

.fd-pillars__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(212, 16, 25, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.fd-pillars__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: var(--white);
}

.fd-pillars__intro {
    color: rgba(255, 255, 255, 0.82);
    max-width: 36rem;
    margin: 0.5rem auto 0;
}

.fd-pillar {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: var(--transition-base);
}

.fd-pillar:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.fd-pillar .home-pillar__title {
    color: var(--white);
}

.fd-pillar .home-pillar__text {
    color: rgba(255, 255, 255, 0.82);
}

.fd-pillar .home-pillar__num {
    color: rgba(255, 255, 255, 0.12);
}

/* Page header — light titles on dark band */
.page-header .page-title {
    color: var(--white);
}

.page-header--enquiry {
    background: linear-gradient(125deg, var(--primary-dark) 0%, var(--primary-color) 50%, #2f3d48 100%);
}

/* Enquiry page */
.content-section--enquiry {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 40%);
    color: var(--gray-800);
    padding: 72px 0 88px;
}

.content-section--enquiry .enquiry-box {
    color: var(--gray-800);
}

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

.content-section--enquiry .fd-enquiry-panel__note {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-800);
}

.content-section--enquiry .fd-enquiry-panel__note strong {
    color: var(--dark-color);
}

.fd-enquiry-panel {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.fd-enquiry-panel__note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-radius: var(--radius-md);
    border: none;
}

.fd-enquiry-panel__note i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.fd-search-details {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.35rem;
    margin: 1.25rem 0;
    border: 1px solid var(--gray-200);
}

.fd-search-details h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.fd-enquiry-panel__form-title {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    text-align: center;
    color: var(--primary-color);
}

.fd-enquiry-submit {
    padding: 14px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.fd-enquiry-footnote {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-600);
    margin: 1rem 0 0;
}

.fd-enquiry-trust {
    padding: 48px 0 72px;
    background: var(--white);
}

.fd-trust-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--gray-100);
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    height: 100%;
}

.fd-trust-chip i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* Slim footer */
.footer--slim {
    background: var(--primary-dark);
    border-top: 2px solid var(--secondary-color);
    padding-bottom: 1.75rem;
}

.footer--slim .footer-slim__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding: 1.25rem 0 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-slim__brand {
    display: inline-block;
}

.footer-slim__logo {
    /* height: 36px; */
    width: 50%;
    opacity: 0.95;
}

.footer-slim__nav,
.footer-slim__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-slim__nav a,
.footer-slim__legal a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.footer-slim__nav a:hover,
.footer-slim__legal a:hover {
    color: var(--secondary-light);
}

.footer-slim__reach {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 0.8125rem;
}

.footer-slim__reach a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-slim__reach a:hover {
    color: var(--secondary-light);
}

.footer-slim__disclaimer {
    font-size: 0.6875rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    margin: 0.85rem auto 0;
    max-width: 56rem;
}

/* Expanded footer body (Make A Holiday) */
.footer-slim__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.25rem 0 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (min-width: 1200px) {
    .footer-slim__main {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr) minmax(0, 0.85fr) minmax(0, 0.95fr);
        gap: 2rem 2.5rem;
    }
}

.footer-slim__col-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.85rem;
}

.footer-slim__col-title--spaced {
    margin-top: 1.25rem;
}

.footer-slim__about {
    margin: 0.85rem 0 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 28rem;
}

.footer-slim__address {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    font-style: normal;
    color: rgba(255, 255, 255, 0.82);
}

.footer-slim__address a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    text-decoration: none;
}

.footer-slim__address a:hover {
    color: var(--secondary-light);
}

.footer-slim__col .footer-slim__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}

.footer-slim__col .footer-slim__nav a {
    font-size: 0.875rem;
}

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

.footer-slim__legal-list li {
    margin: 0 0 0.4rem;
}

.footer-slim__legal-list li:last-child {
    margin-bottom: 0;
}

.footer-slim__legal-list a {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-slim__legal-list a:hover {
    color: var(--secondary-light);
}

.footer-slim__address--contact {
    margin-bottom: 0.85rem;
}

.footer-slim__reach--block a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-slim__reach--block a:last-child {
    margin-bottom: 0;
}

.footer-slim__copy {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
    margin: 0.5rem 0 0;
}

/* Modal refresh */
.enquiry-modal__header {
    background: linear-gradient(125deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-bottom: 2px solid rgba(212, 16, 25, 0.45);
}

.enquiry-modal__box {
    box-shadow: 0 28px 70px rgba(36, 45, 54, 0.22);
}

.enquiry-modal__body .form-control {
    border-radius: 10px;
    border-color: var(--gray-300);
}

.select2-container--open {
    z-index: 2000;
}

/* Select2 dropdown — airport picker */
.select2-dropdown.fd-select2-dropdown {
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.fd-select2-dropdown .select2-results__option {
    padding: 10px 12px;
}

.fd-select2-dropdown .select2-search--dropdown {
    padding: 10px 12px 6px;
}

.fd-select2-dropdown .select2-search--dropdown .select2-search__field {
    border-radius: 10px;
    border-color: var(--gray-300);
}

/* Legal & policy pages — readable light document */
.page-header--legal {
    padding: clamp(3rem, 7vw, 4rem) 0 clamp(2.5rem, 5vw, 3.25rem);
    background: linear-gradient(125deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border-bottom: 3px solid var(--secondary-color);
}

.content-section.content-section--legal {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 28%, var(--gray-100) 100%);
    color: var(--gray-800);
    padding: 72px 0 96px;
}

.content-section.content-section--legal .content-wrapper {
    max-width: 820px;
    background: var(--white);
    padding: 2.5rem 2.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.content-section.content-section--legal .content-wrapper h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    color: var(--primary-color);
    margin: 2.25rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 16, 25, 0.25);
}

.content-section.content-section--legal .content-wrapper h2:first-of-type,
.content-section.content-section--legal .content-wrapper > div:first-child h2 {
    margin-top: 0;
}

.content-section.content-section--legal .content-wrapper h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
}

.content-section.content-section--legal .content-wrapper p,
.content-section.content-section--legal .content-wrapper li {
    color: var(--gray-700);
    font-size: 1.02rem;
    line-height: 1.75;
}

.content-section.content-section--legal .content-wrapper a {
    color: var(--secondary-dark);
    font-weight: 600;
}

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

.content-section.content-section--legal .content-wrapper ul {
    padding-left: 1.25rem;
}

.content-section.content-section--legal .fd-legal-meta {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

@media (max-width: 575px) {
    .content-section.content-section--legal .content-wrapper {
        padding: 1.5rem 1.25rem;
    }
}

/* Thank you — standalone confirmation */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(2.5rem, 6vw, 4rem) 0 3.5rem;
    background: linear-gradient(165deg, var(--gray-100) 0%, var(--white) 45%, #e8ecf0 100%);
}

.thank-you-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 2.75rem 2.25rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.thank-you-box .success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 12px 32px rgba(212, 16, 25, 0.3);
}

.thank-you-box h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thank-you-box .thank-you-lead {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.thank-you-box .thank-you-copy {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 0;
}

.thank-you-next {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.5rem;
    margin: 1.75rem 0;
    text-align: left;
}

.thank-you-next h2 {
    font-size: 1.05rem;
    color: var(--primary-color);
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thank-you-next ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.thank-you-next li {
    margin-bottom: 0.5rem;
}

.thank-you-call {
    background: linear-gradient(125deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.75rem;
    text-align: center;
}

.thank-you-call h2 {
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
    color: var(--white);
}

.thank-you-call p {
    margin: 0 0 0.35rem;
    opacity: 0.92;
}

.thank-you-call a {
    color: var(--secondary-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.thank-you-call .thank-you-hours {
    margin: 1rem 0 0;
    font-size: 0.8125rem;
    opacity: 0.88;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.thank-you-actions .btn-primary--ghost {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.thank-you-actions .btn-primary--ghost:hover {
    background: var(--primary-color);
    color: var(--white);
}

.thank-you-foot {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.thank-you-foot a {
    color: var(--secondary-dark);
    font-weight: 600;
}

.footer--thank-you {
    margin-top: 0;
    background: var(--primary-dark);
    border-top: 2px solid var(--secondary-color);
}

.footer--thank-you .footer-bottom-content {
    text-align: center;
    padding: 1.5rem 0;
}

.footer--thank-you .footer-site-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 48rem;
    margin: 0 auto 0.75rem;
    line-height: 1.55;
}

.footer--thank-you .copyright {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ============================================================
    Make A Holiday — fd-v2 premium shell (distinct typography,
   glass surfaces, curved hero, pill nav, elevated search)
   Scoped to body.fd-v2 — overrides legacy rules above.
   ============================================================ */

body.fd-v2 {
    --font-primary: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-heading: 'Fraunces', 'Georgia', serif;
    --fd-shadow-elevated: 0 16px 48px rgba(36, 45, 54, 0.12);
    --fd-shadow-soft: 0 12px 32px rgba(26, 34, 41, 0.08);
}

body.fd-v2,
body.fd-v2 p,
body.fd-v2 li {
    font-family: var(--font-primary);
    font-weight: 400;
    letter-spacing: 0.01em;
}

body.fd-v2 h1,
body.fd-v2 h2,
body.fd-v2 h3,
body.fd-v2 h4,
body.fd-v2 h5,
body.fd-v2 h6,
body.fd-v2 .page-title,
body.fd-v2 .fd-section-head__title,
body.fd-v2 .fd-hero-slide__title,
body.fd-v2 .modal-title {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.03em;
}

body.fd-v2 {
    background: #eef1f5;
    color: var(--gray-800);
}

/* Hero load skeleton: flat, no shimmer */
body.fd-v2 .fd-hero__skeleton {
    background: #e8ecef;
    background-size: auto;
    animation: none;
}

/* —— Header: glass + compact on scroll —— */
body.fd-v2 .fd-site-header {
    box-shadow: none;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.35s ease;
}

body.fd-v2 .fd-site-header.is-compact {
    box-shadow: 0 8px 32px rgba(36, 45, 54, 0.08);
}

body.fd-v2 .fd-topbar {
    background: transparent;
    padding: 12px 0 10px;
}

body.fd-v2 .fd-topbar__side {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
}

body.fd-v2 .fd-topbar__email {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(36, 45, 54, 0.06);
    transition: background 0.25s ease, transform 0.25s ease;
}

body.fd-v2 .fd-topbar__email:hover {
    background: rgba(212, 16, 25, 0.1);
    transform: translateY(-1px);
}

body.fd-v2 .fd-topbar__cta {
    background: var(--secondary-color);
    padding: 11px 22px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 20px rgba(212, 16, 25, 0.28);
}
/* 
body.fd-v2 .fd-topbar__accent {
    height: 3px;
    background: var(--secondary-color);
} */

body.fd-v2 .fd-topbar__logo {
    max-height: clamp(46px, 5.5vw, 58px);
}

body.fd-v2 .fd-mobile-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
}

body.fd-v2 .fd-mobile-bar__menu {
    border: 1px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(36, 45, 54, 0.06);
}

/* Nav: flat brand red */
body.fd-v2 .fd-main-nav {
    background: var(--secondary-color);
    border: none;
    border-top: 3px solid var(--primary-color);
}

body.fd-v2 .fd-main-nav__list {
    gap: 6px;
    padding: 6px 0;
}

body.fd-v2 .fd-main-nav__link {
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
}

body.fd-v2 .fd-main-nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

body.fd-v2 .fd-main-nav__link.is-active {
    color: var(--primary-dark);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* —— Hero: 60% viewport height, white band behind carousel, image only —— */
body.fd-v2 .fd-hero {
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    background: #ffffff;
    /* Allow passengers panel (absolute) to extend below hero without clipping */
    overflow: visible;
}

body.fd-v2 .fd-hero-swiper {
    height: 60vh;
    min-height: 60vh;
    max-height: 60vh;
}

@supports (height: 60dvh) {
    body.fd-v2 .fd-hero-swiper {
        height: 60dvh;
        min-height: 60dvh;
        max-height: 60dvh;
    }
}

body.fd-v2 .fd-hero-swiper__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

body.fd-v2 .fd-hero-swiper__pagination .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    transform: scale(1.15);
}

body.fd-v2 .fd-hero-swiper__nav {
    width: auto;
    height: auto;
    padding: 0.35rem 0.5rem;
    border-radius: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    box-shadow: none;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.fd-v2 .fd-hero-swiper__nav:hover {
    background: transparent;
    border: none;
    color: #ffffff;
    opacity: 0.82;
}

body.fd-v2 .fd-hero__search-wrap {
    margin-top: -3rem;
    padding-bottom: 3.5rem;
    z-index: 50;
}

/* —— Search: flat card, symmetric grid —— */
body.fd-v2 .fd-search-shell {
    position: relative;
    z-index: 50;
    width: 100%;
}

/* Full fluid width: remove default max-width on search card */
body.fd-v2 .fd-hero .search-form-container {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
}

body.fd-v2 .search-form--slim.fd-search-bar {
    padding: 0;
    border-radius: 14px;
    border: 1px solid var(--gray-300);
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: var(--fd-shadow-elevated);
    /* Allow passengers collapse / dropdown to extend below the card */
    overflow: visible;
}

body.fd-v2 .fd-search-bar__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
    padding: 1rem 1.25rem;
    background: #f4f6f8;
    border-bottom: 1px solid var(--gray-200);
}

body.fd-v2 .fd-search-bar__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1rem;
}

body.fd-v2 .fd-search-bar__title {
    flex: 1 1 auto;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

body.fd-v2 .fd-search-bar__hint {
    flex: 1 1 100%;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    margin: 0;
}

@media (min-width: 768px) {
    body.fd-v2 .fd-search-bar__hint {
        flex: 0 1 auto;
        margin-left: auto;
        text-align: right;
    }
}

body.fd-v2 .fd-search-bar__form {
    padding: 1.1rem 1.25rem 1.25rem;
    overflow: visible;
}

/* Equal-width columns: From | To | Depart | Return | Passengers | Search */
body.fd-v2 .fd-search-bar__row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: end;
    overflow: visible;
}

body.fd-v2 .fd-search-bar__field,
body.fd-v2 .fd-search-bar__field--date,
body.fd-v2 .fd-search-bar__field--pax,
body.fd-v2 .fd-search-bar__field--submit {
    flex: unset !important;
    width: 100%;
    min-width: 0;
    margin: 0 !important;
}

body.fd-v2 .fd-search-bar__row .form-group label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-600);
    margin-bottom: 0.35rem;
}

body.fd-v2 .fd-search-bar__row .form-control,
body.fd-v2 .fd-search-bar__row .travelers-btn {
    border-radius: 10px;
    border: 1px solid var(--gray-300);
    background: #ffffff;
    min-height: 48px;
    font-weight: 500;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

body.fd-v2 .fd-search-bar__row .form-control:focus,
body.fd-v2 .fd-search-bar__row .travelers-btn:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 16, 25, 0.15);
}

body.fd-v2 .fd-search-bar__submit {
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 1rem;
    width: 100%;
    min-height: 48px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: none;
}

body.fd-v2 .fd-search-bar__submit:hover {
    background: var(--primary-dark);
    color: var(--white);
}

@media (max-width: 1199px) {
    body.fd-v2 .fd-search-bar__row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.fd-v2 .fd-search-bar__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 479px) {
    body.fd-v2 .fd-search-bar__row {
        grid-template-columns: 1fr;
    }
}

/* Align Enquire with inputs (other columns have a label above) */
body.fd-v2 .fd-search-bar__field--submit .search-submit-label {
    display: block;
    height: 1.375rem;
    margin: 0 0 0.35rem;
    visibility: hidden;
    overflow: hidden;
}

body.fd-v2 .fd-search-bar__field--submit {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Above sticky header (1000) and Select2 open (2000); keep below full-screen modals if they use higher values */
body.fd-v2 .fd-search-bar__field--pax.form-group {
    z-index: 2500;
}

body.fd-v2 .passenger-dropdown {
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--fd-shadow-soft);
    z-index: 2500;
}

/* —— Section headings —— */
body.fd-v2 .fd-section {
    padding: clamp(4rem, 10vw, 6.5rem) 0;
}

body.fd-v2 .fd-eyebrow {
    font-family: var(--font-primary);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    color: var(--secondary-color);
}

body.fd-v2 .fd-section-head__title {
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
}

body.fd-v2 .fd-section-head__text {
    font-size: 1.0625rem;
    color: var(--gray-600);
}

/* —— Destinations: white section, large 1200×800-style cards —— */
body.fd-v2 .home-destinations {
    background: #ffffff;
    color: var(--gray-800);
    position: relative;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

body.fd-v2 .home-destinations__bg {
    display: none;
}

body.fd-v2 .home-destinations .fd-eyebrow {
    color: var(--secondary-color);
}

body.fd-v2 .home-destinations .fd-section-head__title {
    color: var(--primary-color);
}

body.fd-v2 .home-destinations .fd-section-head__text {
    color: var(--gray-600);
}

body.fd-v2 .home-dest-swiper {
    padding: 0.5rem 0 2.75rem;
}

body.fd-v2 .home-dest-swiper .destination-card {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

body.fd-v2 .fd-dest-card .destination-overlay {
    display: none;
}

body.fd-v2 .destination-image {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 1200 / 800;
    min-height: clamp(280px, 38vw, 520px);
    position: relative;
    overflow: hidden;
}

body.fd-v2 .destination-image img,
body.fd-v2 img.fd-dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.fd-v2 .fd-dest-card {
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 16px 48px rgba(36, 45, 54, 0.1);
    background: #ffffff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

body.fd-v2 .fd-dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(36, 45, 54, 0.14);
}

body.fd-v2 .home-dest-swiper .destination-content {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 1.35rem 1.5rem 1.5rem;
    background: #f4f6f8;
    border-top: 1px solid var(--gray-200);
    backdrop-filter: none;
}

body.fd-v2 .home-dest-swiper .destination-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    color: var(--primary-color) !important;
    text-shadow: none;
    margin-bottom: 0.25rem;
}

body.fd-v2 .home-dest-swiper .destination-location {
    font-size: 1rem;
    color: var(--gray-600) !important;
    opacity: 1;
}

body.fd-v2 .home-dest-swiper .swiper-button-next,
body.fd-v2 .home-dest-swiper .swiper-button-prev {
    width: auto;
    height: auto;
    margin-top: 0;
    padding: 0.25rem 0.35rem;
    border-radius: 0;
    background: transparent;
    border: none;
    color: var(--primary-color);
    box-shadow: none;
}

body.fd-v2 .home-dest-swiper .swiper-button-next:hover,
body.fd-v2 .home-dest-swiper .swiper-button-prev:hover {
    background: transparent;
    color: var(--secondary-color);
}

body.fd-v2 .home-dest-swiper .swiper-button-next::after,
body.fd-v2 .home-dest-swiper .swiper-button-prev::after {
    font-size: 1.35rem;
    font-weight: 900;
    color: inherit;
}

body.fd-v2 .home-dest-swiper .swiper-pagination-bullet {
    background: var(--gray-400);
    opacity: 1;
}

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

@media (max-width: 767px) {
    body.fd-v2 .home-dest-swiper .destination-card {
        height: auto !important;
    }
}

/* —— Airlines —— */
body.fd-v2 .fd-section--airlines {
    background: #ffffff;
}

body.fd-v2 .fd-airline-chip {
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(36, 45, 54, 0.06);
}

/* —— Packages —— */
body.fd-v2 .fd-section--packages {
    background: #eef1f5;
}

body.fd-v2 .fd-package-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(36, 45, 54, 0.08);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(36, 45, 54, 0.1);
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s ease;
}

body.fd-v2 .fd-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(36, 45, 54, 0.14);
}

body.fd-v2 .package-title {
    font-family: var(--font-heading);
}

/* —— About —— */
body.fd-v2 .fd-section--about {
    background: #ffffff;
}

body.fd-v2 .home-about__figure {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--fd-shadow-soft);
    border: 1px solid rgba(36, 45, 54, 0.08);
}

body.fd-v2 .home-about__cta {
    border-radius: 999px;
    padding: 0.95rem 2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

body.fd-v2 .home-about {
    background: #f4f6f8;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

body.fd-v2 .home-about__shape {
    background: rgba(212, 16, 25, 0.08);
    border: 1px solid rgba(212, 16, 25, 0.12);
}

body.fd-v2 .home-about__stat {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    box-shadow: var(--fd-shadow-soft);
}

body.fd-v2 .home-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin: 0 0 1.75rem;
}

@media (min-width: 576px) {
    body.fd-v2 .home-about__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

body.fd-v2 .home-about__card {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 1.1rem 1.15rem 1.15rem;
    box-shadow: 0 6px 24px rgba(36, 45, 54, 0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

body.fd-v2 .home-about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--secondary-color);
}

body.fd-v2 .home-about__card:hover {
    border-color: rgba(212, 16, 25, 0.25);
    box-shadow: 0 12px 36px rgba(36, 45, 54, 0.1);
}

body.fd-v2 .home-about__card-ico {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 16, 25, 0.1);
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.65rem;
}

body.fd-v2 .home-about__card-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

body.fd-v2 .home-about__card-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--gray-600);
}

body.fd-v2 .home-about__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
}

body.fd-v2 .home-about__meta {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.02em;
}

/* —— Why choose Make A Holiday — light section —— */
body.fd-v2 .fd-pillars.fd-pillars--light {
    background: #ffffff;
    color: var(--gray-800);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: clamp(3.5rem, 8vw, 5.75rem) 0;
}

body.fd-v2 .fd-pillars--light .fd-pillars__bg {
    display: none;
}

body.fd-v2 .fd-pillars--light .fd-pillars__title {
    color: var(--primary-color);
}

body.fd-v2 .fd-pillars--light .fd-pillars__intro {
    color: var(--gray-600);
    max-width: 40rem;
}

body.fd-v2 .fd-pillars--light .fd-pillar {
    border-radius: 1.25rem;
    background: #f8fafc;
    border: 1px solid var(--gray-200);
    padding: 1.5rem 1.35rem 1.5rem 1.5rem;
    box-shadow: 0 4px 22px rgba(36, 45, 54, 0.06);
    position: relative;
    overflow: hidden;
}

body.fd-v2 .fd-pillars--light .fd-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
}

body.fd-v2 .fd-pillars--light .fd-pillar:hover {
    background: #ffffff;
    border-color: rgba(212, 16, 25, 0.28);
    box-shadow: 0 14px 40px rgba(36, 45, 54, 0.1);
}

body.fd-v2 .fd-pillars--light .home-pillar__num {
    color: rgba(36, 45, 54, 0.07);
}

body.fd-v2 .fd-pillars--light .home-pillar__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(212, 16, 25, 0.1);
    color: var(--secondary-color);
    box-shadow: none;
    font-size: 1.2rem;
}

body.fd-v2 .fd-pillars--light .home-pillar__title {
    color: var(--primary-color) !important;
}

body.fd-v2 .fd-pillars--light .home-pillar__text {
    color: var(--gray-600) !important;
}

/* —— Buttons global —— */
body.fd-v2 .btn-primary {
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.85rem 1.75rem;
    background: var(--secondary-color);
    border: none;
    box-shadow: 0 6px 20px rgba(212, 16, 25, 0.22);
}

body.fd-v2 .btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
}

/* —— Footer —— */
body.fd-v2 .footer--slim {
    background: var(--primary-dark);
    border-top: 3px solid var(--secondary-color);
    padding-bottom: 2rem;
}

body.fd-v2 .fd-search-bar__form .select2-container--default .select2-selection--single {
    height: 48px;
    min-height: 48px;
    border-radius: 10px;
    border: 1px solid var(--gray-300);
}

body.fd-v2 .fd-search-bar__form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px;
    padding-left: 14px;
    font-size: 0.9375rem;
}

body.fd-v2 .fd-search-bar__form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
}

/* —— Modal —— */
body.fd-v2 .enquiry-modal__box {
    border-radius: 1.35rem;
    border: 1px solid var(--gray-200);
}

body.fd-v2 .enquiry-modal__header {
    background: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
}

body.fd-v2 .enquiry-modal__title {
    font-family: var(--font-heading);
}

body.fd-v2 .enquiry-modal__body .form-control {
    border-radius: 12px;
}

/* —— Offcanvas —— */
body.fd-v2 .offcanvas {
    background: #ffffff;
}

body.fd-v2 .mobile-nav a.active {
    color: var(--secondary-color);
    font-weight: 700;
}

/* —— Page headers (inner pages) —— */
body.fd-v2 .page-header--contact,
body.fd-v2 .page-header--about,
body.fd-v2 .page-header--enquiry,
body.fd-v2 .page-header--legal {
    background: var(--primary-color);
}

body.fd-v2 .page-title {
    font-weight: 700;
    text-wrap: balance;
}

/* —— Contact / enquiry panels —— */
body.fd-v2 .contact-page__form-panel,
body.fd-v2 .fd-enquiry-panel {
    border-radius: 1.35rem;
    box-shadow: var(--fd-shadow-soft);
    border: 1px solid rgba(36, 45, 54, 0.08);
}

/* —— Legal doc card —— */
body.fd-v2 .content-section.content-section--legal .content-wrapper {
    border-radius: 1.35rem;
}

/* —— Thank you —— */
body.fd-v2 .thank-you-box {
    border-radius: 1.5rem;
    border: 1px solid rgba(36, 45, 54, 0.08);
}

body.fd-v2 .thank-you-box h1 {
    font-family: var(--font-heading);
}

@media (prefers-reduced-motion: reduce) {
    body.fd-v2 .fd-dest-card,
    body.fd-v2 .fd-package-card,
    body.fd-v2 .btn-primary,
    body.fd-v2 .fd-search-bar__submit {
        transition: none;
    }
    body.fd-v2 .fd-dest-card:hover,
    body.fd-v2 .fd-package-card:hover {
        transform: none;
    }
}
