/* ==========================================================================
   Step 2wards Journey — Premium Travel Stylesheet (Navy, Gold & White)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --site-bg: #FAF8F3;
    --bg-white: #FFFFFF;
    --bg-light: #F4F6F9;
    --bg-cream: #F8F5EE;
    --bg-footer: #0B1F3A;

    --navy-primary: #0B1F3A;
    --navy-dark: #071428;
    --navy-light: #1a3a5c;

    --gold-primary: #C9A227;
    --gold-dark: #A8861E;
    --gold-light: #F3ECE0;
    --accent-blue: #1F5F8B;
    
    --text-dark: #171923;    /* Primary dark text */
    --text-muted: #6B7280;   /* Muted body text */
    --text-light: #FFFFFF;
    
    --border-gold: rgba(214, 168, 79, 0.25);
    --border-color: #E2E8F0;
    
    --shadow-soft: 0 10px 30px rgba(214, 168, 79, 0.06);
    --shadow-premium: 0 20px 40px rgba(23, 25, 35, 0.05);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--site-bg); /* Unified page background */
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

/* Typography Utility Classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.3;
}

.section-tag-wrapper {
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 1.5px;
    background-color: var(--gold-primary);
}

.section-title {
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem; /* Reduced margin below section title */
    font-weight: 500;
    text-align: center;
}

.section-desc {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2rem auto; /* Reduced margin below description */
    font-size: 0.95rem;
    text-align: center;
    font-weight: 400;
    line-height: 1.7;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 70px 0; /* Reduced padding globally for compact design */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 32px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--text-light);
    border: 1px solid var(--gold-primary);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(185, 138, 46, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
}

.btn-text:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* Header & Navigation */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border: none;
    transition: var(--transition-smooth);
    overflow: visible;
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: none;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-container {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
    align-items: center;
    height: 104px;
    min-height: 104px;
    padding: 10px 0;
    transition: var(--transition-fast);
    gap: 24px;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
}

header.scrolled .header-container {
    height: 92px;
    min-height: 92px;
    padding: 8px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
}

.logo-img-link {
    min-width: 0;
    max-width: min(240px, 32vw);
    height: 100%;
    padding: 0;
    border-radius: 0;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-img {
    height: auto;
    width: auto;
    max-height: 84px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    background: none !important;
    background-color: transparent !important;
}

header .logo-img {
    max-height: 84px;
    max-width: 100%;
}

/* JPEG logos with solid black backgrounds — blend into dark header/hero */
header .logo-img.logo-has-jpeg-bg {
    mix-blend-mode: lighten;
}

header.logo-bg-enabled .logo-img-link {
    background: transparent !important;
    padding: 0;
    box-shadow: none !important;
}

header.logo-bg-enabled .logo-img {
    max-height: 84px;
}

header.scrolled .logo-img {
    max-height: 76px;
    filter: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
}

.btn-admin-login {
    padding: 11px 22px;
    font-size: 0.98rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    background: transparent;
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-admin-login:hover {
    background: var(--gold-primary);
    color: #fff;
}

header.scrolled .btn-admin-login {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

header.scrolled .btn-admin-login:hover {
    background: var(--gold-primary);
    color: #fff;
}

.nav-login {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    justify-self: center;
    min-width: 0;
    flex-wrap: nowrap;
    overflow: visible;
}

header.scrolled .nav-menu {
    background: transparent;
    border-color: transparent;
}

.nav-menu > a.nav-link,
.nav-menu > .nav-dropdown > .nav-link.nav-dropdown-toggle {
    font-family: var(--font-body);
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
}

.nav-link {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.7px;
    position: relative;
    padding: 12px 16px;
    border-radius: 0;
    white-space: nowrap;
}

header.scrolled .nav-link {
    color: var(--navy-primary);
}

header.scrolled .nav-dropdown-toggle {
    color: var(--navy-primary);
}

header.scrolled .nav-link:hover,
header.scrolled .nav-link.active {
    color: var(--gold-primary) !important;
}

header.scrolled .nav-dropdown-toggle:hover,
header.scrolled .nav-dropdown-toggle.active {
    color: var(--gold-primary) !important;
}

.nav-link:hover,
.nav-link.active {
    background: transparent;
    color: var(--gold-primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 1px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link.nav-dropdown-toggle:hover::after,
.nav-link.nav-dropdown-toggle.active::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
    overflow: visible;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    top: 100%;
    height: 14px;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    user-select: none;
    border: none;
    background: transparent;
    font-family: inherit;
    line-height: inherit;
    text-align: inherit;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
}

.nav-link.nav-dropdown-toggle {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.7px;
}

header.scrolled .nav-link.nav-dropdown-toggle {
    color: var(--navy-primary);
}

.nav-link.nav-dropdown-toggle:hover,
.nav-link.nav-dropdown-toggle.active {
    background: transparent;
    color: var(--gold-primary) !important;
}

.nav-dropdown-toggle i {
    font-size: 0.62rem;
    transition: transform 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 260px;
    z-index: 1100;
    transform: translateX(-50%) translateY(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
    background: #ffffff;
    border: 1px solid rgba(214, 168, 79, 0.4);
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(11, 35, 65, 0.22);
    padding: 10px;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: block;
}

.nav-dropdown-link {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--navy-primary) !important;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

header.scrolled .nav-dropdown-menu .nav-dropdown-link {
    color: var(--navy-primary) !important;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
    background: var(--gold-primary);
    color: #ffffff !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.4rem;
    color: #FFFFFF;
}

header.scrolled .mobile-menu-toggle {
    color: var(--navy-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(21, 25, 34, 0.4) 0%, rgba(21, 25, 34, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 850px;
    padding: 0 24px;
    margin-top: 50px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.hero-desc {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.play-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.8rem;
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.play-btn-wrapper:hover .play-btn {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: scale(1.1);
}

.play-btn-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   Section 1: Explore the World
   ========================================================================== */
.explore-section {
    background: var(--bg-white);
}

.process-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.process-timeline {
    position: relative;
    padding-left: 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 20px;
    bottom: 20px;
    width: 1.5px;
    background: repeating-linear-gradient(
        to bottom,
        var(--gold-primary) 0px,
        var(--gold-primary) 6px,
        transparent 6px,
        transparent 12px
    );
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-cream);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-title {
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-map-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.world-map-wrap {
    position: relative;
    width: 100%;
    max-width: 760px;
    aspect-ratio: 2 / 1;
    margin-left: auto;
}

.world-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.world-map-mask {
    width: 100%;
    height: 100%;
    background-image: url('assets/beach_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    -webkit-mask-image: url('assets/world_map.png');
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    
    mask-image: url('assets/world_map.png');
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
}

.map-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    background-color: var(--gold-primary); /* Gold center */
    border: 2px solid #FFFFFF; /* Soft border */
    box-shadow: 0 0 0 1px var(--gold-primary); /* outer gold border */
    border-radius: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.map-dot.blue-pin {
    background-color: var(--accent-blue); /* Blue center */
    box-shadow: 0 0 0 1px var(--accent-blue);
}

.map-dot .ripple {
    position: absolute;
    top: -9px;
    left: -9px;
    width: 25px;
    height: 25px;
    border: 1.5px solid var(--gold-primary);
    border-radius: 50%;
    animation: mapRipple 2.5s infinite ease-out;
    opacity: 0;
    pointer-events: none;
}

.map-dot.blue-pin .ripple {
    border-color: var(--accent-blue);
}

/* Tooltip bubble using content from data-trips on hover */
.map-dot::after {
    content: attr(data-trips);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #171923;
    color: #FFFFFF;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Tooltip arrow using pseudo-element */
.map-dot::before {
    content: '';
    position: absolute;
    bottom: 11px;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    border-width: 5px;
    border-style: solid;
    border-color: #171923 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 10;
}

/* Hover effects */
.map-dot:hover {
    transform: translate(-50%, -50%) scale(1.35);
}

.map-dot:hover::after,
.map-dot:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Specific pin positions on the map, aligned realistically with continents of world_map.png */
.dot-1 { left: 17%; top: 36%; animation-delay: 0s; }     /* North America */
.dot-2 { left: 31%; top: 70%; animation-delay: 0.4s; }   /* South America */
.dot-3 { left: 48%; top: 35%; animation-delay: 0.8s; }   /* Europe */
.dot-4 { left: 52%; top: 58%; animation-delay: 1.2s; }   /* Africa */
.dot-5 { left: 64%; top: 48%; animation-delay: 1.6s; }   /* India / Middle East */
.dot-6 { left: 75%; top: 38%; animation-delay: 2s; }     /* East Asia */
.dot-7 { left: 82%; top: 72%; animation-delay: 2.4s; }   /* Australia */

@keyframes mapRipple {
    0% { transform: scale(0.3); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================================================
   Section 2: Popular Destinations
   ========================================================================== */
.destinations-section {
    background: var(--bg-light);
}

.carousel-outer-container {
    position: relative;
    width: 100%;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 10px 0 30px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.destination-card {
    flex: 0 0 25%;
    padding: 0 15px;
    transition: var(--transition-smooth);
}

.destination-card-inner {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.destination-card-inner:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold-primary);
}

.dest-img-box {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.dest-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.destination-card-inner:hover .dest-img-box img {
    transform: scale(1.08);
}

.dest-info-box {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dest-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-name i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.dest-trips {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Slider navigation arrows */
.carousel-btn-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: var(--transition-fast);
}

.carousel-btn-arrow:hover {
    background: var(--gold-primary);
    color: var(--bg-white);
}

.carousel-btn-arrow.btn-prev {
    left: -20px;
}

.carousel-btn-arrow.btn-next {
    right: -20px;
}

/* Carousel Indicators/Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background: var(--gold-primary);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   Section 3: Travel Benefits
   ========================================================================== */
.benefits-section {
    background: var(--site-bg); /* Unified page background */
    padding-top: 50px; /* Reduced top padding to make it compact */
    padding-bottom: 50px; /* Reduced bottom padding */
    margin: 0;
}

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

.benefit-card {
    text-align: center;
    padding: 10px 15px; /* Compact padding to remove blank white space */
    transition: var(--transition-smooth);
    max-width: 260px; /* Max-width for each benefit text around 260px */
    margin: 0 auto;
}

.benefit-icon-box {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 14px auto; /* Reduced extra bottom margin for icons */
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.benefit-card:hover .benefit-icon-box {
    background: var(--gold-primary);
    color: var(--bg-white);
    transform: translateY(-4px);
}

.benefit-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px; /* Heading closer to icon/text */
    color: var(--text-dark);
}

.benefit-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Section 4: Browse By Destination Category
   ========================================================================== */
.categories-section {
    background: var(--bg-light);
    padding: 45px 0; /* Compact top/bottom padding of categories section */
}

.category-card-item {
    flex: 0 0 16.666%; /* 6 category cards in one row on desktop */
    padding: 0 8px;
    text-align: center;
}

.category-card-inner {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    padding: 8px; /* Compact padding */
    border-radius: 80px 80px 16px 16px; /* Compact arched style */
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card-inner:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-premium);
}

.cat-img-box {
    width: 100%;
    height: 110px; /* Reduced image height to make it compact */
    border-radius: 80px 80px 0 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card-inner:hover .cat-img-box img {
    transform: scale(1.08);
}

.cat-info-box {
    width: 100%;
    padding: 10px 5px 6px 5px; /* Compact vertical padding */
    background: var(--bg-white);
    border-radius: 0 0 10px 10px;
}

.cat-name {
    font-size: 0.78rem; /* Compact font size */
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-trips {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold-primary);
}

/* ==========================================================================
   Section 5: About Us
   ========================================================================== */
.about-section {
    background: var(--site-bg); /* Unified page background */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 10px;
}

.about-title {
    text-align: left;
}

.about-desc {
    text-align: left;
    margin-left: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px; /* Reduced margin */
}

.stat-card {
    background: var(--bg-cream);
    border: 1px solid var(--border-gold);
    padding: 15px 10px; /* Compact stats card padding */
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* About Overlapping Circles Layout */
.about-media-container {
    position: relative;
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
}

.about-accent-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    right: 30px;
    top: 30px;
    z-index: 1;
    opacity: 0.65;
}

.about-img-main-wrap {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 3;
    box-shadow: var(--shadow-premium);
    border: 6px solid #FFFFFF;
}

.about-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-sub-wrap {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    left: 10px;
    top: 110px;
    z-index: 4;
    box-shadow: var(--shadow-premium);
    border: 6px solid #FFFFFF;
}

.about-img-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-thumb {
    pointer-events: none;
}

.about-video-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 25, 35, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.about-video-play i {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.about-img-sub-wrap:hover .about-video-play i {
    transform: scale(1.1);
    background: var(--gold-primary);
    color: #FFFFFF;
}

.about-flight-path {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 90px;
    height: 90px;
    border-right: 2px dashed var(--gold-primary);
    border-bottom: 2px dashed var(--gold-primary);
    border-radius: 0 0 45px 0;
    z-index: 2;
}

.about-flight-path i {
    position: absolute;
    bottom: -6px;
    right: -6px;
    color: var(--gold-primary);
    font-size: 0.75rem;
    transform: rotate(45deg);
}

/* Video Modal Popup styling */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 25, 34, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000000;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-native {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 8px;
    background: #000;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #FFFFFF;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.video-modal-close:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   Section 6: Testimonials
   ========================================================================== */
.testimonials-section {
    background: var(--site-bg); /* Unified page background */
    position: relative;
    overflow: hidden;
    padding-top: 60px; /* Reduced vertical padding heavily for compact look */
    padding-bottom: 60px;
}

.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 650px; /* Keep center review card not too wide */
    margin: 0 auto;
}

.testimonial-center-card {
    background: var(--site-bg); /* Match the cream page background exactly */
    border: 1px solid rgba(214, 168, 79, 0.18); /* Soft border */
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06); /* Subtle shadow */
    padding: 24px 20px; /* Reduced padding for compact look */
    text-align: center;
    border-radius: 8px;
    position: relative;
    transition: var(--transition-smooth);
    z-index: 3;
}

.testimonial-quote-icon {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 12px;
    display: inline-block;
}

.testimonial-rating {
    color: var(--gold-primary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-review {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Client image inside review card */
.testimonial-client-img-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px auto;
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-soft);
}

.testimonial-client-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author-role {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Testimonial avatar indicators positioned around */
.testimonial-avatar-float {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 3.5px solid var(--bg-white);
    box-shadow: var(--shadow-premium);
    z-index: 5;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: avatarPulse 3.5s ease-in-out infinite;
}

.testimonial-avatar-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-float.active {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 15px rgba(214, 168, 79, 0.5) !important; /* Glow effect */
}

/* Testimonials float layout positions and delays */
.ta-1 { top: 15%; left: 8%; width: 55px; height: 55px; animation-delay: 0s; }
.ta-2 { top: 22%; right: 8%; width: 68px; height: 68px; animation-delay: 0.4s; }
.ta-3 { bottom: 18%; left: 10%; width: 62px; height: 62px; animation-delay: 0.8s; }
.ta-4 { bottom: 20%; right: 10%; width: 58px; height: 58px; animation-delay: 1.2s; }
.ta-5 { top: 48%; left: 4%; width: 52px; height: 52px; animation-delay: 1.6s; }

@keyframes avatarPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08); /* 1 -> 1.08 -> 1 smooth zoom */
    }
}

/* ==========================================================================
   Section 7: FAQs
   ========================================================================== */
.faq-section {
    background: var(--site-bg); /* Unified page background */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    border-radius: 4px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-premium);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px; /* Compact accordion padding */
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem; /* Increased FAQ question font size */
    font-weight: 700; /* Bold/semi-bold question text */
    color: var(--text-dark);
    letter-spacing: 0.5px;
    white-space: nowrap; /* Questions in a single horizontal line where possible */
    overflow: hidden;
    text-overflow: ellipsis;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--gold-primary);
    color: var(--bg-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-inner {
    padding: 0 30px 24px 30px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Section 8: Footer
   ========================================================================== */
footer {
    background-color: var(--navy-primary) !important;
    padding: 0 0 25px 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cpath d='M0,80 Q40,40 80,80 T160,80 M0,120 Q40,80 80,120 T160,120 M0,40 Q40,0 80,40 T160,40' fill='none' stroke='%23d6a84f' stroke-opacity='0.02' stroke-width='1'/%3E%3C/svg%3E"); /* Subtle topographic repeating map pattern overlay */
    background-repeat: repeat;
    color: #9CA3AF;
    border-top: none;
    position: relative;
    overflow: hidden;
}

/* Topographic background overlay */
.footer-watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(214, 168, 79, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.72fr 1fr;
    gap: 35px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-grid-three {
    grid-template-columns: minmax(260px, 1.35fr) minmax(200px, 1fr) minmax(160px, 0.85fr);
    gap: 32px;
}

.footer-col h3 {
    color: #FFFFFF; /* Footer headings should be white */
    font-size: 1.05rem;
    margin-bottom: 18px; /* Reduced gap below headings */
    position: relative;
    padding-bottom: 12px;
    text-align: left;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1.5px;
    background-color: var(--gold-primary); /* Accent line gold */
}

.footer-col.footer-brand .logo {
    color: #FFFFFF;
    margin-bottom: 10px;
}

.footer-col.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 12px;
    color: #9CA3AF;
}

.footer-col.footer-brand .footer-brand-note {
    color: rgba(255,255,255,0.58);
    font-size: 0.76rem;
    font-style: italic;
    margin-top: -6px;
    margin-bottom: 10px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background: var(--gold-primary); /* Hover gold */
    color: #FFFFFF;
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

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

.footer-links-list a {
    font-size: 0.85rem;
    color: #9CA3AF;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--gold-primary); /* Hover gold */
    padding-left: 6px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: #9CA3AF;
}

.footer-contact-list i {
    color: var(--gold-primary); /* Icons gold */
    font-size: 0.95rem;
    margin-top: 3px;
}

.footer-recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.f-post-item {
    display: flex;
    gap: 15px;
}

.f-post-img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.08);
}

.f-post-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.f-post-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 4px;
}

.f-post-title:hover {
    color: var(--gold-primary); /* Hover gold */
}

.f-post-date {
    font-size: 0.7rem;
    color: var(--gold-primary); /* Dates gold */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #9CA3AF; /* Light gray body text */
}

.footer-bottom span {
    color: #FFFFFF;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #9CA3AF;
}

.footer-bottom-links a:hover {
    color: var(--gold-primary); /* Hover gold */
}

/* Back to Top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ==========================================================================
   Subpages Style Blocks (About, Destinations, Gallery, Contact)
   ========================================================================== */
.inner-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    text-align: center;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 25, 34, 0.65); /* Dark premium overlay */
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
}

.inner-hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.inner-breadcrumb {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
}

.inner-breadcrumb a {
    color: #FFFFFF;
    transition: var(--transition-fast);
}

.inner-breadcrumb a:hover {
    color: var(--gold-primary);
}

/* About Page Specific Layouts */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.about-card {
    background: var(--bg-white);
    border: 1px solid rgba(214, 168, 79, 0.15);
    box-shadow: var(--shadow-soft);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
}

.about-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.about-card-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.about-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

#why-choose-section .why-choose-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

#why-choose-section .about-card {
    min-height: 100%;
}

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

.team-member {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold-primary);
}

.team-member-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member-info {
    padding: 20px 15px;
}

.team-member-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-member-role {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Destinations Page Specific Layouts */
.destinations-intro-panel,
.why-promise-panel,
.contact-intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 46px;
}

.destinations-intro-copy,
.why-promise-copy,
.contact-intro-copy {
    padding: 30px 0;
}

.destinations-intro-copy p,
.why-promise-copy p,
.contact-intro-copy p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 640px;
}

.destinations-intro-media,
.why-promise-media,
.contact-intro-media {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.22);
}

.destinations-intro-media img,
.why-promise-media img,
.contact-intro-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.destinations-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.destinations-stat {
    background: var(--bg-white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: 16px 14px;
    box-shadow: var(--shadow-soft);
}

.destinations-stat strong {
    display: block;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1;
    margin-bottom: 6px;
}

.destinations-stat span {
    color: var(--navy-primary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-primary);
    color: #FFFFFF;
    border-color: var(--gold-primary);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.destination-card-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-fast);
    text-align: center;
}

.destination-card-btn:hover {
    background: var(--gold-primary);
    color: #FFFFFF;
}

/* Gallery Page Specific Layouts */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-premium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(214, 168, 79, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: #FFFFFF;
    font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox popup */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 25, 34, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 4px solid #FFFFFF;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #FFFFFF;
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--gold-primary);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.lightbox-arrow:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* Contact Page Specific Layouts */
.contact-page-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-intro-panel {
    margin-bottom: 8px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 30px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 24px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-premium);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-form-box {
    background: var(--bg-white);
    border: 1px solid rgba(214, 168, 79, 0.15);
    padding: 36px 30px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(11, 31, 58, 0.08);
}

.contact-direct-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-direct-actions .btn {
    width: 100%;
    gap: 8px;
    padding-left: 18px;
    padding-right: 18px;
}

.contact-call-btn {
    background: var(--navy-primary);
    color: #fff;
    border: 1px solid var(--navy-primary);
}

.contact-call-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.contact-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.contact-trust-card {
    background: var(--bg-white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: 24px 20px;
    box-shadow: var(--shadow-soft);
}

.contact-trust-card span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-primary);
    margin-bottom: 14px;
}

.contact-trust-card h3 {
    color: var(--navy-primary);
    font-size: 0.96rem;
    margin-bottom: 8px;
}

.contact-trust-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-dark);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: var(--bg-white);
}

.form-error {
    color: #E53E3E;
    font-size: 0.75rem;
    margin-top: 5px;
    display: none;
}

.form-success-message {
    background: #C6F6D5;
    color: #22543D;
    border: 1px solid #C6F6D5;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: none;
    text-align: center;
}

.map-section {
    margin-top: 40px;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-padding {
        padding: 45px 0; /* Compact padding on tablet */
    }
    
    .testimonials-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    
    .benefits-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .categories-section {
        padding: 35px 0; /* Compact categories padding */
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .process-map-wrapper {
        order: 2;
    }
    
    .process-timeline {
        order: 1;
    }
    
    .about-grid,
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .category-card-item {
        flex: 0 0 33.333%; /* 3 columns on tablet */
    }
    
    .about-media-container {
        justify-content: center;
        height: 420px;
        margin-top: 30px;
    }
    
    .about-accent-circle {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 340px;
        height: 340px;
        top: 20px;
    }

    .about-page-copy {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .about-images-col {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        height: 78px;
        min-height: 78px;
        padding: 8px 0;
        gap: 12px;
    }

    .logo-img-link {
        max-width: min(180px, 46vw);
    }

    .logo-img,
    header .logo-img {
        max-height: 62px;
    }

    header.scrolled .logo-img {
        max-height: 58px;
    }

    .footer-logo-img {
        height: 88px;
        max-width: 220px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-arrow { width: 40px; height: 40px; font-size: 1rem; }
    
    .section-padding {
        padding: 35px 0; /* Compact padding on mobile */
    }
    
    .testimonials-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }
    
    .benefits-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .categories-section {
        padding: 30px 0;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border: none;
        border-radius: 0;
        padding: 32px 24px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--text-dark) !important;
        font-size: 1.1rem;
        padding: 11px 18px;
    }

    .nav-link.nav-dropdown-toggle {
        color: var(--text-dark) !important;
        font-weight: 700;
    }
    
    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-desc {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-avatar-float {
        display: none !important; /* Hide floating avatars on mobile screen to prevent clutter */
    }
    
    .testimonial-center-card {
        padding: 24px 20px; /* Reduced vertical/horizontal padding on mobile */
    }
    
    .carousel-btn-arrow {
        display: none; /* Hide navigation arrows on mobile and rely on swipe/auto-rotation */
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .category-card-item {
        flex: 0 0 50%; /* 2 columns on mobile */
    }
    
    .faq-question {
        white-space: normal; /* Wraps FAQ text on mobile viewports */
        font-size: 1.05rem;
        padding: 15px 18px; /* Compact padding */
    }
    
    .about-media-container {
        height: 320px;
        margin-top: 30px;
    }

    .about-page-copy {
        padding-left: 22px;
    }

    .about-images-col {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: 0;
    }

    .about-feature-img,
    .about-advisor-img {
        height: 260px;
    }

    .about-advisor-frame {
        margin-top: 0;
    }
    
    .about-img-main-wrap {
        width: 240px;
        height: 240px;
    }
    
    .about-img-sub-wrap {
        width: 140px;
        height: 140px;
        left: calc(50% - 160px);
        top: 20px;
        border-width: 4px;
    }
    
    .about-accent-circle {
        width: 240px;
        height: 240px;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .about-flight-path {
        right: calc(50% - 120px);
        bottom: 20px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .benefits-grid,
    .footer-grid,
    .why-choose-grid,
    .team-grid,
    .destinations-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-page-copy {
        padding-left: 0;
    }

    .about-page-copy::before {
        display: none;
    }

    .about-highlights-row {
        flex-direction: column;
        align-items: stretch;
    }

    .about-highlight {
        justify-content: center;
        border-radius: 8px;
    }

    .about-popular-card {
        flex: 0 0 100%;
    }

    .about-popular-img-wrap {
        height: 210px;
    }

    .about-protection-features {
        grid-template-columns: 1fr;
    }
    
    .about-media-container {
        height: 280px;
    }
    
    .about-img-main-wrap {
        width: 200px;
        height: 200px;
    }
    
    .about-img-sub-wrap {
        width: 110px;
        height: 110px;
        left: calc(50% - 130px);
        top: 10px;
        border-width: 3px;
    }
    
    .about-accent-circle {
        width: 200px;
        height: 200px;
        top: 10px;
    }
    
    .about-flight-path {
        right: calc(50% - 100px);
        bottom: 10px;
        width: 50px;
        height: 50px;
    }

    .btn-admin-login {
        display: none;
    }

    .nav-login {
        display: block !important;
        color: var(--gold-primary) !important;
        font-weight: 700;
    }
}

@media (min-width: 769px) {
    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown-toggle {
        justify-content: center;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        width: min(320px, 100%);
        margin: 12px auto 0;
        background: rgba(255, 255, 255, 0.82);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(214, 168, 79, 0.35);
        box-shadow: 0 16px 36px rgba(11, 35, 65, 0.12);
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
        animation: mobileDropdownIn 0.22s ease both;
    }

    .nav-dropdown-link {
        color: var(--text-dark);
    }
}

@keyframes mobileDropdownIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Step 2wards Journey — CMS Component Styles
   ========================================================================== */
.bg-light { background: var(--bg-light); }
.bg-white { background: var(--bg-white); }
.section-tag-left { display: block; text-align: left; margin-bottom: 8px; }

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(11, 31, 58, 0.55) 0%, rgba(11, 31, 58, 0.75) 100%);
}

.page-hero.inner-hero {
    padding-top: 140px;
}

.page-hero-minimal {
    text-align: center;
}

.page-hero-minimal .inner-hero-title,
.page-hero-minimal .wb-hero-title,
.page-hero-minimal .hp-hero-title,
.page-hero-minimal .ti-hero-title {
    margin-bottom: 0;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.18;
}

.wb-hero-inner.page-hero-minimal,
.ti-hero-inner.page-hero-minimal,
.hp-hero-inner.page-hero-minimal {
    padding-bottom: 8px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 28px 20px;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-premium);
}

.service-icon {
    width: 60px; height: 60px;
    margin: 0 auto 16px;
    background: var(--gold-light);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--navy-primary);
}

.service-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.offer-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: var(--gold-primary);
}

.offer-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.offer-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.offer-category-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--navy-primary);
    color: var(--gold-primary);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 4px;
}

.offer-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-subtitle {
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-title {
    font-size: 1.15rem;
    color: var(--navy-primary);
    margin: 6px 0 10px;
}

.offer-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.offer-price {
    font-weight: 700;
    color: var(--navy-primary);
    font-size: 0.95rem;
}

.offer-duration {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.offer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.offer-inclusions {
    margin-bottom: 16px;
    padding-left: 18px;
}

.offer-inclusions li {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    list-style: disc;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.72rem;
    align-self: flex-start;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: var(--bg-white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 24px 18px;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.trust-card-icon {
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    background: var(--gold-light);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.trust-card h3 {
    font-size: 0.88rem;
    color: var(--navy-primary);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Gallery Preview */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.gallery-preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

.gallery-preview-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,31,58,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.gallery-preview-item:hover img {
    transform: scale(1.06);
}

.section-cta-wrap {
    text-align: center;
}

/* CTA Strip */
.cta-section {
    background: var(--navy-primary);
    color: #fff;
}

.cta-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-strip-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #fff;
}

.cta-strip-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta-strip-image {
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
}

.cta-strip-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Footer Trust Strip */
.footer-trust-strip {
    background: linear-gradient(135deg, rgba(201,162,39,0.12) 0%, rgba(201,162,39,0.05) 100%);
    border-bottom: 2px solid var(--gold-primary);
    padding: 32px 0;
    position: relative;
    z-index: 3;
}

.footer-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-trust-text h3 {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.footer-trust-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
}

.trust-badges-row {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.trust-badge-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid var(--gold-primary);
    border-radius: 10px;
    padding: 14px 18px;
    box-sizing: border-box;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.trust-badge-card--abta {
    min-width: 168px;
    padding: 10px 14px;
}

.trust-badge-card--atol {
    min-width: 88px;
    padding: 10px 12px;
}

.trust-badges--light .trust-badge-card {
    box-shadow: 0 10px 26px rgba(11, 35, 65, 0.12);
}

.trust-badges--light .trust-badge-card:hover {
    box-shadow: 0 14px 32px rgba(11, 35, 65, 0.16);
    transform: translateY(-2px);
}

.trust-badges--footer .trust-badge-card {
    box-shadow: none;
}

.trust-badge-img {
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.trust-badge-img.abta-badge {
    height: 58px;
    width: auto;
    max-width: 168px;
}

.trust-badge-img.atol-badge {
    height: 58px;
    width: auto;
    max-width: 78px;
}

.trust-badge-numbers {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
    font-size: 0.85rem;
}

.trust-badge-numbers strong {
    color: var(--gold-primary);
}

.footer-trust-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-logo-link {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
    display: inline-block;
    margin-bottom: 4px;
}

.footer-logo-img {
    height: 96px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 6px;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0 2px 8px rgba(214, 168, 79, 0.22));
}

.footer-confidence p {
    color: rgba(255,255,255,0.75);
    font-size: 0.86rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.footer-brand-badges {
    margin: 8px 0 14px;
}

.footer-brand-badges .trust-badges-row {
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-brand-badges .trust-badge-item {
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
}

.footer-brand-badges .trust-badge-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-align: center;
    margin-top: 8px;
    line-height: 1.3;
    white-space: nowrap;
}

.footer-brand-badges .trust-badge-label-abta,
.footer-brand-badges .trust-badge-label-atol {
    color: var(--gold-primary);
}

.footer-brand-badges .trust-badge-card {
    padding: 7px 10px;
    border-radius: 8px;
    border-width: 1.5px;
}

.footer-brand-badges .trust-badge-card--abta {
    min-width: 0;
    padding: 7px 11px;
}

.footer-brand-badges .trust-badge-card--atol {
    min-width: 0;
    padding: 7px 9px;
}

.footer-brand-badges .trust-badge-img.abta-badge {
    height: 46px;
    max-width: 138px;
}

.footer-brand-badges .trust-badge-img.atol-badge {
    height: 46px;
    max-width: 62px;
}

.footer-brand-badges .trust-badge-numbers {
    display: none;
}

.footer-inspiration p {
    color: rgba(255,255,255,0.75);
    font-size: 0.86rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-inspiration-list li {
    margin-bottom: 11px;
}

.footer-inspiration-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #9CA3AF;
    transition: var(--transition-fast);
}

.footer-inspiration-list a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-inspiration-list i {
    color: var(--gold-primary);
    width: 16px;
    text-align: center;
}

.footer-bottom-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
}

.footer-dev-credit {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
}

.footer-confidence .footer-trust-badges {
    align-items: flex-start;
}

.footer-confidence .trust-badges-row {
    gap: 14px;
}

.footer-confidence .trust-badge-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.footer-confidence .trust-badge-img {
    height: 52px;
    max-width: 132px;
}

.footer-confidence .trust-badge-numbers {
    color: rgba(255,255,255,0.82);
}

.footer-contact-list a {
    color: #9CA3AF;
}

.footer-contact-list a:hover {
    color: var(--gold-primary);
}

.footer-services-list li {
    font-size: 0.85rem;
    color: #9CA3AF;
    margin-bottom: 10px;
}

.footer-legal-block {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    margin-top: 10px;
}

.footer-legal-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-legal-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.footer-bottom-simple {
    justify-content: center;
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-simple .footer-bottom-copy {
    width: 100%;
    font-size: 1.1rem;
}

.footer-bottom-simple .footer-dev-credit {
    font-size: 1.04rem;
    color: rgba(255, 255, 255, 0.78);
}

/* About page extras */
.about-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 64px;
    align-items: center;
}

.about-page-copy {
    position: relative;
    padding: 38px 0 38px 34px;
}

.about-page-copy::before {
    content: '';
    position: absolute;
    left: 0;
    top: 42px;
    bottom: 42px;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-primary), rgba(201, 162, 39, 0.08));
}

.about-page-copy .about-desc {
    max-width: 600px;
    color: #596273;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-highlights-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.about-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    background: var(--bg-white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 999px;
    color: var(--navy-primary);
    font-size: 0.76rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    transition-delay: var(--pill-delay, 0s);
}

.about-highlights-row.is-visible .about-highlight {
    opacity: 1;
    transform: translateY(0);
}

.about-highlights-row .about-highlight:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 28px rgba(214, 168, 79, 0.22);
}

.about-highlight i {
    color: var(--gold-primary);
    transition: transform 0.35s ease;
}

.about-highlights-row.is-visible .about-highlight:hover i {
    transform: scale(1.12);
}

.about-images-col {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 18px;
    align-items: center;
    min-height: 360px;
}

.about-feature-frame,
.about-advisor-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 24px 55px rgba(11, 31, 58, 0.11);
    border: 1px solid rgba(201, 162, 39, 0.24);
}

.about-feature-frame::after,
.about-advisor-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 31, 58, 0.18), transparent 48%);
    pointer-events: none;
}

.about-feature-img,
.about-advisor-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.about-advisor-frame {
    margin-top: 58px;
}

.about-advisor-img {
    height: 260px;
}

.about-popular-strip {
    padding: 32px 0 38px;
    background: var(--navy-primary);
    color: #fff;
}

.about-popular-title {
    color: #fff;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.about-popular-carousel {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 16px;
}

.about-popular-viewport {
    overflow: hidden;
}

.about-popular-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.about-popular-card {
    flex: 0 0 20%;
    padding: 0 8px;
    text-align: center;
}

.about-popular-img-wrap {
    height: 178px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.about-popular-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.about-popular-card:hover .about-popular-img-wrap img {
    transform: scale(1.09);
}

.about-popular-card h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-top: 12px;
}

.about-popular-strip .carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.about-popular-strip .carousel-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.about-popular-dots {
    margin-top: 10px;
}

.about-trust-badges-wrap {
    margin: 28px auto 36px;
    max-width: 720px;
    text-align: center;
}

.about-trust-badges-wrap .trust-badges-row {
    justify-content: center;
    align-items: flex-start;
}

.about-trust-badges-wrap .trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.about-trust-badges-wrap .trust-badge-label {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--navy-primary);
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.35;
}

.about-trust-badges-wrap .trust-badge-label-abta,
.about-trust-badges-wrap .trust-badge-label-atol {
    color: var(--gold-primary);
}

.about-protection-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.88fr);
    gap: 56px;
    align-items: center;
    padding: 38px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.08);
}

.about-protection-copy .section-title,
.about-protection-copy .section-desc {
    text-align: center;
}

.about-protection-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.about-protection-feature {
    text-align: left;
    padding: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(201, 162, 39, 0.14);
    border-radius: 8px;
}

.about-protection-feature h3 {
    color: var(--navy-primary);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 8px;
}

.about-protection-feature p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.65;
}

.about-protection-icon {
    width: 46px;
    height: 46px;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--gold-primary);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(11, 31, 58, 0.08);
    font-size: 1.2rem;
}

.about-protection-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.16);
    border: 1px solid rgba(201, 162, 39, 0.24);
}

.about-protection-media img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.about-protection-media figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 42px 28px 72px;
    background: var(--navy-primary);
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-protection-media figcaption i {
    position: absolute;
    left: 36px;
    top: 30px;
    color: var(--gold-primary);
    font-size: 1.6rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-primary);
}

.support-icon {
    width: 52px; height: 52px;
    margin: 0 auto 14px;
    background: var(--gold-light);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.support-card h3 {
    font-size: 0.95rem;
    color: var(--navy-primary);
    margin-bottom: 8px;
}

.support-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.about-cta-section {
    padding: 56px 0 72px;
    background: var(--site-bg);
    text-align: center;
}

.about-cta-inner {
    background: #fff;
    border: 1px solid rgba(214, 168, 79, 0.28);
    border-radius: 16px;
    padding: 48px 32px;
    box-shadow: 0 24px 60px rgba(11, 35, 65, 0.08);
    max-width: 880px;
    margin: 0 auto;
}

.about-cta-inner h2 {
    color: var(--navy-primary);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    margin-bottom: 22px;
    line-height: 1.35;
}

/* Destination cards */
.destination-card-full {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.destination-card-full:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-premium);
}

.destination-card-full .dest-img-box {
    height: 220px;
    position: relative;
}

.destination-card-full .dest-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.dest-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--gold-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.dest-card-body {
    padding: 20px;
}

.dest-country {
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dest-title {
    font-size: 1.1rem;
    color: var(--navy-primary);
    margin: 6px 0 10px;
}

/* Gallery extras */
.gallery-item-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(11,31,58,0.85));
    color: #fff;
    padding: 20px 14px 12px;
    font-size: 0.82rem;
    font-weight: 600;
}

.gallery-video-item video {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Contact trust strip */
.contact-trust-strip {
    background: linear-gradient(180deg, #f7f4ee 0%, #faf8f3 100%);
    padding: 48px 0 52px;
    border-top: 1px solid rgba(214, 168, 79, 0.18);
}

.contact-trust-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.contact-trust-copy {
    max-width: 680px;
}

.contact-trust-copy h3 {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-trust-copy p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.contact-trust-badges-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-trust-badges-wrap .trust-badges-split {
    justify-content: center;
    gap: 18px;
}

.contact-trust-badges-wrap .trust-badge-item {
    gap: 0;
}

.contact-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-trust-text h3 {
    color: var(--navy-primary);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.contact-trust-text p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.contact-form-heading {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.contact-form-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.contact-note {
    font-size: 0.78rem;
    color: var(--gold-primary);
    font-style: italic;
}

.contact-info-desc a {
    color: var(--navy-primary);
    font-weight: 600;
}

.contact-info-desc a:hover {
    color: var(--gold-primary);
}

/* Category page */
.category-page-section {
    background: var(--site-bg);
}

.category-feature-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 62px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 8px;
    box-shadow: 0 26px 68px rgba(11, 31, 58, 0.08);
}

.category-feature-copy p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.category-feature-media {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.14);
}

.category-feature-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.category-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.category-page-card {
    background: var(--bg-white);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.06);
    transition: var(--transition-fast);
}

.category-page-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.11);
}

.category-page-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.category-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-page-card:hover .category-page-img img {
    transform: scale(1.05);
}

.category-page-icon {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--gold-primary);
    box-shadow: 0 10px 26px rgba(11, 31, 58, 0.16);
}

.category-page-body {
    padding: 20px 18px 22px;
}

.category-page-body h3 {
    color: var(--navy-primary);
    font-size: 1rem;
    margin-bottom: 10px;
}

.category-page-body p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.62;
    min-height: 78px;
    margin-bottom: 16px;
}

/* Explore UK page */
.explore-uk-section {
    background: var(--site-bg);
}

.explore-uk-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 42px;
    align-items: center;
    margin-bottom: 62px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    box-shadow: 0 26px 68px rgba(11, 31, 58, 0.08);
}

.explore-uk-copy p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.82;
    margin-bottom: 24px;
}

.explore-uk-media {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.14);
}

.explore-uk-media img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.explore-uk-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.uk-highlight-card {
    background: var(--bg-white);
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.06);
    transition: var(--transition-fast);
}

.uk-highlight-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.11);
}

.uk-highlight-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.uk-highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.uk-highlight-card:hover .uk-highlight-img img {
    transform: scale(1.05);
}

.uk-highlight-img span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--gold-primary);
    box-shadow: 0 10px 26px rgba(11, 31, 58, 0.16);
}

.uk-highlight-body {
    padding: 21px 19px 23px;
}

.uk-highlight-body h3 {
    color: var(--navy-primary);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.uk-highlight-body p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.68;
    min-height: 96px;
    margin-bottom: 18px;
}

.uk-ideas-gallery {
    margin-top: 68px;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 8px;
}

.uk-ideas-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 22px;
}

.uk-ideas-heading h2 {
    color: var(--navy-primary);
    font-size: 1.65rem;
}

.uk-ideas-heading p {
    max-width: 430px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.uk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.uk-gallery-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    margin: 0;
}

.uk-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.uk-gallery-card:hover img {
    transform: scale(1.06);
}

.uk-gallery-card figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 9px 10px;
    background: rgba(11, 31, 58, 0.84);
    color: #fff;
    border-radius: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.uk-planner-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    padding: 34px;
    background: var(--navy-primary);
    color: #fff;
    border-radius: 8px;
    border-bottom: 3px solid var(--gold-primary);
}

.uk-planner-panel h2 {
    color: var(--gold-primary);
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.uk-planner-panel p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 790px;
    line-height: 1.72;
}

.uk-planner-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
    padding: 0;
    list-style: none;
}

.uk-planner-points li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.83rem;
    line-height: 1.55;
}

.uk-planner-points i {
    color: var(--gold-primary);
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-strip-inner { grid-template-columns: 1fr; }
    .cta-strip-image { height: 220px; }
    .footer-grid-three {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid-three .footer-brand {
        grid-column: 1 / -1;
    }

    #why-choose-section .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-protection-layout {
        grid-template-columns: 1fr;
    }

    .about-protection-media {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .about-protection-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-trust-inner { flex-direction: column; text-align: center; }
    .footer-trust-badges { align-items: center; }
    .about-page-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-page-copy { padding-top: 20px; padding-bottom: 20px; }
    .about-images-col { max-width: 760px; width: 100%; margin: 0 auto; }
    .about-popular-card { flex: 0 0 calc(100% / 3); }
    .about-popular-img-wrap { height: 160px; }
}

@media (max-width: 768px) {
    .offers-grid { grid-template-columns: 1fr; }
    .support-grid { grid-template-columns: 1fr; }
    .about-images-col { grid-template-columns: 1fr; }
    .about-advisor-img { margin-top: 0; }
    .about-page-copy { padding-left: 22px; }
    .about-feature-img,
    .about-advisor-img { height: 260px; }
    .about-advisor-frame { margin-top: 0; }
    .about-popular-card { flex: 0 0 50%; }
    .about-popular-carousel { grid-template-columns: 30px minmax(0, 1fr) 30px; gap: 6px; }
    .about-popular-img-wrap { height: 140px; }
    .about-protection-layout { padding: 24px 18px; }
    .about-protection-media img { min-height: 340px; }
    .about-protection-media figcaption { padding: 22px 24px 22px 56px; }
    .about-protection-media figcaption i { left: 24px; top: 24px; }
    .about-protection-features { grid-template-columns: repeat(2, 1fr); }
    #why-choose-section .why-choose-grid { grid-template-columns: 1fr; }
    .trust-badge-img.abta-badge {
        height: 50px;
        max-width: 148px;
    }

    .trust-badge-img.atol-badge {
        height: 50px;
        max-width: 70px;
    }

    .trust-badge-card--abta {
        min-width: 150px;
        padding: 8px 12px;
    }

    .trust-badge-card--atol {
        min-width: 80px;
        padding: 8px 10px;
    }

    .footer-brand-badges .trust-badges-row {
        flex-wrap: wrap;
    }

    .footer-brand-badges .trust-badge-img.abta-badge {
        height: 42px;
        max-width: 124px;
    }

    .footer-brand-badges .trust-badge-img.atol-badge {
        height: 42px;
        max-width: 56px;
    }

    .footer-logo-img {
        height: 84px;
        max-width: 190px;
    }
    .header-actions .btn-admin-login { display: none; }
    .nav-login { display: block !important; }
}

.inner-hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    max-width: 680px;
    margin: 0 auto 12px;
    line-height: 1.6;
    font-weight: 400;
}

/* Why Book With Us — Mockup Layout */
.wb-page-body {
    background: #eef1f5;
}

.wb-hero.inner-hero {
    padding: 170px 0 140px;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.wb-hero.inner-hero::before {
    background: linear-gradient(to bottom, rgba(11, 35, 65, 0.35) 0%, rgba(11, 35, 65, 0.78) 100%);
}

.wb-hero-inner { max-width: 860px; }

.wb-hero-tag {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wb-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.wb-hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 16px;
}

.wb-hero-breadcrumb {
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: var(--gold-primary);
}

.wb-section {
    padding: 0 0 48px;
    position: relative;
}

.wb-before-section {
    margin-top: 0;
    z-index: 5;
    padding-top: 56px;
    padding-bottom: 56px;
}

.wb-testimonials-section {
    padding: 72px 0 88px;
    background: #eef1f5;
}

.wb-panel {
    border-radius: 24px;
    padding: 48px 44px;
    box-shadow: 0 24px 60px rgba(11, 35, 65, 0.1);
}

.wb-panel-white {
    background: #ffffff;
    border: 1px solid rgba(214, 168, 79, 0.12);
}

.wb-panel-muted {
    background: #f4f6f9;
    border: 1px solid rgba(11, 35, 65, 0.06);
}

.wb-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.wb-section-label-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(214, 168, 79, 0.14);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.wb-before-layout,
.wb-during-layout,
.wb-after-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.18fr);
    gap: 56px;
    align-items: center;
}

.wb-during-layout { align-items: start; }

.wb-section-title {
    color: var(--navy-primary);
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    line-height: 1.22;
    margin-bottom: 16px;
}

.wb-section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 480px;
}

.wb-btn-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 32px;
}

.wb-btn-row .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wb-btn-outline {
    border: 2px solid var(--navy-primary) !important;
    color: var(--navy-primary) !important;
    background: #fff !important;
}

.wb-btn-outline:hover {
    background: var(--navy-primary) !important;
    color: #fff !important;
    border-color: var(--navy-primary) !important;
}

.wb-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.wb-feature-card {
    background: #fff;
    border: 1px solid rgba(214, 168, 79, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 35, 65, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.wb-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11, 35, 65, 0.11);
}

.wb-feature-card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wb-feature-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.wb-feature-card:hover .wb-feature-card-media img { transform: scale(1.05); }

.wb-feature-icon {
    position: absolute;
    bottom: -20px;
    left: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(214, 168, 79, 0.45);
    z-index: 2;
}

.wb-feature-card-body {
    padding: 32px 20px 22px;
}

.wb-feature-card-body h3 {
    color: var(--navy-primary);
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.wb-feature-card-body p {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.65;
    margin: 0;
}

.wb-service-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wb-service-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.wb-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.wb-service-point-text strong {
    display: block;
    color: var(--navy-primary);
    font-size: 0.96rem;
    margin-bottom: 3px;
}

.wb-service-point-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.wb-during-photos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wb-during-photo {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(11, 35, 65, 0.14);
}

.wb-during-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.wb-during-overlay {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    max-width: 340px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(11, 35, 65, 0.88);
    border-radius: 12px;
    color: #fff;
}

.wb-during-overlay-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-primary);
}

.wb-during-overlay strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 3px;
}

.wb-during-overlay p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    opacity: 0.88;
}

.wb-after-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.wb-after-card {
    background: #fff;
    border: 1px solid rgba(214, 168, 79, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 35, 65, 0.06);
    transition: transform 0.28s ease;
}

.wb-after-card:hover { transform: translateY(-4px); }

.wb-after-card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.wb-after-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wb-after-card-icon {
    position: absolute;
    bottom: -18px;
    left: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 6px 14px rgba(214, 168, 79, 0.4);
    z-index: 2;
}

.wb-after-card-body {
    padding: 30px 20px 22px;
}

.wb-after-card-body h3 {
    color: var(--navy-primary);
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.wb-after-card-body p {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.65;
    margin: 0;
}

.wb-testimonials-wrap { max-width: 1180px; }

.wb-testimonials-heading { margin-bottom: 8px; }

.wb-testimonials-sub {
    color: var(--text-muted);
    font-size: 0.96rem;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.wb-testimonials-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.wb-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(214, 168, 79, 0.45);
    background: #fff;
    color: var(--navy-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s ease, color 0.22s ease;
    flex-shrink: 0;
}

.wb-carousel-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #fff;
}

.wb-testimonials-track {
    overflow: hidden;
    padding: 8px 4px 16px;
}

.wb-testimonials-slides {
    display: flex;
    gap: 22px;
    will-change: transform;
}

.wb-testimonial-card {
    flex: 0 0 auto;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(214, 168, 79, 0.18);
    border-radius: 18px;
    padding: 32px 24px 28px;
    box-shadow: 0 12px 32px rgba(11, 35, 65, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    position: relative;
}

.wb-testimonial-quote {
    position: absolute;
    top: 14px;
    right: 16px;
    color: rgba(214, 168, 79, 0.2);
    font-size: 2rem;
}

.wb-testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
}

.wb-testimonial-stars {
    color: var(--gold-primary);
    font-size: 0.82rem;
    letter-spacing: 2px;
}

.wb-testimonial-stars .dim { opacity: 0.25; }

.wb-testimonial-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    font-style: italic;
}

.wb-testimonial-meta strong {
    display: block;
    color: var(--navy-primary);
    font-size: 0.92rem;
}

.wb-testimonial-meta span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 2px;
}

.wb-cta-section {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    background-color: var(--navy-primary);
    overflow: hidden;
}

.js-parallax-section {
    position: relative;
    overflow: hidden;
}

.js-parallax-bg {
    position: absolute;
    inset: -40% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    pointer-events: none;
    z-index: 0;
    transform: translate3d(0, 0, 0) scale(1.38);
}

.js-parallax-map {
    position: absolute;
    inset: -15% 0;
    background-size: min(920px, 90%) auto;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.14;
    will-change: transform;
    pointer-events: none;
    z-index: 0;
}

.wb-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 35, 65, 0.72) 0%, rgba(11, 35, 65, 0.58) 100%);
    z-index: 1;
}

.wb-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 96px 20px;
    max-width: 760px;
}

.wb-cta-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.wb-cta-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.06rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.wb-cta-btn {
    padding: 16px 38px !important;
    font-size: 0.92rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    gap: 10px;
}

@media (max-width: 1100px) {
    .wb-testimonial-card { flex: 0 0 calc(50% - 11px); }
}

@media (max-width: 992px) {
    .wb-before-layout,
    .wb-during-layout,
    .wb-after-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .wb-panel { padding: 36px 28px; }

    .wb-before-section { margin-top: 0; padding-top: 40px; }

    .wb-during-photo img { height: 220px; }
}

@media (max-width: 640px) {
    .wb-hero.inner-hero {
        padding: 130px 0 100px;
        min-height: 440px;
    }

    .wb-before-section { margin-top: 0; padding-top: 32px; }

    .wb-panel { padding: 28px 20px; border-radius: 18px; }

    .wb-feature-grid,
    .wb-after-cards { grid-template-columns: 1fr; }

    .wb-testimonial-card {
        flex: 0 0 88%;
        min-width: 0;
    }

    .wb-btn-row .btn { max-width: 100%; }

    .wb-carousel-btn { display: none; }

    .wb-testimonials-carousel { grid-template-columns: 1fr; }

    .wb-cta-section { min-height: 380px; }

    .wb-cta-inner { padding: 72px 20px; }
}

/* Why Us — Premium Offers Grid */
.why-us-promise-section {
    background: var(--site-bg);
}

.why-promise-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 44px;
    align-items: start;
}

.why-promise-lead {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.75;
    max-width: 620px;
    margin-top: 12px;
}

.why-promise-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.why-promise-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(214, 168, 79, 0.2);
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(11, 35, 65, 0.05);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-promise-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-primary);
    flex-shrink: 0;
}

.why-promise-row:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 12px 28px rgba(11, 35, 65, 0.08);
}

.why-promise-row .why-promise-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.why-promise-row-text h3 {
    color: var(--navy-primary);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.why-promise-row-text p {
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.why-promise-layout .why-promise-media {
    position: sticky;
    top: 110px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.12);
    border: 1px solid rgba(214, 168, 79, 0.22);
}

.why-promise-layout .why-promise-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.why-us-testimonial-stage {
    position: relative;
    max-width: 720px;
    margin: 36px auto 0;
    min-height: 380px;
}

.testimonial-avatars-ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.testimonial-avatars-ring .testimonial-avatar-float {
    pointer-events: auto;
    border: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
}

.travel-stage-points li span {
    flex: 1;
}

.travel-stage-points li {
    align-items: flex-start;
}

.why-us-offers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.why-us-offer-card {
    background: var(--bg-white);
    border: 1px solid rgba(11, 31, 58, 0.09);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.06);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.why-us-offer-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 24px 58px rgba(11, 31, 58, 0.11);
}

.why-us-offer-img {
    position: relative;
    aspect-ratio: 16 / 10;
    height: auto;
    overflow: hidden;
    background: var(--bg-light);
}

.why-us-offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.why-us-offer-card:hover .why-us-offer-img img {
    transform: scale(1.05);
}

.why-us-offer-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,31,58,0.02), rgba(11,31,58,0.15));
    pointer-events: none;
}

.why-us-offer-body {
    padding: 18px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-us-offer-body h3 {
    font-size: 1rem;
    color: var(--navy-primary);
    margin-bottom: 8px;
    line-height: 1.38;
    min-height: 2.76em;
}

.why-us-offer-price {
    display: block;
    font-weight: 700;
    color: var(--gold-primary);
    font-size: 0.86rem;
    margin-bottom: 3px;
}

.why-us-offer-details {
    display: block;
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    min-height: 1.2em;
}

.why-us-offer-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.58;
    margin-bottom: 18px;
    flex: 1;
}

.why-us-offer-body .btn {
    width: fit-content;
    min-width: 138px;
}

.why-offer-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.why-offer-card-launching {
    transform: scale(1.03);
    box-shadow: 0 28px 70px rgba(11, 31, 58, 0.18);
    z-index: 2;
    position: relative;
}

body.offer-gallery-open {
    overflow: hidden;
}

.offer-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.offer-gallery-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.offer-gallery-modal.is-visible {
    opacity: 1;
}

.offer-gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.offer-gallery-modal.is-visible .offer-gallery-backdrop {
    opacity: 1;
}

.offer-gallery-dialog {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100vh - 48px);
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 162, 39, 0.22);
    transform: scale(0.88) translateY(24px);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.offer-gallery-modal.is-visible .offer-gallery-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.offer-gallery-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(11, 31, 58, 0.18);
    transition: var(--transition-smooth);
}

.offer-gallery-close:hover {
    background: var(--gold-primary);
    color: #fff;
    transform: rotate(90deg);
}

.offer-gallery-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    min-height: 520px;
}

.offer-gallery-main {
    position: relative;
    background: #0f2238;
    padding: 28px 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-gallery-stage {
    position: relative;
    flex: 1;
    min-height: 360px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.offer-gallery-stage img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: opacity 0.28s ease, transform 0.45s ease;
}

.offer-gallery-stage img.is-changing {
    opacity: 0;
    transform: scale(1.04);
}

.offer-gallery-counter {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 31, 58, 0.72);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    transition: var(--transition-smooth);
    z-index: 3;
}

.offer-gallery-nav.prev { left: 42px; }
.offer-gallery-nav.next { right: 42px; }

.offer-gallery-nav:hover {
    background: var(--gold-primary);
    color: #fff;
}

.offer-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.offer-gallery-thumb {
    flex: 0 0 84px;
    height: 62px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.offer-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-gallery-thumb.active,
.offer-gallery-thumb:hover {
    opacity: 1;
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.offer-gallery-info {
    padding: 34px 30px 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.offer-gallery-info h2 {
    color: var(--navy-primary);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1.25;
    margin: 10px 0 14px;
}

.offer-gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.offer-gallery-price {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.12);
    color: var(--navy-primary);
    font-size: 0.82rem;
    font-weight: 700;
}

.offer-gallery-details {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(11, 31, 58, 0.06);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.offer-gallery-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.72;
    margin-bottom: 18px;
}

.offer-gallery-highlights {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-gallery-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.84rem;
    color: var(--navy-primary);
}

.offer-gallery-highlights i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-gallery-actions {
    margin-top: auto;
    padding-top: 8px;
}

.offer-gallery-actions .btn {
    min-width: 180px;
}

@media (max-width: 900px) {
    .offer-gallery-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .offer-gallery-main {
        padding: 22px 18px 16px;
    }

    .offer-gallery-stage,
    .offer-gallery-stage img {
        min-height: 280px;
    }

    .offer-gallery-nav.prev { left: 24px; }
    .offer-gallery-nav.next { right: 24px; }

    .offer-gallery-info {
        padding: 24px 20px 26px;
    }
}

@media (max-width: 576px) {
    .offer-gallery-modal {
        padding: 12px;
    }

    .offer-gallery-dialog {
        max-height: calc(100vh - 24px);
    }

    .offer-gallery-stage,
    .offer-gallery-stage img {
        min-height: 220px;
    }

    .offer-gallery-nav {
        width: 38px;
        height: 38px;
    }

    .offer-gallery-nav.prev { left: 14px; }
    .offer-gallery-nav.next { right: 14px; }
}

/* Why Us floating testimonials */
.why-us-floating-testimonials {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.testimonials-map-watermark {
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 243, 0.92);
    pointer-events: none;
}

.why-us-floating-testimonials .testimonials-container {
    position: relative;
    z-index: 2;
}

.why-us-floating-testimonials .testimonial-center-card {
    transition: opacity 0.3s ease;
}

.testimonial-rating .fa-star.dim {
    opacity: 0.25;
}

/* Review slider cards */
.review-slider-section {
    background: var(--bg-white);
    padding-top: 50px;
    padding-bottom: 50px;
}

.review-carousel-wrap .review-card-item {
    flex: 0 0 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}

.review-card-item {
    background: var(--bg-white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.review-card-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 2px solid var(--gold-primary);
}

.review-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card-rating {
    color: var(--gold-primary);
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.review-card-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    font-style: italic;
    margin-bottom: 12px;
    min-height: 60px;
}

.review-card-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: var(--navy-primary);
    margin-bottom: 2px;
}

.review-card-type {
    font-size: 0.68rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (min-width: 1400px) {
    .why-us-offers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .why-us-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-carousel-wrap .review-card-item {
        flex: 0 0 50%;
    }
    .why-promise-layout,
    .destinations-intro-panel,
    .contact-intro-panel,
    .category-feature-panel,
    .explore-uk-intro,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .why-promise-layout {
        grid-template-columns: 1fr;
    }

    .why-promise-layout .why-promise-media {
        position: static;
        order: -1;
    }

    .why-promise-layout .why-promise-media img {
        height: 280px;
    }

    .why-promise-cards,
    .contact-trust-grid {
        grid-template-columns: 1fr;
    }
    .category-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .explore-uk-highlights,
    .uk-gallery-grid,
    .uk-planner-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .uk-planner-panel,
    .uk-ideas-heading {
        grid-template-columns: 1fr;
        display: grid;
    }
}

@media (max-width: 576px) {
    .inner-hero {
        padding: 105px 0 58px;
    }
    .inner-hero-title {
        font-size: 2.08rem;
        line-height: 1.18;
    }
    .inner-hero-subtitle {
        font-size: 0.86rem;
    }
    .about-page-copy {
        padding-left: 0;
    }
    .about-page-copy::before {
        display: none;
    }
    .about-highlights-row {
        flex-direction: column;
        align-items: stretch;
    }
    .about-highlight {
        justify-content: center;
        border-radius: 8px;
    }
    .why-us-offers-grid {
        grid-template-columns: 1fr;
    }
    .destinations-intro-media img,
    .why-promise-media img,
    .contact-intro-media img {
        height: 240px;
    }
    .destinations-stats-row {
        grid-template-columns: 1fr;
    }
    .travel-stages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-promise-layout .why-promise-media img {
        height: 240px;
    }

    .why-promise-panel {
        padding: 22px;
    }
    .contact-direct-actions {
        grid-template-columns: 1fr;
    }
    .category-feature-panel {
        padding: 22px;
    }
    .explore-uk-intro,
    .uk-ideas-gallery,
    .uk-planner-panel {
        padding: 22px;
    }
    .category-page-grid {
        grid-template-columns: 1fr;
    }
    .category-feature-media img,
    .explore-uk-media img {
        height: 250px;
    }
    .explore-uk-highlights,
    .uk-gallery-grid,
    .uk-planner-points {
        grid-template-columns: 1fr;
    }
    .uk-highlight-body p {
        min-height: 0;
    }
    .review-carousel-wrap .review-card-item {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   Premium Enhancements v2.6 — Logo badge, trust labels, gallery, booking
   ========================================================================== */

.logo-badge-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(11, 35, 65, 0.12);
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo-badge-wrap:hover {
    box-shadow: 0 10px 28px rgba(11, 35, 65, 0.16);
}

.logo-badge-wrap .logo-img,
.logo-badge-wrap .footer-logo-img {
    height: 52px;
    width: auto;
    max-width: 168px;
    object-fit: contain;
    filter: none;
}

.footer-logo-badge {
    margin-bottom: 14px;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Never add background/card behind company logo */
header .logo-img-link,
header .logo-img,
footer .footer-logo-link,
footer .footer-logo-img {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.trust-badges-split {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.trust-badge-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-primary);
    text-align: center;
    line-height: 1.4;
}

.trust-badge-label-abta,
.trust-badge-label-atol {
    color: var(--gold-primary);
}

.contact-trust-inner .trust-badges-split {
    justify-content: center;
}

.contact-trust-badges-wrap .trust-badge-img.abta-badge {
    height: 54px;
    max-width: 158px;
}

.contact-trust-badges-wrap .trust-badge-img.atol-badge {
    height: 54px;
    max-width: 72px;
}

.contact-trust-badges-wrap .trust-badge-card--abta {
    min-width: 0;
    padding: 10px 14px;
}

.contact-trust-badges-wrap .trust-badge-card--atol {
    min-width: 0;
    padding: 10px 12px;
}

/* Travel stages — Why Us */
.travel-stages-section {
    background: var(--site-bg);
}

.travel-stages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.travel-stage-card {
    background: #fff;
    border: 1px solid rgba(214, 168, 79, 0.18);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(11, 35, 65, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.travel-stage-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 26px 58px rgba(11, 35, 65, 0.12);
}

.travel-stage-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.travel-stage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.travel-stage-card:hover .travel-stage-image img {
    transform: scale(1.06);
}

.travel-stage-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(214, 168, 79, 0.35);
}

.travel-stage-body {
    padding: 22px 20px 24px;
}

.travel-stage-body h3 {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.travel-stage-summary {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.6;
}

.travel-stage-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.travel-stage-points li {
    font-size: 0.8rem;
    color: var(--navy-primary);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.travel-stage-points li i {
    color: var(--gold-primary);
    margin-top: 3px;
    font-size: 0.72rem;
}

/* Gallery page filters & lightbox */
.gallery-filters-section {
    padding: 8px 0 24px;
    background: var(--site-bg);
    position: sticky;
    top: 75px;
    z-index: 90;
}

.gallery-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(214, 168, 79, 0.2);
    border-radius: 999px;
    box-shadow: 0 12px 36px rgba(11, 35, 65, 0.06);
}

.gallery-pill-btn {
    border: 1.5px solid rgba(11, 35, 65, 0.12);
    background: #fff;
    color: var(--navy-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-pill-btn:hover,
.gallery-pill-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(214, 168, 79, 0.28);
}

.gallery-grid-section .gallery-grid {
    transition: opacity 0.28s ease;
}

.gallery-empty-msg {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 35, 65, 0.88);
}

.gallery-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: min(920px, 92vw);
    width: 100%;
    padding: 0 56px;
}

.gallery-lightbox-content img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy-primary);
    cursor: pointer;
    z-index: 3;
}

.gallery-lightbox-nav.prev { left: 0; }
.gallery-lightbox-nav.next { right: 0; }

.gallery-lightbox-caption {
    text-align: center;
    color: #fff;
    margin-top: 14px;
    font-size: 0.9rem;
}

body.gallery-lightbox-open,
body.booking-modal-open,
body.offer-gallery-open {
    overflow: hidden;
}

/* Booking enquiry modal */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.booking-modal.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.booking-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 35, 65, 0.72);
}

.booking-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 28px 70px rgba(11, 35, 65, 0.22);
}

.booking-modal-dialog h2 {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.booking-modal-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.booking-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(11, 35, 65, 0.06);
    color: var(--navy-primary);
    cursor: pointer;
}

.booking-success-message {
    background: rgba(214, 168, 79, 0.12);
    border: 1px solid rgba(214, 168, 79, 0.35);
    color: var(--navy-primary);
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.offer-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
}

.offer-card-actions .btn-text {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gold-primary);
}

@media (max-width: 1024px) {
    .travel-stages-grid {
        grid-template-columns: 1fr;
    }
    .gallery-filters-section {
        top: 78px;
    }
    .gallery-filter-pills {
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .gallery-lightbox-content {
        padding: 0 40px;
    }
    .booking-modal-dialog {
        padding: 26px 20px;
    }
}

/* Why Us — Featured testimonial (map + avatars) */
.why-featured-testimonial-section {
    position: relative;
    background-color: var(--site-bg);
    background-size: min(920px, 88vw) auto;
    background-position: center 58%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.why-featured-map-watermark {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15), rgba(248,246,241,0.92));
    pointer-events: none;
}

.why-featured-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.why-featured-stage {
    position: relative;
    max-width: 820px;
    margin: 36px auto 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-featured-corner-ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.why-featured-corner-avatar {
    position: absolute;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 10px 24px rgba(11, 35, 65, 0.12);
    padding: 0;
    background: #fff;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-featured-corner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-featured-corner-avatar.active,
.why-featured-top-avatar.active {
    border-color: var(--gold-primary);
    box-shadow: 0 12px 28px rgba(214, 168, 79, 0.35);
}

.why-featured-corner-1 { top: 8%; left: 8%; }
.why-featured-corner-2 { top: 8%; right: 8%; }
.why-featured-corner-3 { bottom: 10%; left: 10%; }
.why-featured-corner-4 { bottom: 10%; right: 10%; }

.why-featured-center {
    max-width: 620px;
    padding: 0 70px;
}

.why-featured-subtitle {
    max-width: 520px;
    margin: 8px auto 0;
}

.why-featured-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    box-shadow: 0 18px 48px rgba(11, 35, 65, 0.1);
    border: 1px solid rgba(214, 168, 79, 0.14);
}

.why-featured-quote-icon {
    display: block;
    color: var(--gold-primary);
    font-size: 1.6rem;
    margin-bottom: 18px;
    opacity: 0.85;
}

.why-featured-top-avatars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 24px;
}

.why-featured-top-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(11, 35, 65, 0.1);
    padding: 0;
    background: #fff;
    cursor: pointer;
    transition: transform 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.why-featured-top-avatar.active {
    width: 88px;
    height: 88px;
}

.why-featured-top-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-featured-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.why-featured-rating {
    color: var(--gold-primary);
    font-size: 0.82rem;
    margin-bottom: 14px;
}

.why-featured-rating .fa-star.dim {
    opacity: 0.25;
}

.why-featured-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy-primary);
    margin: 0 0 4px;
}

.why-featured-role {
    color: var(--gold-primary);
    font-size: 0.88rem;
    font-weight: 600;
}

.why-featured-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(214, 168, 79, 0.35);
    background: #fff;
    color: var(--gold-primary);
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(11, 35, 65, 0.08);
}

.why-featured-nav-prev { left: 0; }
.why-featured-nav-next { right: 0; }

/* Why Us — Testimonials grid */
.why-testimonials-grid-section {
    background: var(--bg-light);
}

.why-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.why-testimonial-grid-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px 22px;
    box-shadow: 0 14px 36px rgba(11, 35, 65, 0.07);
    border: 1px solid rgba(214, 168, 79, 0.12);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.why-grid-card-stars {
    color: var(--gold-primary);
    font-size: 0.78rem;
    margin-bottom: 14px;
}

.why-grid-card-stars .fa-star.dim {
    opacity: 0.25;
}

.why-grid-card-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.why-grid-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-grid-card-footer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(214, 168, 79, 0.35);
}

.why-grid-card-footer strong {
    display: block;
    color: var(--navy-primary);
    font-size: 0.92rem;
}

.why-grid-card-footer span {
    color: var(--gold-primary);
    font-size: 0.78rem;
    font-weight: 600;
}

.why-grid-card-quote {
    position: absolute;
    right: 18px;
    bottom: 16px;
    font-size: 3rem;
    line-height: 1;
    color: rgba(214, 168, 79, 0.18);
}

@media (max-width: 992px) {
    .why-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .why-featured-corner-avatar {
        width: 58px;
        height: 58px;
    }

    .why-featured-center {
        padding: 0 52px;
    }
}

@media (max-width: 768px) {
    .why-featured-stage {
        min-height: 520px;
    }

    .why-featured-corner-ring {
        display: none;
    }

    .why-featured-top-avatars {
        gap: 12px;
    }

    .why-featured-top-avatar,
    .why-featured-top-avatar.active {
        width: 64px;
        height: 64px;
    }

    .why-featured-nav {
        width: 36px;
        height: 36px;
    }

    .why-featured-center {
        padding: 0 44px;
    }

    .why-featured-card {
        padding: 24px 18px 20px;
    }

    .why-featured-quote {
        font-size: 0.95rem;
    }
}

/* Travel Inspiration — Mockup Layout */
.ti-page {
    background: #f4f6f9;
}

.ti-hero.inner-hero {
    padding: 168px 0 132px;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.ti-hero.inner-hero::before {
    background: linear-gradient(to bottom, rgba(11, 35, 65, 0.28) 0%, rgba(11, 35, 65, 0.82) 100%);
}

.ti-hero-inner {
    max-width: 820px;
    animation: ti-hero-in 0.9s ease both;
}

.ti-hero-tag {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ti-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ti-hero-icon {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 18px;
    animation: ti-plane-float 3s ease-in-out infinite;
}

.ti-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 18px;
}

.ti-hero-breadcrumb {
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.88);
}

.ti-hero-breadcrumb span,
.ti-hero-breadcrumb {
    color: var(--gold-primary);
}

.ti-section {
    padding: 72px 0;
}

.ti-categories-section {
    padding-top: 56px;
    padding-bottom: 48px;
    background: #fff;
}

.ti-categories-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.ti-section-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ti-section-title {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.ti-section-desc {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.ti-category-carousel {
    position: relative;
    margin: 0 -8px;
}

.ti-category-carousel::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 8px;
    width: 48px;
    background: linear-gradient(to right, transparent, #fff);
    pointer-events: none;
}

.ti-category-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 8px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) rgba(11, 35, 65, 0.08);
}

.ti-category-track::-webkit-scrollbar {
    height: 6px;
}

.ti-category-track::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 999px;
}

.ti-category-card {
    flex: 0 0 118px;
    min-height: 118px;
    border: 1px solid rgba(11, 35, 65, 0.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(11, 35, 65, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 10px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
    opacity: 0;
    transform: translateY(16px);
}

.ti-category-card.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ti-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11, 35, 65, 0.12);
}

.ti-category-card.active {
    background: var(--navy-primary);
    border-color: var(--navy-primary);
    box-shadow: 0 16px 40px rgba(11, 35, 65, 0.22);
}

.ti-category-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(214, 168, 79, 0.12);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.28s ease, color 0.28s ease;
}

.ti-category-card.active .ti-category-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.ti-category-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.35;
    color: var(--navy-primary);
}

.ti-category-card.active .ti-category-label {
    color: #fff;
}

.ti-scroll-hint {
    text-align: center;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.4px;
}

.ti-scroll-hint i {
    color: var(--gold-primary);
    margin-right: 6px;
    animation: ti-hint-nudge 1.6s ease-in-out infinite;
}

.ti-gallery-section {
    padding-top: 56px;
    padding-bottom: 72px;
}

.ti-gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ti-gallery-title {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.ti-sort-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ti-sort-pill {
    border: 1.5px solid rgba(11, 35, 65, 0.12);
    background: #fff;
    color: var(--navy-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 9px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.ti-sort-pill:hover,
.ti-sort-pill.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(214, 168, 79, 0.28);
}

.ti-gallery-like,
.ti-gallery-zoom {
    display: none !important;
}

.ti-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    transition: opacity 0.28s ease;
}

.ti-bento-grid .ti-gallery-card {
    aspect-ratio: 4 / 5;
    min-height: 320px;
    transform: none;
}

.ti-gallery-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.ti-gallery-card:hover .ti-gallery-shimmer {
    transform: translateX(120%);
}

.ti-gallery-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(11, 35, 65, 0.88);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 8px;
    border-radius: 4px;
}

.ti-gallery-like {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--navy-primary);
    font-size: 0.82rem;
}

.ti-featured-cats-section {
    padding-top: 64px;
    padding-bottom: 48px;
    background: #fff;
}

.ti-fc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ti-fc-card {
    position: relative;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    min-height: 340px;
    cursor: pointer;
    padding: 0;
    text-align: left;
    box-shadow: 0 16px 40px rgba(11, 35, 65, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
}

.ti-fc-card.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ti-fc-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 52px rgba(11, 35, 65, 0.18);
}

.ti-fc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.55s ease;
}

.ti-fc-card:hover img {
    transform: scale(1.08);
}

.ti-fc-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.ti-fc-copy {
    position: absolute;
    inset: auto 0 0;
    padding: 18px 16px;
    background: linear-gradient(to top, rgba(11,35,65,0.92), transparent);
    color: #fff;
    z-index: 2;
}

.ti-fc-copy h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.ti-fc-copy p {
    font-size: 0.78rem;
    opacity: 0.9;
}

.ti-browse-desc {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.65;
    font-size: 0.95rem;
}

.ti-browse-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

.ti-browse-showcase-card {
    position: relative;
    border: none;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(11, 35, 65, 0.12);
    opacity: 0;
    transform: translateY(18px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.65s ease;
}

.ti-browse-showcase-card.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ti-browse-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(11, 35, 65, 0.18);
}

.ti-browse-showcase-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.ti-browse-showcase-card:hover img {
    transform: scale(1.06);
}

.ti-browse-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 35, 65, 0.82) 0%, rgba(11, 35, 65, 0.15) 55%, transparent 100%);
}

.ti-browse-showcase-title {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    z-index: 1;
}

@media (max-width: 900px) {
    .ti-browse-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .ti-browse-showcase {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ti-browse-showcase-card {
        min-height: 200px;
    }
}

.ti-category-photo {
    display: none;
}

.ti-browse-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.ti-browse-divider-line {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.ti-browse-title {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ti-moment-section {
    background: #eef1f5;
    padding: 72px 0;
}

.ti-moment-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(11, 35, 65, 0.12);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ti-moment-card.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ti-moment-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.ti-moment-copy {
    padding: 40px 36px;
}

.ti-moment-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.ti-moment-meta-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ti-moment-meta-item i {
    color: var(--gold-primary);
    margin-top: 4px;
}

.ti-moment-meta-item small {
    display: block;
    color: var(--text-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.ti-moment-meta-item strong {
    color: var(--navy-primary);
    font-size: 0.88rem;
}

.ti-moment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ti-moment-tag {
    background: rgba(214, 168, 79, 0.14);
    color: var(--navy-primary);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
}

.ti-howto-section {
    padding: 72px 0;
    background: #fff;
}

.ti-howto-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    margin-bottom: 36px;
}

.ti-howto-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ti-howto-step {
    flex: 1 1 220px;
    max-width: 280px;
    background: #f8f9fb;
    border: 1px solid rgba(11, 35, 65, 0.08);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}

.ti-howto-step.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ti-howto-step:hover {
    box-shadow: 0 16px 36px rgba(11, 35, 65, 0.1);
}

.ti-howto-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ti-howto-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(214, 168, 79, 0.14);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.ti-howto-step h3 {
    color: var(--navy-primary);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.ti-howto-step p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.ti-howto-arrow {
    align-self: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Holiday Packages page */
.hp-page {
    background: #f4f6f9;
}

.hp-page-body {
    background: #f4f6f9;
}

.hp-hero.inner-hero {
    padding: 0;
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hp-hero-collage {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hp-hero-collage-item {
    background-size: cover;
    background-position: center;
}

.hp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11, 35, 65, 0.35), rgba(11, 35, 65, 0.82));
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 150px 0 110px;
    animation: ti-hero-in 0.9s ease both;
}

.hp-hero-tag {
    display: inline-block;
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hp-hero-icon {
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.hp-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hp-hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 14px;
}

.hp-hero-breadcrumb {
    font-size: 0.82rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.hp-feature-section {
    padding: 48px 0 48px;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.hp-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(11, 35, 65, 0.14);
    opacity: 1;
    transform: none;
}

.hp-feature-copy {
    padding: 44px 40px;
}

.hp-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hp-feature-tag-line {
    width: 36px;
    height: 1px;
    background: var(--gold-primary);
}

.hp-feature-title {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 14px;
}

.hp-feature-desc {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.hp-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.hp-grid-section {
    padding: 24px 0 72px;
}

.hp-grid-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.hp-section-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hp-section-title {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.hp-section-desc {
    color: var(--text-muted);
    line-height: 1.7;
}

.hp-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.hp-category-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(11, 35, 65, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.hp-category-card.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.hp-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(11, 35, 65, 0.14);
}

.hp-category-img {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hp-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hp-category-card:hover .hp-category-img img {
    transform: scale(1.06);
}

.hp-category-icon {
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(214, 168, 79, 0.35);
}

.hp-category-body {
    padding: 34px 18px 20px;
    text-align: center;
}

.hp-category-body h3 {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: 0.92rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hp-category-body p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.55;
    margin-bottom: 14px;
    min-height: 2.8em;
}

.hp-category-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hp-link {
    color: var(--gold-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
}

.hp-link:hover {
    color: var(--navy-primary);
}

/* --- Holiday Packages: Destinations Grid --- */
.hp-destinations-section {
    padding: 56px 0 64px;
    background: #eef1f5;
}

.hp-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.hp-section-head .hp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hp-section-head .hp-section-title {
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 12px;
}

.hp-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.hp-dest-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(11, 35, 65, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.45s ease;
    opacity: 1;
    transform: translateY(0);
}

.hp-page-reveal .hp-dest-card:not(.ti-in-view) {
    opacity: 1;
    transform: translateY(12px);
}

.hp-dest-card.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.hp-dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(11, 35, 65, 0.14);
}

.hp-dest-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.hp-dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hp-dest-card:hover .hp-dest-img img {
    transform: scale(1.06);
}

.hp-dest-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.hp-dest-flag {
    font-size: 1.35rem;
    line-height: 1;
}

.hp-dest-body h3 {
    flex: 1;
    min-width: 120px;
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    margin: 0;
}

.hp-dest-stats {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.hp-dest-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hp-dest-stats i {
    color: var(--gold-primary);
    font-size: 0.68rem;
}

/* --- Holiday Packages: Package Cards --- */
.hp-packages-section {
    padding: 56px 0 72px;
    background: #fff;
}

.hp-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.hp-pkg-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(11, 35, 65, 0.1);
    border: 1px solid rgba(214, 168, 79, 0.12);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.3s ease;
}

.hp-page-reveal .hp-pkg-card:not(.ti-in-view) {
    opacity: 1;
    transform: translateY(12px);
}

.hp-pkg-card.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.hp-pkg-card:hover {
    box-shadow: 0 22px 52px rgba(11, 35, 65, 0.15);
}

.hp-pkg-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.hp-pkg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hp-pkg-card:hover .hp-pkg-media img {
    transform: scale(1.05);
}

.hp-pkg-badge {
    position: absolute;
    top: 14px;
    left: -4px;
    padding: 6px 14px 6px 12px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.hp-pkg-badge-gold { background: var(--gold-primary); }
.hp-pkg-badge-teal { background: #2a9d8f; }
.hp-pkg-badge-blue { background: #3d6cb9; }

.hp-pkg-body {
    padding: 22px 22px 26px;
}

.hp-pkg-body h3 {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.hp-pkg-details {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 8px;
}

.hp-pkg-details li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hp-pkg-details i {
    color: var(--gold-primary);
    width: 16px;
    text-align: center;
    font-size: 0.78rem;
}

.hp-pkg-price {
    margin-bottom: 18px;
    line-height: 1.3;
}

.hp-pkg-price small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.hp-pkg-price strong {
    font-family: var(--font-heading);
    color: var(--navy-primary);
    font-size: 1.5rem;
}

.hp-pkg-price span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hp-pkg-btn {
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    font-weight: 700;
}

/* --- Holiday Packages: Exclusive Offers Banner --- */
.hp-offers-section {
    background: var(--navy-primary);
    padding: 48px 0 56px;
}

.hp-offers-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.hp-offers-banner.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.hp-offers-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(214, 168, 79, 0.18);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hp-offers-copy {
    flex: 1;
    min-width: 220px;
}

.hp-offers-copy h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hp-offers-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 640px;
}

.hp-offers-btn {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.hp-cta-section {
    background: var(--navy-primary);
    padding: 48px 0;
}

.hp-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.hp-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(214, 168, 79, 0.16);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hp-cta-copy h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.4vw, 1.75rem);
    margin-bottom: 6px;
}

.hp-cta-copy p {
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
}

.hp-cta-btn {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .ti-fc-grid,
    .hp-category-grid,
    .hp-dest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hp-pkg-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .ti-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 180px;
    }

    .ti-bento-wide,
    .ti-bento-feature {
        grid-column: span 2;
    }

    .hp-feature-card,
    .ti-moment-card {
        grid-template-columns: 1fr;
    }

    .ti-moment-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hp-hero-collage {
        grid-template-columns: 1fr;
    }

    .hp-hero-collage-item:nth-child(n+2) {
        display: none;
    }

    .hp-feature-section {
        margin-top: 0;
        padding-top: 32px;
    }

    .ti-fc-grid,
    .hp-category-grid {
        grid-template-columns: 1fr;
    }

    .ti-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .ti-bento-wide,
    .ti-bento-tall,
    .ti-bento-feature {
        grid-column: span 1;
        grid-row: span 1;
    }

    .ti-howto-arrow {
        display: none;
    }

    .hp-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.ti-gallery-grid.ti-grid-fade {
    opacity: 0.35;
}

.ti-gallery-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    min-height: 300px;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(11, 35, 65, 0.1);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease var(--ti-delay, 0s), transform 0.55s ease var(--ti-delay, 0s), box-shadow 0.3s ease;
}

.ti-gallery-card.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ti-gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.ti-gallery-card:hover img {
    transform: scale(1.07);
}

.ti-gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 35, 65, 0.88) 0%, rgba(11, 35, 65, 0.08) 58%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 16px;
    color: #fff;
    transition: background 0.35s ease;
}

.ti-gallery-card:hover .ti-gallery-card-overlay {
    background: linear-gradient(to top, rgba(11, 35, 65, 0.94) 0%, rgba(11, 35, 65, 0.2) 62%, transparent 100%);
}

.ti-gallery-cat {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--gold-primary);
    margin-bottom: 6px;
}

.ti-gallery-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.3;
    word-break: break-word;
}

.ti-gallery-card-overlay p {
    font-size: 0.78rem;
    opacity: 0.92;
}

.ti-gallery-card-overlay p i {
    color: var(--gold-primary);
    margin-right: 4px;
}

.ti-gallery-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy-primary);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.28s ease, transform 0.28s ease;
    cursor: pointer;
}

.ti-gallery-card:hover .ti-gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.ti-filter-hidden,
.ti-load-hidden {
    display: none !important;
}

.ti-gallery-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 36px 0 8px;
}

.ti-load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.ti-load-more-btn {
    background: var(--navy-primary);
    color: #fff;
    border: none;
    padding: 14px 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.ti-load-more-btn:hover {
    background: #0a1f3a;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(11, 35, 65, 0.22);
}

.ti-load-more-btn.ti-load-pulse {
    animation: ti-load-pulse 0.4s ease;
}

.ti-featured-section {
    background: #eef1f5;
    padding: 72px 0;
}

.ti-featured-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 36px;
    align-items: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ti-featured-layout.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ti-featured-media {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(11, 35, 65, 0.14);
}

.ti-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ti-featured-media:hover img {
    transform: scale(1.04);
}

.ti-featured-copy .ti-section-title {
    text-align: left;
    margin-bottom: 14px;
}

.ti-featured-copy .ti-section-desc {
    margin-bottom: 22px;
}

.ti-featured-btn {
    display: inline-flex;
}

.ti-feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ti-feature-highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ti-feature-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(214, 168, 79, 0.14);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ti-feature-highlight strong {
    display: block;
    color: var(--navy-primary);
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.ti-feature-highlight p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.ti-cta-section {
    background: var(--navy-primary);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.js-parallax-section.ti-cta-section::before {
    display: none;
}

.ti-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/world-map-tropical.png') center / min(1100px, 115%) no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.ti-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 35, 65, 0.65);
    z-index: 1;
    pointer-events: none;
}

.ti-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.ti-cta-inner.ti-in-view {
    opacity: 1;
    transform: translateY(0);
}

.ti-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(214, 168, 79, 0.16);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ti-cta-copy {
    flex: 1;
    min-width: 220px;
}

.ti-cta-copy h2 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin-bottom: 8px;
}

.ti-cta-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.6;
}

.ti-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ti-cta-btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.ti-cta-btn-outline:hover {
    background: #fff;
    color: var(--navy-primary);
}

.ti-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 999px;
}

@keyframes ti-hero-in {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ti-plane-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes ti-hint-nudge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

@keyframes ti-load-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.97); }
    100% { transform: scale(1); }
}

@media (max-width: 1024px) {
    .ti-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ti-featured-layout {
        grid-template-columns: 1fr;
    }

    .ti-feature-highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ti-feature-highlight {
        flex: 1 1 220px;
    }
}

@media (max-width: 768px) {
    .ti-hero.inner-hero {
        padding: 140px 0 100px;
        min-height: 420px;
    }

    .ti-gallery-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .ti-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ti-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ti-cta-actions {
        width: 100%;
    }

    .ti-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* v5.1 — Holiday Packages mockup polish + full-size gallery */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hp-page,
.hp-page-body {
    background: #eef1f5;
}

.hp-hero.inner-hero {
    min-height: 560px;
    overflow: visible;
}

.hp-hero-inner {
    padding: 168px 0 96px;
}

.hp-hero-icon {
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.hp-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.hp-feature-section {
    margin-top: 0;
    z-index: 1;
    padding: 48px 0 56px;
}

.hp-feature-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    border-radius: 22px;
    min-height: 400px;
    box-shadow: 0 32px 80px rgba(11, 35, 65, 0.16);
}

.hp-feature-copy {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hp-feature-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.hp-feature-btn {
    width: 100%;
    max-width: 320px;
    border-radius: 6px;
    padding: 14px 22px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    justify-content: center;
}

.hp-feature-media img {
    min-height: 400px;
}

.hp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hp-section-tag-line {
    width: 42px;
    height: 1px;
    background: var(--gold-primary);
}

.hp-section-title {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hp-category-card {
    position: relative;
    overflow: visible;
    border-radius: 12px;
}

.hp-category-img {
    height: 210px;
    aspect-ratio: auto;
    border-radius: 12px 12px 0 0;
}

.hp-category-icon {
    top: 210px;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    z-index: 3;
}

.hp-category-body {
    padding-top: 36px;
    border-radius: 0 0 12px 12px;
    background: #fff;
}

.hp-category-links {
    border-top: 1px solid rgba(11, 35, 65, 0.08);
    padding-top: 14px;
}

.hp-cta-section {
    background: #eef1f5;
    padding: 0 0 72px;
}

.hp-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: var(--navy-primary);
    border-radius: 16px;
    padding: 28px 36px;
    box-shadow: 0 20px 50px rgba(11, 35, 65, 0.18);
}

.hp-cta-btn {
    border-radius: 6px;
    padding: 13px 22px;
    white-space: nowrap;
}

.ti-gallery-section .container {
    max-width: 1320px;
}

.ti-gallery-card:hover {
    box-shadow: 0 20px 48px rgba(11, 35, 65, 0.18);
}

@media (max-width: 1024px) {
    .hp-feature-section {
        margin-top: 0;
    }

    .hp-offers-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .hp-offers-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hp-feature-section {
        margin-top: 0;
        padding-top: 32px;
    }

    .hp-hero-inner {
        padding: 140px 0 100px;
    }

    .ti-gallery-card {
        min-height: 300px;
    }
}

/* ==========================================================================
   Mobile polish — phone & tablet only (desktop layout unchanged above)
   ========================================================================== */
@media (max-width: 768px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    img,
    video,
    iframe,
    svg {
        max-width: 100%;
        height: auto;
    }

    .section-title {
        font-size: clamp(1.65rem, 6vw, 2.1rem);
        line-height: 1.25;
    }

    .section-desc {
        font-size: 0.92rem;
    }

    .btn,
    .hp-cta-btn,
    .hp-offers-btn,
    .wb-btn-row .btn,
    .ti-cta-actions .btn {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
        line-height: 1.15;
    }

    .hero-desc {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .page-hero.inner-hero,
    .inner-hero {
        padding-top: 118px;
        padding-bottom: 64px;
        min-height: 0;
    }

    .wb-hero.inner-hero,
    .ti-hero.inner-hero,
    .hp-hero.inner-hero {
        min-height: 0;
    }

    .wb-hero.inner-hero {
        padding: 118px 0 72px;
    }

    .ti-hero.inner-hero {
        padding: 118px 0 72px;
    }

    .hp-hero.inner-hero {
        min-height: 0;
    }

    .hp-hero-inner {
        padding: 118px 0 72px;
    }

    .wb-hero-title,
    .ti-hero-title,
    .hp-hero-title,
    .inner-hero-title {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
        letter-spacing: 1.5px;
        line-height: 1.2;
        word-break: break-word;
    }

    .wb-hero-subtitle,
    .ti-hero-subtitle,
    .hp-hero-subtitle,
    .inner-hero-subtitle {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .wb-panel,
    .category-feature-panel,
    .why-promise-panel,
    .contact-form-panel,
    .explore-uk-intro,
    .uk-planner-panel {
        padding: 24px 18px;
    }

    .hp-feature-card,
    .ti-moment-card,
    .ti-featured-layout,
    .why-promise-layout,
    .contact-grid,
    .about-page-grid,
    .category-page-grid,
    .hp-feature-section .hp-feature-card {
        grid-template-columns: 1fr !important;
        min-height: 0;
    }

    .hp-feature-copy,
    .ti-moment-copy,
    .ti-feature-copy {
        padding: 24px 18px;
    }

    .hp-feature-media img,
    .ti-moment-media img,
    .ti-feature-media img {
        min-height: 220px;
        height: auto;
    }

    .hp-dest-grid,
    .hp-pkg-grid,
    .hp-category-grid,
    .ti-fc-grid,
    .ti-gallery-grid,
    .why-us-offers-grid,
    .wb-feature-grid,
    .wb-after-cards,
    .footer-grid,
    .benefits-grid,
    .process-container,
    .travel-stages-grid {
        gap: 16px;
    }

    .hp-dest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .hp-pkg-grid,
    .ti-fc-grid,
    .ti-gallery-grid,
    .hp-category-grid {
        grid-template-columns: 1fr !important;
    }

    .ti-browse-showcase {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .ti-browse-showcase-card {
        min-height: 220px;
    }

    .ti-browse-title {
        white-space: normal;
        text-align: center;
        line-height: 1.35;
    }

    .ti-category-carousel {
        margin: 0;
    }

    .ti-category-track {
        padding-left: 0;
        padding-right: 0;
    }

    .ti-category-card {
        flex: 0 0 108px;
        min-height: 108px;
    }

    .hp-section-head,
    .ti-categories-head,
    .ti-gallery-head {
        text-align: left;
    }

    .hp-section-title,
    .ti-section-title,
    .ti-gallery-title {
        font-size: clamp(1.45rem, 6vw, 2rem);
        line-height: 1.25;
        word-break: break-word;
    }

    .hp-dest-img {
        aspect-ratio: 4 / 3;
    }

    .hp-pkg-media {
        aspect-ratio: 16 / 10;
    }

    .hp-pkg-body,
    .hp-pkg-btn {
        width: 100%;
    }

    .ti-moment-meta {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .ti-howto-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .ti-howto-step {
        width: 100%;
    }

    .hp-dest-body h3,
    .hp-offers-copy,
    .hp-cta-inner,
    .ti-cta-inner,
    .wb-cta-inner {
        min-width: 0;
    }

    .hp-offers-banner,
    .hp-cta-bar,
    .hp-cta-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 16px;
        padding: 22px 18px;
    }

    .hp-offers-btn,
    .hp-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badge-card--abta,
    .trust-badge-card--atol,
    .ti-category-pill,
    .gallery-filter-pill,
    .hp-category-chip {
        min-width: 0;
        max-width: 100%;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-col,
    .footer-bottom-copy,
    .footer-dev-credit {
        text-align: center;
    }

    .footer-brand-badges .trust-badges-row,
    .footer-socials {
        justify-content: center;
    }

    .booking-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .booking-modal-dialog {
        width: 100%;
        max-height: 92vh;
        border-radius: 16px 16px 0 0;
        padding: 24px 18px 28px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-menu {
        top: 78px;
        height: calc(100dvh - 78px);
        padding: 28px 16px 36px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        align-items: center;
        z-index: 1002;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    body.mobile-nav-open header {
        z-index: 1003;
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(11, 31, 58, 0.42);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
        z-index: 1001;
    }

    .mobile-nav-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link,
    .nav-dropdown-toggle,
    .nav-dropdown-link {
        width: 100%;
        max-width: 320px;
        white-space: normal;
        text-align: center;
    }

    .category-card-item {
        flex: 0 0 100%;
    }

    .about-media-container {
        height: auto;
        min-height: 260px;
        margin-top: 20px;
    }

    .faq-question {
        font-size: 0.98rem;
        padding: 14px 16px;
    }

    .gallery-filters-section {
        top: 78px;
    }

    .gallery-filter-pills,
    .ti-category-scroll,
    .hp-category-scroll {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .ti-gallery-card,
    .gallery-card-item {
        min-height: 240px;
    }

    .ti-gallery-head,
    .ti-gallery-title,
    .hp-section-head {
        width: 100%;
        min-width: 0;
    }

    .why-featured-stage {
        min-height: 0;
        padding: 0 8px;
    }

    .why-featured-center {
        padding: 0 12px;
    }

    .why-featured-card {
        padding: 22px 16px 18px;
    }

    .wb-testimonial-card {
        flex: 0 0 100%;
    }

    .wb-cta-section {
        min-height: 0;
    }

    .wb-cta-inner {
        padding: 56px 18px;
    }

    .contact-direct-actions,
    .contact-trust-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-content,
    .gallery-lightbox-content {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .header-container {
        height: 72px;
        min-height: 72px;
        gap: 8px;
    }

    .logo-img-link {
        max-width: min(150px, 42vw);
    }

    .logo-img,
    header .logo-img {
        max-height: 54px;
    }

    .nav-menu {
        top: 72px;
        height: calc(100dvh - 72px);
    }

    .hp-dest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .hp-dest-body h3 {
        font-size: 0.8rem;
    }

    .hp-dest-stats {
        font-size: 0.68rem;
        gap: 8px 10px;
    }

    .hero-title {
        font-size: clamp(1.65rem, 8.5vw, 2.1rem);
    }

    .section-padding {
        padding: 28px 0;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .wb-hero.inner-hero,
    .ti-hero.inner-hero {
        padding: 104px 0 60px;
    }

    .hp-hero-inner {
        padding: 104px 0 60px;
    }

    .wb-panel,
    .category-feature-panel,
    .why-promise-panel {
        padding: 20px 14px;
        border-radius: 16px;
    }

    .hp-feature-title {
        font-size: 1.55rem;
    }

    .hp-dest-body,
    .hp-pkg-body,
    .hp-pkg-footer {
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-logo-img {
        height: 72px;
        max-width: 170px;
    }

    .footer-bottom-copy {
        font-size: 0.98rem;
    }

    .footer-dev-credit {
        font-size: 0.94rem;
    }

    .booking-modal-dialog h2 {
        font-size: 1.2rem;
        padding-right: 28px;
    }

    .ti-gallery-card,
    .gallery-card-item {
        min-height: 210px;
    }

    .about-img-main-wrap {
        width: 180px;
        height: 180px;
    }

    .about-img-sub-wrap {
        width: 96px;
        height: 96px;
        left: calc(50% - 118px);
    }

    .about-accent-circle {
        width: 180px;
        height: 180px;
    }
}


/* Popular destinations text layout fix */
.dest-info-box {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 4px !important;
}

.dest-trips {
    display: block !important;
    margin-left: 22px !important;
}

/* Home Travel Inspiration slider */
.home-ti-slider {
    background: #fff;
    padding: 30px 0 20px;
    overflow: hidden;
}

.home-ti-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 6% 18px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.home-ti-card {
    flex: 0 0 145px;
    min-height: 120px;
    border: 1px solid #e7e9ef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(11,35,65,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #0b2341;
    text-align: center;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.home-ti-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fbf3e7;
    color: #d6a84f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.home-ti-hint {
    text-align: center;
    color: #7b8494;
    font-size: 0.95rem;
}

.home-ti-hint i {
    color: #d6a84f;
    margin-right: 6px;
}

/* HOME TI AUTO SLIDER START */
.home-ti-slider {
    background: #fff !important;
    padding: 30px 0 24px !important;
    overflow: hidden !important;
}

.home-ti-marquee {
    width: 100% !important;
    overflow: hidden !important;
}

.home-ti-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    width: max-content !important;
    overflow: visible !important;
    animation: homeTiAutoSlide 35s linear infinite !important;
}

.home-ti-slider:hover .home-ti-track {
    animation-play-state: paused !important;
}

.home-ti-card {
    flex: 0 0 145px !important;
}

.home-ti-hint {
    display: none !important;
}

@keyframes homeTiAutoSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
/* HOME TI AUTO SLIDER END */

/* Advanced booking form fields */
.booking-advanced-fields {
    margin: 12px 0 16px;
    padding: 14px;
    border: 1px solid rgba(214,168,79,0.35);
    border-radius: 14px;
    background: #fffaf2;
}

.booking-advanced-title {
    font-weight: 800;
    color: #0b2341;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-advanced-title i {
    color: #d6a84f;
}

.booking-advanced-note {
    margin: 0 0 10px;
    color: #6f7787;
    font-size: 0.9rem;
}

.booking-multi-head,
.booking-multi-row {
    display: grid;
    grid-template-columns: 30px 1fr 150px;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}

.booking-multi-head {
    grid-template-columns: 30px 1fr 150px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0b2341;
}

@media (max-width: 600px) {
    .booking-multi-head {
        display: none;
    }

    .booking-multi-row {
        grid-template-columns: 24px 1fr;
    }

    .booking-multi-row select {
        grid-column: 2;
    }
}

/* Insperia credit link */
.insperia-credit-link {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.insperia-credit-link:hover {
    color: #d6a84f;
    text-decoration: underline;
}

/* Footer logo match header: crop outside circle only */
.site-footer .footer-logo-img,
.footer-logo-img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Booking advanced required field validation */
.booking-adv-invalid {
    border-color: #e01b2f !important;
    box-shadow: 0 0 0 2px rgba(224,27,47,0.12) !important;
}

.booking-advanced-error {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(224,27,47,0.08);
    color: #b00020;
    font-weight: 700;
    font-size: 0.92rem;
}


/* S2J date validation */
.s2j-date-error {
    margin-top: 6px;
    color: #b00020;
    font-size: 13px;
    font-weight: 700;
}

.booking-adv-invalid {
    border-color: #b00020 !important;
    box-shadow: 0 0 0 2px rgba(176, 0, 32, 0.12) !important;
}

/* S2J CONTACT FORM LAYOUT FIX */
.contact-form-box .contact-clean-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-box .contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 0;
}

.contact-form-box .contact-full-row {
    margin-bottom: 0;
}

.contact-form-box .form-label {
    margin-bottom: 10px;
}

.contact-form-box .form-control {
    min-height: 54px;
}

.contact-form-box textarea.form-control {
    min-height: 150px;
}

.contact-form-box .form-error,
.contact-form-box .error-message {
    display: none;
    margin-top: 7px;
    color: #b00020;
    font-size: 13px;
    font-weight: 700;
}

.contact-form-box .form-control.error + .form-error,
.contact-form-box .form-control.error + .error-message {
    display: block;
}

.contact-form-box .contact-submit-btn {
    width: fit-content;
    min-width: 230px;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .contact-form-box .contact-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-box .contact-submit-btn {
        width: 100%;
    }
}

/* S2J CHATBOT WELCOME OPTIONS */
.s2j-welcome-options-after-messages {
    margin: 10px 0 4px;
    padding-left: 8px;
}

.s2j-welcome-options-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.s2j-welcome-option-chip {
    cursor: pointer;
}

/* S2J MAIN WELCOME OPTIONS */
.s2j-main-welcome-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 6px 8px;
}

.s2j-main-welcome-option-chip {
    cursor: pointer;
}

/* S2J FINAL CHATBOT OPTIONS */
.s2j-final-main-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 6px 8px;
}

.s2j-final-main-option-chip {
    cursor: pointer;
}

/* S2J FINAL TRANSFER AND CHATBOT CSS */
.s2j-main-options-final {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 6px 8px;
}

.s2j-main-option-final-chip {
    cursor: pointer;
}

.s2j-transfer-luggage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 640px) {
    .s2j-transfer-luggage-grid {
        grid-template-columns: 1fr;
    }
}

/* S2J LUGGAGE DROPDOWN FIT FIX */
.s2j-transfer-luggage-grid,
.booking-luggage-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    overflow: hidden;
}

.s2j-transfer-luggage-grid .form-group,
.booking-luggage-grid .form-group {
    min-width: 0;
    width: 100%;
}

.s2j-transfer-luggage-grid .form-control,
.booking-luggage-grid .form-control {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-right: 38px;
    text-overflow: ellipsis;
}

@media (max-width: 700px) {
    .s2j-transfer-luggage-grid,
    .booking-luggage-grid {
        grid-template-columns: 1fr;
    }
}

/* S2J FINAL LUGGAGE INSIDE FORM FIX */
#bookingAdvancedFields .s2j-transfer-luggage-grid,
#bookingAdvancedFields .booking-luggage-grid {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 16px !important;
    overflow: visible !important;
}

#bookingAdvancedFields .s2j-transfer-luggage-grid .form-group,
#bookingAdvancedFields .booking-luggage-grid .form-group {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
}

#bookingAdvancedFields .s2j-transfer-luggage-grid select.form-control,
#bookingAdvancedFields .booking-luggage-grid select.form-control {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding-left: 14px !important;
    padding-right: 34px !important;
    font-size: 15px !important;
}

/* In booking modal/tablet width, stack luggage fields to prevent overflow */
@media (max-width: 900px) {
    #bookingAdvancedFields .s2j-transfer-luggage-grid,
    #bookingAdvancedFields .booking-luggage-grid {
        grid-template-columns: 1fr !important;
    }
}

/* S2J TRANSFER FINAL FIELD ORDER */
#bookingAdvancedFields .s2j-transfer-luggage-grid {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin: 10px 0 18px !important;
    overflow: visible !important;
}

#bookingAdvancedFields .s2j-transfer-luggage-grid .form-group {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}

#bookingAdvancedFields .s2j-transfer-luggage-grid select.form-control {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

#bookingAdvancedFields .s2j-transfer-full-width {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 520px) {
    #bookingAdvancedFields .s2j-transfer-luggage-grid {
        grid-template-columns: 1fr !important;
    }
}

/* S2J TRANSFER FORM VISUAL POLISH */
.s2j-transfer-pickup-luggage-grid,
.s2j-transfer-departure-luggage-grid,
.s2j-transfer-luggage-grid,
.booking-luggage-grid {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.s2j-transfer-pickup-luggage-grid .form-group,
.s2j-transfer-departure-luggage-grid .form-group,
.s2j-transfer-luggage-grid .form-group,
.booking-luggage-grid .form-group {
    min-width: 0;
    width: 100%;
    margin-bottom: 0;
}

.s2j-transfer-pickup-luggage-grid .form-label,
.s2j-transfer-departure-luggage-grid .form-label,
.s2j-transfer-luggage-grid .form-label,
.booking-luggage-grid .form-label {
    display: block;
    line-height: 1.35;
    margin-bottom: 10px;
    word-break: normal;
}

.s2j-transfer-pickup-luggage-grid .form-control,
.s2j-transfer-departure-luggage-grid .form-control,
.s2j-transfer-luggage-grid .form-control,
.booking-luggage-grid .form-control {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding-right: 38px;
    text-overflow: ellipsis;
}

.booking-advanced-fields .form-group {
    margin-bottom: 22px;
}

.booking-advanced-fields .form-label {
    display: block;
    line-height: 1.35;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .s2j-transfer-pickup-luggage-grid,
    .s2j-transfer-departure-luggage-grid,
    .s2j-transfer-luggage-grid,
    .booking-luggage-grid {
        grid-template-columns: 1fr !important;
    }
}

/* S2J TRANSFER BAG LABEL EXTRA SPACE */
#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-luggage-grid .form-label {
    min-height: 54px !important;
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 10px !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-luggage-grid .form-control {
    margin-top: 0 !important;
}

/* S2J TRANSFER SEND MODE SPACING */
#bookingAdvancedFields.s2j-transfer-form-grid {
    gap: 24px 22px !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .form-group {
    margin-bottom: 4px !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-mode-group {
    grid-column: 1 / -1 !important;
    margin: 4px 0 4px !important;
    padding-bottom: 4px !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-mode-group .form-label {
    min-height: auto !important;
    margin-bottom: 10px !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-luggage-grid {
    margin: 2px 0 6px !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-full-width {
    grid-column: 1 / -1 !important;
}

#bookingAdvancedFields .s2j-transfer-send-only-hidden {
    display: none !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .form-control {
    min-height: 52px !important;
}

@media (max-width: 520px) {
    #bookingAdvancedFields.s2j-transfer-form-grid {
        gap: 20px !important;
    }
}

/* S2J TRANSFER SWITCH UI TOP */
.s2j-transfer-switch-wrap {
    margin: 14px 0 24px !important;
}

.s2j-transfer-switch-label {
    display: block !important;
    margin-bottom: 10px !important;
}

.s2j-transfer-switch {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.s2j-transfer-switch-btn {
    appearance: none;
    border: 1px solid #d7b56d;
    background: #fffaf0;
    color: #102b4e;
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: all .2s ease;
}

.s2j-transfer-switch-btn:hover {
    background: #f8edd0;
}

.s2j-transfer-switch-btn.active {
    background: #d6ab49;
    border-color: #d6ab49;
    color: #fff;
    box-shadow: 0 4px 14px rgba(214,171,73,.25);
}

#bookingAdvancedFields.s2j-transfer-form-grid .form-group {
    margin-bottom: 20px !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-luggage-grid,
#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-pickup-luggage-grid,
#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-departure-luggage-grid {
    margin: 8px 0 22px !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-luggage-grid .form-group,
#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-pickup-luggage-grid .form-group,
#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-departure-luggage-grid .form-group {
    margin-bottom: 18px !important;
}

@media (max-width: 700px) {
    .s2j-transfer-switch {
        flex-direction: column;
    }

    .s2j-transfer-switch-btn {
        width: 100%;
        text-align: center;
    }
}

/* S2J TRANSFER SWITCH TOP FULL WIDTH REPAIR */
.s2j-transfer-switch-wrap,
.s2j-transfer-switch-top-fixed {
    width: 100% !important;
    margin: 14px 0 26px !important;
}

.s2j-transfer-switch-wrap .form-label,
.s2j-transfer-switch-top-fixed .form-label,
.s2j-transfer-switch-label {
    display: block !important;
    margin-bottom: 12px !important;
}

.s2j-transfer-switch {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    background: #f5eddc !important;
    border: 1px solid #e0c78a !important;
    border-radius: 14px !important;
    padding: 6px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.s2j-transfer-switch-btn {
    width: 100% !important;
    min-height: 54px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: transparent !important;
    color: #102b4e !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    padding: 12px 14px !important;
    text-align: center !important;
    box-shadow: none !important;
}

.s2j-transfer-switch-btn:hover {
    background: rgba(214,171,73,0.10) !important;
}

.s2j-transfer-switch-btn.active {
    background: #d6ab49 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(214,171,73,.22) !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-switch-wrap {
    order: -999 !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .form-group {
    margin-bottom: 18px !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-pickup-luggage-grid,
#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-departure-luggage-grid,
#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-luggage-grid {
    margin: 10px 0 22px !important;
}

@media (max-width: 560px) {
    .s2j-transfer-switch-btn {
        font-size: 14px !important;
        padding: 11px 10px !important;
    }
}

/* S2J FINAL LUGGAGE LABEL ALIGNMENT */
#bookingAdvancedFields .s2j-transfer-luggage-grid {
    align-items: start !important;
}

#bookingAdvancedFields .s2j-transfer-luggage-grid > .form-group {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
}

#bookingAdvancedFields .s2j-transfer-luggage-grid > .form-group > .form-label {
    min-height: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: flex-start !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.25 !important;
}

#bookingAdvancedFields .s2j-transfer-luggage-grid > .form-group > .form-control {
    margin-top: 0 !important;
    width: 100% !important;
    min-height: 54px !important;
}

@media (max-width: 520px) {
    #bookingAdvancedFields .s2j-transfer-luggage-grid > .form-group > .form-label {
        min-height: auto !important;
        height: auto !important;
    }
}

/* S2J TRANSFER TYPE ROUTE FINAL UI */
#bookingAdvancedFields .s2j-hidden-transfer-select-group {
    display: none !important;
}

#bookingAdvancedFields .s2j-transfer-switch-wrap {
    display: none !important;
}

#bookingAdvancedFields.s2j-transfer-form-grid .s2j-transfer-type-route-wrap-final,
#bookingAdvancedFields .s2j-transfer-type-route-wrap-final {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin: 12px 0 24px !important;
}

#bookingAdvancedFields .s2j-transfer-choice-label {
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: #1c1f26 !important;
    margin-bottom: 8px !important;
}

#bookingAdvancedFields .s2j-transfer-segment-switch {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    padding: 6px !important;
    border: 1px solid rgba(214, 168, 79, 0.65) !important;
    background: #fff7e8 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
}

#bookingAdvancedFields .s2j-transfer-segment-btn {
    width: 100% !important;
    min-height: 48px !important;
    border: 0 !important;
    border-radius: 9px !important;
    background: transparent !important;
    color: #0b2341 !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    padding: 10px 12px !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
}

#bookingAdvancedFields .s2j-transfer-segment-btn.active {
    background: #d6a84f !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(214, 168, 79, 0.22) !important;
}

#bookingAdvancedFields .s2j-transfer-hidden-by-type {
    display: none !important;
}

@media (max-width: 560px) {
    #bookingAdvancedFields .s2j-transfer-segment-switch {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
}

/* S2J TRANSFER ONLY V3 START */

#bookingAdvancedFields .s2j-transfer-v3-type {
  width: 100%;
  margin: 12px 0;
}

#bookingAdvancedFields
.s2j-transfer-v3-type-label {
  margin-bottom: 7px;
  color: #253047;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#bookingAdvancedFields
.s2j-transfer-v3-switch {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 4px;
  border: 1px solid #d7dee8;
  border-radius: 8px;
  background: #f2f5f9;
}

#bookingAdvancedFields
.s2j-transfer-v3-switch-btn {
  min-height: 37px;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4b5565;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

#bookingAdvancedFields
.s2j-transfer-v3-switch-btn.active {
  background: #d6a84f;
  color: #ffffff;
  box-shadow:
    0 2px 7px rgba(42, 49, 66, 0.14);
}

#bookingAdvancedFields
.s2j-transfer-v3-hidden-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

#bookingAdvancedFields
.s2j-transfer-v3-leg {
  width: 100%;
  margin: 12px 0 0;
  padding: 13px;
  border: 1px solid #dfe4ec;
  border-radius: 9px;
  background: #ffffff;
  box-shadow:
    0 3px 12px rgba(30, 41, 59, 0.045);
  box-sizing: border-box;
}

#bookingAdvancedFields
.s2j-transfer-v3-leg-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0 0 11px;
  border-bottom: 1px solid #edf0f4;
}

#bookingAdvancedFields
.s2j-transfer-v3-leg-number {
  display: inline-flex;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d6a84f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

#bookingAdvancedFields
.s2j-transfer-v3-leg-heading strong {
  display: block;
  color: #253047;
  font-size: 13px;
  line-height: 1.25;
}

#bookingAdvancedFields
.s2j-transfer-v3-leg-heading small {
  display: block;
  margin-top: 2px;
  color: #7a8495;
  font-size: 10px;
  line-height: 1.35;
}

#bookingAdvancedFields
.s2j-transfer-v3-return[hidden] {
  display: none !important;
}

#bookingAdvancedFields
.s2j-transfer-v3-leg
.form-group:last-child {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  #bookingAdvancedFields
  .s2j-transfer-v3-leg {
    padding: 11px;
  }

  #bookingAdvancedFields
  .s2j-transfer-v3-switch-btn {
    min-height: 35px;
    padding: 7px 5px;
    font-size: 11px;
  }
}

/* S2J TRANSFER ONLY V3 END */

/* S2J FOOTER LEGAL LINKS START */

.footer-legal-inline-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-legal-inline-links a {
    margin: 0;
}

.footer-legal-divider {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.8rem;
}

/* S2J FOOTER LEGAL LINKS END */


/* S2J_SERVICE_CARDS_NO_NUMBERS_START */
#about-section .stat-service-card {
    display: flex;
    min-height: 132px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
}

#about-section .stat-service-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214, 168, 79, 0.45);
    border-radius: 50%;
    background: rgba(214, 168, 79, 0.10);
    color: #d6a84f;
    font-size: 22px;
    line-height: 1;
}

#about-section .stat-service-icon i {
    display: block;
    line-height: 1;
}

#about-section .stat-service-card .stat-label {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
}

@media (max-width: 768px) {
    #about-section .stat-service-card {
        min-height: 120px;
        padding: 16px 10px;
    }

    #about-section .stat-service-icon {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }
}
/* S2J_SERVICE_CARDS_NO_NUMBERS_END */
