/* ==========================================================================
   UNXGO LUXURY TRAVEL CORE ENGINE STYLES
   ========================================================================== */

:root {
    --brand-cyan: #00aeef;
    --brand-orange: #f7911e;
    --color-bg-primary: #ffffff;
    --color-bg-warm: #f5f2ed;
    --color-bg-dark: #0f1115;
    --color-text-dark: #16191e;
    --color-text-muted: #626873;
    --color-text-light: #ffffff;
    --color-border: #e2e5eb;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --font-condensed: 'Oswald', sans-serif;
    --transition-lux: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-primary);
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

/* --- TYPOGRAPHY CORRECTIONS --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text-dark);
}

h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- ALIGNMENT FRAMEWORKS & CONTAINERS --- */
.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 4%;
}

.padding-large {
    padding: clamp(60px, 8vw, 120px) 0;
}

.bg-warm { background-color: var(--color-bg-warm); }
.bg-dark { background-color: var(--color-bg-dark); }
.text-light { color: var(--color-text-light); }
.text-white { color: #ffffff !important; }
.text-muted { color: #9aa2af !important; }
.text-center { text-align: center !important; }

.section-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 2;
    font-weight: 600;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 20px;
}
.section-tag.style-cyan { color: var(--brand-cyan); }

.editorial-heading {
    margin-bottom: 30px;
    max-width: 780px;
}
.section-header-centered .editorial-heading {
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.body-lead {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.45;
    color: var(--color-text-dark);
    margin-bottom: 25px;
}

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

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

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
}

/* --- ADVANCED CSS ANIMATIONS ENGINE --- */
.scroll-reveal {
    opacity: 0;
    transition: opacity 1.4s var(--transition-lux), transform 1.4s var(--transition-lux);
    will-change: transform, opacity;
}

.scroll-reveal.format-up { transform: translateY(50px); }
.scroll-reveal.format-left { transform: translateX(-50px); }
.scroll-reveal.format-right { transform: translateX(50px); }

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.dynamic-delay-1 { transition-delay: 0.15s; }
.dynamic-delay-2 { transition-delay: 0.3s; }
.dynamic-delay-3 { transition-delay: 0.45s; }

/* --- VIDEO HOVER ENGINE --- */
.has-hover-video {
    position: relative;
    overflow: hidden; 
}

.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    pointer-events: none; 
    transition: opacity 0.5s ease, transform 6s linear;
}

.has-hover-video.is-playing .hover-video {
    opacity: 1;
    transform: scale(1.05); 
}

.rep-card .hover-video { z-index: 1; }
.rep-overlay { z-index: 2; position: relative; }
.rep-card-text { z-index: 3; position: relative; }

.seasonal-card .hover-video { z-index: 1; }

/* --- HEADER SYSTEM --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s var(--transition-lux);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.5s var(--transition-lux);
}

.main-header.scrolled .header-container {
    padding: 15px 4%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.5s var(--transition-lux);
}

.main-header.scrolled .brand-logo {
    filter: none;
}

.nav-links ul {
    display: flex;
    gap: 40px;
    align-items: center;
	list-style-type: none;
}

.nav-item {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.main-header.scrolled .nav-item {
    color: var(--color-text-dark);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--transition-lux);
}

.nav-item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-item:hover { color: var(--brand-cyan); }
.main-header.scrolled .nav-item:hover { color: var(--brand-orange); }
.main-header.scrolled .nav-item:hover::after { background-color: var(--brand-orange); }

.btn-enquire {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--brand-orange);
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.4s var(--transition-lux);
    box-shadow: 0 4px 15px rgba(247, 145, 30, 0.3);
}

.btn-enquire:hover {
    background-color: var(--brand-cyan);
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.4);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.main-header.scrolled .mobile-menu-toggle span {
    background-color: var(--color-text-dark);
}

/* Mobile Navigation Drawer Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 999;
    padding: 120px 40px;
    transition: right 0.5s var(--transition-lux);
}

.mobile-nav.open { right: 0; }

.mobile-nav-links ul{
    display: flex;
    flex-direction: column;
    gap: 35px;
	list-style-type: none;
}

.mobile-nav-item {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: #ffffff;
}

.mobile-btn-enquire {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-orange);
    font-weight: 700;
}

/* --- VIDEO BANNER SYSTEM --- */
.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 100%;
    max-width: 900px;
    padding: 0 24px;
    margin-top: 60px;
}

.banner-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 25px;
    color: var(--brand-cyan);
}

.banner-title {
    color: #ffffff;
    margin-bottom: 25px;
}

.banner-lead {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
}

/* Floating Modular Bar */
.banner-search-bar {
    background-color: #ffffff;
    border-radius: 100px;
    padding: 10px 14px 10px 35px;
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.search-segment {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.search-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 4px;
}

.search-segment input {
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    outline: none;
    width: 100%;
}

.search-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
    margin: 0 30px;
}

.search-submit-btn {
    background-color: var(--brand-cyan);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-submit-btn:hover {
    background-color: var(--brand-orange);
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--brand-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScrollAnim 2s infinite ease-in-out;
}

@keyframes mouseScrollAnim {
    0% { opacity: 0; top: 6px; }
    20% { opacity: 1; }
    100% { opacity: 0; top: 22px; }
}

/* --- EXPERIENCES STATIC GRID --- */
.experience-static-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.experience-card {
    height: 120px;
    background-color: #ffffff;
    border: 1px solid #d2d7e0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    transition: all 0.4s var(--transition-lux);
    text-decoration: none; 
    color: inherit;
}

.experience-card:hover {
    border-color: var(--brand-cyan);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 174, 239, 0.08);
}

.exp-icon-wrapper {
    font-size: 2.2rem; 
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    line-height: 1;
}

#experiences .exp-card-title {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-text-dark);
    text-align: center;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: normal;
    padding: 0;
}

/* --- HOW IT WORKS (Section 5) --- */
.journey-step-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 50px 40px;
    border-radius: 8px;
    transition: all 0.4s var(--transition-lux);
}
.journey-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-cyan);
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.step-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--brand-cyan);
    display: block;
    margin-bottom: 20px;
}

.step-title {
    margin-bottom: 15px;
}

.text-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--brand-orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.text-link i { transition: transform 0.3s var(--transition-lux); }
.text-link:hover i { transform: translateX(6px); }


/* ==========================================================================
   START YOUR JOURNEY REPLICA (EXACT IMAGE MATCH + INTERACTIVE TABS)
   ========================================================================== */

.replica-header {
    text-align: center;
    margin-bottom: 40px;
}

.replica-title {
    font-family: var(--font-condensed);
    font-size: 2.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
}

.replica-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.rep-tab {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    font-weight: 600;
    padding-bottom: 8px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.rep-tab:hover {
    color: #111;
}

.rep-tab.active {
    color: #111;
}

.rep-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #a64d79;
}

/* Tab Content Visibility Engine */
.tab-content {
    display: none; 
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    animation: tabFadeIn 0.6s var(--transition-lux) forwards;
}

@keyframes tabFadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.rep-card {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden; 
}

.rep-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    transition: background-color 0.4s var(--transition-lux);
}

.rep-card:hover .rep-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.rep-card-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.replica-footer {
    text-align: center;
}

.btn-rep-view {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 45px;
    transition: background-color 0.3s ease;
}

.btn-rep-view:hover {
    background-color: #333333;
}


/* ==========================================================================
   EXPLORE PILGRIMAGE DESTINATIONS (EXACT LAYOUT)
   ========================================================================== */
/* .pilgrimage-section {
    background-color: #ffffff; 
} */

.pilgrimage-header {
    margin-bottom: 30px;
    text-align: left;
}

.pilgrimage-title {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pilgrimage-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #666666;
    margin-bottom: 0;
}

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

.pilgrimage-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pilgrimage-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.pilgrimage-img-wrapper {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.pilgrimage-img-wrapper img, 
.pilgrimage-img-wrapper .hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-lux);
}

.pilgrimage-card:hover .pilgrimage-img-wrapper img,
.pilgrimage-card.is-playing .hover-video {
    transform: scale(1.05);
}

.pilgrimage-img-wrapper .hover-video { z-index: 1; }
.pilgrimage-img-wrapper img { z-index: 0; position: relative; }

.pilgrimage-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pilgrimage-card-title {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.pilgrimage-card-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #555555;
    margin-bottom: 22px;
    line-height: 1.4;
}

.btn-explore {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e86b24;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.btn-explore:hover {
    background-color: #cc5c1d;
    color: #ffffff;
}

.btn-explore i {
    font-size: 0.75rem;
}


/* ==========================================================================
   SEASONAL ESCAPES & CULTURAL EXPERIENCES (MANUAL CAROUSEL)
   ========================================================================== */
/* .seasonal-section {
    background-color: #ffffff; 
} */

.seasonal-header {
    margin-bottom: 30px;
    text-align: left;
}

.seasonal-title {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 600; 
    color: #1a1a1a;
    margin-bottom: 8px;
}

.seasonal-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #666666;
    margin-bottom: 0;
}

.seasonal-carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-arrow {
    position: absolute;
    top: calc(50% - 22px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #1a1a1a;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: #e86b24;
    color: #ffffff;
    border-color: #e86b24;
}

.left-arrow {
    left: -22px;
}

.right-arrow {
    right: -22px;
}

.seasonal-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
}

.seasonal-track::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.seasonal-card {
    flex: 0 0 calc(20% - 16px); /* Forces exactly 5 cards to show perfectly on desktop */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    scroll-snap-align: start;
}

.seasonal-card img, 
.seasonal-card .hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-lux);
    z-index: 0;
}

.seasonal-card:hover img, 
.seasonal-card.is-playing .hover-video {
    transform: scale(1.05);
}

.seasonal-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    z-index: 2;
}

.seasonal-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.seasonal-card-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.seasonal-card-loc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: #dddddd;
    margin-bottom: 15px;
}

.btn-packages {
    background-color: #e86b24; 
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.seasonal-card:hover .btn-packages {
    background-color: #cc5c1d;
}

/* ==========================================================================
   HANDPICKED DEALS & EXPERIENCES (NEW SECTION)
   ========================================================================== */
/* .deals-section {
    background-color: #ffffff;
} */

.deals-header {
    margin-bottom: 30px;
    text-align: left;
}

.deals-title {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.deals-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: #666666;
    margin-bottom: 0;
}

.deals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.deal-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.deal-card img {
    width: 100%;
    height: auto;
    display: block;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* --- USP CARDS --- */
.usp-card {
    padding: 10px;
}

.usp-icon {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.usp-title { margin-bottom: 15px; }


/* --- PREMIUM FOOTER ARCHITECTURE --- */
.main-footer {
    background-color: #FFF8E8; /* Light cream */
    background-image: url('https://unxgo.com/wp-content/uploads/2026/08/footer-bottom-bg-scaled.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    position: relative;
	padding: 100px 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.5fr 0.7fr 1.1fr;
    gap: 50px;
    margin-bottom: 80px;
}
.footer-logo-wrapper {
    display: inline-block;
    margin-bottom: 25px;
}

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

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: #000;
    margin-bottom: 30px;
}

.social-links { display: flex; gap: 16px; }
.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid #1f232b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
}
.social-links a:hover { border-color: var(--brand-cyan); }

.footer-nav-col h4, .footer-newsletter-col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 30px;
}

.footer-nav-col ul, .footer-newsletter-col ul { list-style: none; }
.footer-nav-col ul li, .footer-newsletter-col ul li { margin-bottom: 15px; }
.footer-nav-col ul li a, .footer-newsletter-col ul li a { font-size: 0.9rem; color: #000; transition: color 0.3s ease; }
.footer-nav-col ul li a:hover, .footer-newsletter-col ul li a:hover { color: var(--brand-orange); }

.footer-newsletter-col p { font-size: 0.9rem; color: var(--brand-orange); margin-bottom: 25px; }

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #282d37;
    padding-bottom: 8px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    flex: 1;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--brand-cyan);
    cursor: pointer;
    font-size: 1rem;
}

.footer-bottom-row {
    border-top: 1px solid #16191e;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text, .footer-legal-links a {
    font-size: 0.8rem;
    text-align: center;
    color: #525965;
}
.footer-legal-links { display: flex; gap: 30px; }
.footer-legal-links a:hover { color: #ffffff; }

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE REPAIR PACK
   ========================================================================== */
@media (max-width: 1100px) {
    .split-layout { grid-template-columns: 100%; gap: 50px; }
    .grid-3-col, .pilgrimage-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-4-col { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .section-header-split { flex-direction: column; align-items: flex-start; gap: 20px; }
    .tab-content.active { grid-template-columns: repeat(3, 1fr); }
    .experience-static-grid { grid-template-columns: repeat(4, 1fr); }
    
    .seasonal-card { flex: 0 0 calc(33.333% - 14px); } /* Show 3 on tablet */
}

@media (max-width: 768px) {
    .nav-links, .header-actions .btn-enquire { display: none; }
    .mobile-menu-toggle { display: flex; }
    .grid-3-col, .grid-4-col, .footer-grid, .pilgrimage-grid { grid-template-columns: 100%; }
    .banner-search-bar { flex-direction: column; border-radius: 20px; padding: 20px; gap: 15px; }
    .search-divider { display: none; }
    .search-submit-btn { width: 100%; border-radius: 8px; height: 48px; }
    .footer-bottom-row { flex-direction: column; gap: 20px; text-align: center; }
    .tab-content.active { grid-template-columns: repeat(2, 1fr); }
    .replica-tabs { gap: 15px; }
    .experience-static-grid { grid-template-columns: repeat(3, 1fr); }
    .deals-grid { grid-template-columns: 100%; }
    
    .seasonal-card { flex: 0 0 calc(50% - 10px); } /* Show 2 on mobile landscape */
    .left-arrow { left: 0; }
    .right-arrow { right: 0; }
}

@media (max-width: 480px) {
    .tab-content.active { grid-template-columns: 1fr; }
    .rep-card { height: 350px; }
    .experience-static-grid { grid-template-columns: repeat(2, 1fr); }
    
    .seasonal-card { flex: 0 0 85%; } /* Show 1 mostly on mobile portrait */
}

/* ==========================================================================
   ABOUT PAGE DISTINCT STYLES
   ========================================================================== */

.about-page-main {
    background-color: var(--color-bg-primary);
    overflow: hidden;
}

/* --- 1. HERO BANNER --- */
.about-hero-distinct {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0; /* Assuming header is fixed */
}

.about-hero-bg {
    position: absolute;
    top: -10%; /* Offset for parallax */
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax */
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
}

.about-hero-content.loaded {
    animation: heroFadeIn 1.5s var(--transition-lux) forwards;
}

@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.about-hero-tag {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 20px;
}

.about-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
}

/* --- 2. ABOUT INTRO --- */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 12px;
}

.image-frame img {
    border-radius: 12px;
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-cyan);
    border-radius: 12px;
    z-index: 1;
}

/* --- 3. VISION & MISSION (Asymmetrical) --- */
.relative-container {
    position: relative;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 40px;
    align-items: center;
}

.vm-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    position: relative;
    z-index: 3;
}

.vision-card {
    transform: translateY(-40px);
    border-top: 4px solid var(--brand-cyan);
}

.mission-card {
    transform: translateY(40px);
    border-top: 4px solid var(--brand-orange);
}

.vm-center-image {
    position: relative;
    z-index: 2;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.vm-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.vm-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* --- 4. USP SECTION (Dark Theme) --- */
.distinct-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 60px;
}

.distinct-usp-item {
    position: relative;
    padding-left: 80px;
}

.d-usp-number {
    position: absolute;
    left: 0;
    top: -10px;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(255,255,255,0.05);
    font-weight: 600;
    line-height: 1;
}

.d-usp-title {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* --- 5. WHAT WE OFFER (Editorial Masonry) --- */
.offer-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.offer-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.offer-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-lux);
}

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

.offer-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    z-index: 1;
}

.offer-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 2;
    color: #ffffff;
}

.offer-text h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.offer-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--transition-lux);
}

.offer-item:hover .offer-text p {
    opacity: 1;
    transform: translateY(0);
}

/* Masonry Span Utilities */
.offer-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.offer-item.small {
    grid-column: span 2;
    grid-row: span 1;
}

.offer-item.wide {
    grid-column: span 4;
    grid-row: span 1;
}

/* --- ABOUT PAGE ANIMATIONS --- */
.about-reveal {
    opacity: 0;
    transition: opacity 1.2s var(--transition-lux), transform 1.2s var(--transition-lux);
    will-change: transform, opacity;
}
.about-reveal.format-up { transform: translateY(40px); }
.about-reveal.format-left { transform: translateX(-40px); }
.about-reveal.format-right { transform: translateX(40px); }
.about-reveal.active { opacity: 1; transform: translate(0) scale(1); }

/* --- RESPONSIVE FIXES FOR ABOUT PAGE --- */
@media (max-width: 1024px) {
    .about-intro-grid { grid-template-columns: 100%; gap: 50px; }
    .vm-grid { grid-template-columns: 1fr; gap: 30px; }
    .vm-center-image { display: none; /* Hide center image on tablet/mobile for flow */ }
    .vision-card, .mission-card { transform: none; border-top: none; border-left: 4px solid; }
    .vision-card { border-left-color: var(--brand-cyan); }
    .mission-card { border-left-color: var(--brand-orange); }
    .distinct-usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .distinct-usp-grid { grid-template-columns: 100%; gap: 40px; }
    .offer-masonry { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .offer-item.large, .offer-item.small, .offer-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==========================================================================
   EXPERIENCE SHOWCASE PAGE (UNIQUE LAYOUT)
   ========================================================================== */

.experience-showcase {
    background-color: var(--color-bg-primary);
    min-height: 80vh;
}

.exp-layout {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: flex-start;
}

/* --- Sidebar Navigation --- */
.exp-sidebar {
    position: sticky;
    top: 120px; /* Keeps the menu in view while scrolling the grid */
}

.exp-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.exp-nav-btn {
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-condensed);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a1a;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.exp-nav-btn:hover {
    color: var(--brand-orange);
    transform: translateX(5px);
}

.exp-nav-btn.active {
    color: #e6007e; /* The vibrant pink highlight from the screenshot */
}

/* --- Content Grid --- */
.exp-content {
    position: relative;
    width: 100%;
}

.exp-grid {
    display: none; /* Hidden by default */
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.exp-grid.active {
    display: grid;
    animation: gridFadeIn 0.6s var(--transition-lux) forwards;
}

@keyframes gridFadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* --- Experience Cards --- */
.exp-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px; /* Tall portrait aspect ratio */
    overflow: hidden;
    text-decoration: none;
    background-color: #f0f0f0;
}

.exp-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s var(--transition-lux);
}

.exp-card:hover img {
    transform: scale(1.08);
}

.exp-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35); /* Dark tint to make white text pop */
    z-index: 2;
    transition: background-color 0.4s ease;
}

.exp-card:hover .exp-card-overlay {
    background-color: rgba(0, 0, 0, 0.2); /* Lightens slightly on hover */
}

.exp-card-title {
    position: relative;
    z-index: 3;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.4;
    padding: 0 10px;
}

/* Solid Dark View All Card */
.view-all-card {
    background-color: #333333;
}
.view-all-card:hover {
    background-color: var(--brand-orange);
}
.view-all-card .exp-card-overlay {
    display: none; /* No overlay needed for solid color card */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1200px) {
    .exp-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .exp-layout {
        grid-template-columns: 100%;
        gap: 30px;
    }
    .exp-sidebar {
        position: relative;
        top: 0;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 20px;
    }
    .exp-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px 25px;
    }
    .exp-nav-btn {
        font-size: 0.95rem;
    }
    .exp-nav-btn:hover {
        transform: none; /* Disable horizontal slide on horizontal nav */
    }
    .exp-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-card { height: 300px; }
}

@media (max-width: 480px) {
    .exp-grid { grid-template-columns: 1fr; }
    .exp-card { height: 350px; }
}

/* ==========================================================================
   DESTINATION / TRIP FINDER RESULTS STYLES
   ========================================================================== */

.dest-results-main {
    min-height: 100vh;
}

.dest-layout-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* --- Sidebar Filters --- */
.dest-sidebar {
    position: sticky;
    top: 100px;
    background-color: transparent;
}

.dest-sidebar-inner {
    padding-right: 20px;
}

.filter-header {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.filter-group {
    margin-bottom: 35px;
}

.filter-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-orange);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Custom Checkbox Styling */
.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
    user-select: none;
}

.custom-checkbox:hover {
    color: var(--color-text-dark);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--brand-cyan);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--brand-cyan);
    border-color: var(--brand-cyan);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-clear-filters {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888888;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.btn-clear-filters:hover {
    color: #e6007e;
}

/* --- Results Header --- */
.dest-results-header {
/*     display: flex; */
	display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.dest-results-header .editorial-heading {
    margin-bottom: 0;
    font-size: 2.2rem;
}

/* --- Grid & Loading Animation --- */
.dest-results-container {
    position: relative;
    min-height: 500px;
}

.dest-loader {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 10;
}

.dest-loader.active {
    display: block;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 174, 239, 0.2);
    border-top-color: var(--brand-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    transition: opacity 0.3s ease;
}

.dest-grid.filtering {
    opacity: 0.3;
    pointer-events: none;
}

/* --- Destination Cards --- */
.dest-card {
    display: flex;
    flex-direction: column;
    /* Cards are managed by JS display property */
}

.dest-img-box {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
    display: block;
}

.dest-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-lux);
    z-index: 0;
}

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

.dest-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.dest-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #ffffff;
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 3;
}

.dest-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-meta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-cyan);
    font-weight: 600;
    margin-bottom: 12px;
}

.dest-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.dest-title a {
    transition: color 0.3s ease;
}

.dest-title a:hover {
    color: var(--brand-orange);
}

.dest-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.dest-link-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.dest-link-btn i {
    transition: transform 0.3s var(--transition-lux);
}

.dest-link-btn:hover {
    color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.dest-link-btn:hover i {
    transform: translateX(5px);
}

/* --- "Load More" Button & Pagination Area --- */
.load-more-container {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.btn-load-more {
    background-color: var(--color-bg-dark);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 45px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-load-more:hover {
    background-color: var(--brand-orange);
    transform: translateY(-2px);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .dest-layout-wrapper {
        grid-template-columns: 220px 1fr;
        gap: 40px;
    }
    .dest-img-box {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .dest-layout-wrapper {
        grid-template-columns: 100%;
        gap: 40px;
    }
    .dest-sidebar {
        position: relative;
        top: 0;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 20px;
    }
    .dest-sidebar-inner {
        padding-right: 0;
    }
    .filter-group {
        display: inline-block;
        vertical-align: top;
        margin-right: 30px;
    }
    .dest-grid {
        grid-template-columns: 100%;
    }
    .dest-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ==========================================================================
   DESTINATION SINGLE PAGE (EDITORIAL LAYOUT)
   ========================================================================== */

.dest-single-main {
    background-color: var(--color-bg-primary);
    overflow: hidden;
}

/* --- 1. Hero Section --- */
.ds-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ds-hero-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

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

.ds-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 80px;
}

.ds-breadcrumb {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
}

.ds-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 8vw, 7rem);
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ds-hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-scroll-down {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid var(--brand-cyan);
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-scroll-down i {
    animation: bounceDown 2s infinite ease-in-out;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(5px); }
    60% { transform: translateY(3px); }
}

.btn-scroll-down:hover {
    color: var(--brand-cyan);
}

/* --- 2. Editorial Overview --- */
.ds-overview-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
}

/* --- 3. Regions Masonry Grid --- */
.ds-masonry-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.ds-region-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    text-decoration: none;
}

.ds-region-card img,
.ds-region-card .hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s var(--transition-lux);
}

.ds-region-card:hover img,
.ds-region-card.is-playing .hover-video {
    transform: scale(1.05);
}

.ds-region-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: 2;
}

.ds-region-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.ds-region-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.ds-region-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s var(--transition-lux);
}

.ds-region-card:hover .ds-region-desc {
    transform: translateY(0);
    opacity: 1;
}

/* Masonry Span Classes */
.ds-card-large { grid-column: span 8; grid-row: span 2; }
.ds-card-tall { grid-column: span 4; grid-row: span 2; }
.ds-card-standard { grid-column: span 4; grid-row: span 2; }
.ds-card-wide { grid-column: span 8; grid-row: span 2; }


/* --- 4. Signature Itineraries --- */
.btn-outline-light {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--color-bg-dark);
}

.ds-trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ds-trip-item {
    display: flex;
    flex-direction: column;
}

.ds-trip-img {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    margin-bottom: 25px;
}

.ds-trip-img img,
.ds-trip-img .hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-lux);
}

.ds-trip-img:hover img,
.ds-trip-img.is-playing .hover-video {
    transform: scale(1.05);
}

.ds-trip-duration {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 3;
}

.ds-trip-theme {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-orange);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.ds-trip-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.ds-trip-title a {
    color: #000000;
    transition: color 0.3s ease;
}
.ds-trip-title a:hover { color: var(--brand-cyan); }


/* --- 5. Climate Matrix --- */
.climate-matrix {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.climate-month {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.climate-month:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.month-name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.weather-icon {
    font-size: 1.5rem;
}

/* Color Coding for Seasons */
.climate-month.excellent { border-top: 4px solid var(--brand-orange); }
.climate-month.excellent .weather-icon { color: var(--brand-orange); }

.climate-month.great { border-top: 4px solid var(--brand-cyan); }
.climate-month.great .weather-icon { color: var(--brand-cyan); }

.climate-month.good { border-top: 4px solid #555555; }
.climate-month.good .weather-icon { color: #555555; }

.climate-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.legend-color.excellent { background-color: var(--brand-orange); }
.legend-color.great { background-color: var(--brand-cyan); }
.legend-color.good { background-color: #555555; }


/* --- 6. Where to Stay (Carousel) --- */
.ds-stays-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-orange) transparent;
}

.ds-stays-carousel::-webkit-scrollbar {
    height: 6px;
}
.ds-stays-carousel::-webkit-scrollbar-thumb {
    background-color: var(--brand-orange);
    border-radius: 10px;
}

.ds-stay-card {
    flex: 0 0 300px;
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    display: block;
}

.ds-stay-card img,
.ds-stay-card .hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-lux);
}

.ds-stay-card:hover img,
.ds-stay-card.is-playing .hover-video {
    transform: scale(1.05);
}

.stay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #ffffff;
    z-index: 3;
}

.stay-info h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.stay-info span {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--brand-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}


/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .ds-overview-layout { grid-template-columns: 100%; gap: 30px; }
    .ds-card-large { grid-column: span 12; }
    .ds-card-tall, .ds-card-standard { grid-column: span 6; }
    .ds-card-wide { grid-column: span 12; }
    .ds-trips-grid { grid-template-columns: repeat(2, 1fr); }
    .climate-matrix { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 768px) {
    .ds-hero-title { font-size: 4rem; }
    .ds-card-tall, .ds-card-standard { grid-column: span 12; grid-row: span 1; }
    .ds-trips-grid { grid-template-columns: 100%; }
    .climate-matrix { grid-template-columns: repeat(4, 1fr); }
    .section-header-split { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
    .climate-matrix { grid-template-columns: repeat(3, 1fr); }
    .ds-stay-card { flex: 0 0 260px; }
}

/* ==========================================================================
   INSPIRATIONS (BLOG) PAGE STYLES
   ========================================================================== */

.inspirations-main {
    min-height: 100vh;
}

/* --- 1. Editorial Hero --- */
.insp-hero-section {
    margin-bottom: 20px;
}

.insp-hero-card {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    background-color: var(--color-bg-dark);
}

.insp-hero-card img,
.insp-hero-card .hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 1.2s var(--transition-lux);
}

.insp-hero-card:hover img,
.insp-hero-card.is-playing .hover-video {
    transform: scale(1.05);
}

.insp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 2;
}

.insp-hero-content {
    position: relative;
    z-index: 3;
    padding: 60px;
    color: #ffffff;
}

.insp-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.insp-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 15px;
    color: #ffffff;
}

.insp-hero-excerpt {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.6;
}

.insp-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.insp-read-btn i {
    transition: transform 0.3s var(--transition-lux);
}

.insp-hero-card:hover .insp-read-btn {
    color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.insp-hero-card:hover .insp-read-btn i {
    transform: translateX(6px);
}

/* --- 2. Sticky Filter Bar --- */
.insp-filter-wrapper {
    position: sticky;
    top: 70px; /* Sits just below the header */
    background-color: rgba(245, 240, 234, 0.95); /* Matches bg-warm */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 100;
    padding: 15px 0;
}

.insp-filter-bar {
    display: flex;
    justify-content: center;
    gap: 35px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.insp-filter-bar::-webkit-scrollbar {
    display: none;
}

.insp-filter-btn {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    padding: 5px 0;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
}

.insp-filter-btn::after {
    content: '';
    position: absolute;
    bottom: -15px; /* Reaches down to the wrapper border */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.insp-filter-btn:hover {
    color: var(--color-text-dark);
}

.insp-filter-btn.active {
    color: var(--color-text-dark);
}

.insp-filter-btn.active::after {
    transform: scaleX(1);
}

/* --- 3. Article Grid Layouts --- */
.insp-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.insp-card-img {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
}

.insp-card-img img,
.insp-card-img .hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--transition-lux);
    z-index: 0;
}

.insp-card:hover .insp-card-img img,
.insp-card.is-playing .hover-video {
    transform: scale(1.06);
}

.insp-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insp-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.insp-date {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insp-card-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.insp-card-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.insp-card:hover .insp-card-title a {
    color: var(--brand-orange);
}

.insp-card-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Asymmetrical Featured Layout */
.insp-featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--color-border);
}

.insp-card-large .insp-card-img {
    height: 480px;
}

.insp-card-large .insp-card-title {
    font-size: 2.5rem;
}

.insp-stacked-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insp-stacked-col .insp-card-img {
    height: 220px;
}

/* Standard Grid */
.insp-standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

.insp-standard-grid.filtering {
    opacity: 0.3;
    pointer-events: none;
}

/* --- 4. Load More Button --- */
.insp-load-more {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.btn-editorial-dark {
    background-color: var(--color-text-dark);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-editorial-dark:hover {
    background-color: var(--brand-cyan);
    transform: translateY(-2px);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .insp-featured-grid { grid-template-columns: 100%; gap: 60px; }
    .insp-stacked-col { flex-direction: row; }
    .insp-standard-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .insp-hero-content { padding: 40px 20px; }
    .insp-filter-bar { justify-content: flex-start; padding-left: 20px; padding-right: 20px; }
    .insp-filter-btn::after { bottom: -16px; }
    .insp-stacked-col { flex-direction: column; }
    .insp-standard-grid { grid-template-columns: 100%; }
    .insp-card-large .insp-card-img { height: 350px; }
}

/* ==========================================================================
   INSPIRATIONS INNER PAGE (ARTICLE) STYLES
   ========================================================================== */

.insp-article-main {
    padding-bottom: 100px;
}

/* --- Article Hero --- */
.insp-article-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ds-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.insp-article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.insp-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.insp-article-title {
    font-size: clamp(3rem, 7vw, 6rem);
    color: #ffffff;
    margin-bottom: 20px;
}

.insp-article-author {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
}

/* --- Article Body Layout --- */
.article-container {
    max-width: 1000px; /* Editorial narrow reading column */
    padding: 80px 4%;
}

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

.article-subheading {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--color-text-dark);
}

.dropcap {
    float: left;
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 0.8;
    color: var(--brand-orange);
    margin-right: 15px;
    margin-top: 5px;
}

.article-lead {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 30px;
}

/* --- Imagery --- */
.article-full-bleed {
    margin: 60px 0;
}

.bleed-box {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.img-caption {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 15px;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-item {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.article-cta {
    text-align: center;
    margin-top: 80px;
}

/* ==========================================================================
   CONTACT PAGE DISTINCT STYLES
   ========================================================================== */

/* Banner */
.page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

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

/* Contact Grid */
.cta-layout-distinct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-item h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

/* Map Styling */
.map-frame {
    height: 450px;
    width: 100%;
    background-color: #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.map-placeholder {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-layout-distinct { grid-template-columns: 100%; gap: 50px; }
    .contact-grid { grid-template-columns: 100%; }
}

/* Luxury Form Field Styling */
.luxury-enquiry-form {
    display: flex;
    flex-direction: column;
}

.form-field {
    position: relative;
    width: 100%;
	margin-bottom: 30px;
}

.form-field input, 
.form-field select, 
.form-field textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-field label {
    position: absolute;
    top: 12px;
    left: 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating Label Animation */
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 0.75rem;
    color: var(--brand-cyan);
}

.form-field input:focus, 
.form-field textarea:focus {
    border-bottom-color: var(--brand-cyan);
}

.btn-form-submit {
    background-color: var(--color-text-dark);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-form-submit:hover {
    background-color: var(--brand-orange);
}

/* ==========================================================================
   HOTEL DETAIL PAGE (LUXURY REDESIGN)
   ========================================================================== */

/* --- 1. Hero Section --- */
.hotel-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hotel-hero-bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

.hotel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding-top: 80px;
}

.hotel-tag {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--brand-orange);
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.hotel-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 5rem);
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hotel-location-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.05em;
}

.hotel-location-subtitle i {
    color: var(--brand-cyan);
    margin-right: 8px;
}

/* --- 2. Overview Stats --- */
.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.stat-box i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.stat-box h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 5px;
}

.stat-box p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin: 0;
}

.mt-4 { margin-top: 30px; display: inline-block; }

.btn-editorial-dark {
    background-color: var(--color-text-dark);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-editorial-dark:hover {
    background-color: var(--brand-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- 3. Rooms Section --- */
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.room-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.room-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.room-img {
    height: 280px;
    width: 100%;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.room-details {
    padding: 30px;
}

.room-details h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.room-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.room-features li {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-features li i {
    color: var(--brand-cyan);
    font-size: 0.8rem;
}

/* --- 4. Amenities Grid --- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.amenity-item {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgb(0 0 0 / 28%);
    padding: 30px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.amenity-item:hover {
    background-color: rgba(255,255,255,0.08);
}

.amenity-item i {
    font-size: 2rem;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.amenity-item h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 10px;
}

.amenity-item p {
    color: rgb(0 0 0 / 60%);
    font-size: 0.9rem;
    margin: 0;
}

/* --- 5. Distances & Location --- */
.mb-4 { margin-bottom: 30px; }

.distance-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.distance-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.dist-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dist-info h5 {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.dist-info p {
    font-size: 0.9rem;
    margin: 0;
}

.aesthetic-map {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.aesthetic-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: floatPin 3s ease-in-out infinite;
}

.map-pin-overlay i {
    color: #e6007e; /* Maps marker red/pink */
    font-size: 1.2rem;
}

@keyframes floatPin {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}

/* --- 6. Interactive Gallery Grid --- */
.interactive-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
}

.gallery-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img-box.wide {
    grid-column: span 2;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-img-box:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: #ffffff;
    font-size: 2.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-img-box:hover .zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- 7. Lightbox Modal --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev:hover, .lightbox-next:hover, .lightbox-close:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #ffffff;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: 100%; gap: 30px; }
    .amenities-grid { grid-template-columns: repeat(4, 1fr); }
    .interactive-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hotel-hero-title { font-size: 3rem; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .interactive-gallery-grid { grid-template-columns: 100%; }
    .gallery-img-box.wide { grid-column: span 1; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-prev, .lightbox-next { width: 45px; height: 45px; font-size: 1.2rem; }
}


/* ==========================================================================
   HOTEL LISTING PAGE STYLES
   ========================================================================== */

.hotel-list-main {
    min-height: 100vh;
}

/* --- Filter Dropdown --- */
.luxury-filter select {
    appearance: none;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--brand-cyan);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    padding: 10px 30px 10px 0;
    cursor: pointer;
    outline: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23111" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    transition: border-color 0.3s ease;
}

.luxury-filter select:hover, .luxury-filter select:focus {
    border-bottom-color: var(--brand-orange);
}

/* --- Hotel Grid --- */
.hotel-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    transition: opacity 0.3s ease;
}

.hotel-list-grid.filtering {
    opacity: 0.3;
    pointer-events: none;
}

/* --- Hotel Card --- */
.hotel-list-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s var(--transition-lux), box-shadow 0.4s var(--transition-lux);
}

.hotel-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hotel-list-img {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: block;
}

.hotel-list-img img,
.hotel-list-img .hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-lux);
    z-index: 0;
}

.hotel-list-card:hover .hotel-list-img img,
.hotel-list-card.is-playing .hover-video {
    transform: scale(1.08);
}

.hotel-list-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 3;
    pointer-events: none;
}

.hotel-list-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-list-meta {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-orange);
    font-weight: 700;
    margin-bottom: 12px;
}

.hotel-list-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hotel-list-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.btn-know-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--brand-cyan);
    align-self: flex-start;
    transition: color 0.3s ease;
}

.btn-know-more i {
    transition: transform 0.3s var(--transition-lux);
}

.hotel-list-card:hover .btn-know-more {
    color: var(--brand-orange);
}

.hotel-list-card:hover .btn-know-more i {
    transform: translateX(6px);
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .hotel-list-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
}

@media (max-width: 768px) {
    .section-header-split { flex-direction: column; align-items: flex-start; gap: 20px; }
    .hotel-list-grid { grid-template-columns: 100%; gap: 30px; }
    .hotel-list-img { height: 220px; }
}

/* ==========================================================================
   PARTNER WITH US PAGE STYLES
   ========================================================================== */

/* Benefits Grid */
.partner-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-item i {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

/* Specific Form Adjustments for Partner Page */
.partner-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

@media (max-width: 1024px) {
    .partner-form { padding: 30px; }
}

@media (max-width: 768px) {
    .partner-benefits-grid { grid-template-columns: 100%; gap: 20px; }
    .partner-form { padding: 25px 20px; }
}

/* ==========================================================================
   PRIVACY POLICY PAGE STYLES
   ========================================================================== */

/* Layout */
.split-layout-asymmetric {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Sidebar Navigation */
.privacy-sidebar {
    position: sticky;
    top: 120px; /* Accounts for fixed header */
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.sidebar-title {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-orange);
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.policy-nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.policy-nav-link:hover {
    color: var(--brand-cyan);
    transform: translateX(5px);
}

.policy-nav-link.active {
    color: var(--color-text-dark);
    font-weight: 700;
}

/* Legal Text Content */
.privacy-text-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.last-updated {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.policy-block {
    margin-bottom: 50px;
    padding-top: 20px;
}

.policy-block h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
}

.policy-list {
    margin-top: 15px;
    margin-bottom: 25px;
    padding-left: 20px;
}

.policy-list li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.policy-list strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .split-layout-asymmetric {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }
    .privacy-text-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .split-layout-asymmetric {
        grid-template-columns: 100%;
        gap: 30px;
    }
    .privacy-sidebar {
        position: relative;
        top: 0;
        padding: 20px;
    }
    .privacy-text-content {
        padding: 30px 20px;
    }
    .policy-block h3 {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   LEGAL PAGES (TERMS & CONDITIONS / PRIVACY) STYLES
   ========================================================================== */

.legal-page-main {
    min-height: 100vh;
}

/* Layout */
.split-layout-asymmetric {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Sidebar Navigation */
.legal-sidebar {
    position: sticky;
    top: 120px; /* Accounts for fixed header */
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.sidebar-title {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-orange);
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-nav-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.legal-nav-link:hover {
    color: var(--brand-cyan);
    transform: translateX(5px);
}

.legal-nav-link.active {
    color: var(--color-text-dark);
    font-weight: 700;
}

/* Legal Text Content */
.legal-text-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    opacity: 1;
}

.last-updated {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.legal-block {
    margin-bottom: 50px;
    padding-top: 20px;
}

.legal-block h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
}

.legal-list {
    margin-top: 15px;
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-list li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-list strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .split-layout-asymmetric {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }
    .legal-text-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .split-layout-asymmetric {
        grid-template-columns: 100%;
        gap: 30px;
    }
    .legal-sidebar {
        position: relative;
        top: 0;
        padding: 20px;
    }
    .legal-text-content {
        padding: 30px 20px;
    }
    .legal-block h3 {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   HOTEL BOOKING PAGE STYLES
   ========================================================================== */

/* Booking Card Layout */
.booking-section .container {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
    padding: 0 4%;
}

.booking-card {
/*     display: flex; */
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
/*     min-height: 700px; */
}

/* Left Side Visuals */
.booking-visual-side {
    position: relative;
    width: 40%;
    overflow: hidden;
}

.booking-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-perks-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    color: #ffffff;
    z-index: 2;
}

.perks-list {
    list-style: none;
    padding: 0;
}

.perks-list li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.perks-list li i {
    color: var(--brand-orange);
}

/* Right Side Form */
.booking-form-side {
    padding: 60px 80px;
}

.form-section-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-cyan);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 10px;
}

/* Luxury Form Field Overrides for Date Inputs */
.luxury-booking-form .date-field label {
    /* Always keep date labels raised because the date placeholder cannot be hidden easily in CSS */
    top: -15px !important;
    font-size: 0.75rem !important;
    color: var(--color-text-muted) !important;
}

.luxury-booking-form .date-field input:focus ~ label {
    color: var(--brand-cyan) !important;
}

/* Select dropdown styling to ensure text fits nicely */
.luxury-booking-form select {
    color: var(--color-text-dark);
}
.luxury-booking-form select:disabled {
    color: #999999;
    background-color: #fafafa;
}

/* Responsive */
@media (max-width: 1100px) {
    .booking-form-side { padding: 50px; }
}

@media (max-width: 900px) {
    .booking-card { flex-direction: column; }
    .booking-visual-side { width: 100%; height: 350px; }
    .booking-form-side { width: 100%; padding: 40px 30px; }
    .form-row { grid-template-columns: 100%; gap: 30px; }
	.booking-section .container {max-width: 100%;}
}

/* ==========================================================================
   TOUR PACKAGES PAGE STYLES
   ========================================================================== */

.tour-packages-main {
    min-height: 100vh;
}

/* --- 1. Filter Bar --- */
.tour-filter-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    padding: 30px 0;
    top: 70px;
    z-index: 99;
}

.tour-filter-bar {
    display: flex;
    gap: 30px;
}

.filter-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-weight: 700;
}

.tour-select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23111" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right center;
    transition: border-color 0.3s ease;
}

.tour-select:focus, .tour-select:hover {
    border-bottom-color: var(--brand-cyan);
}

.tour-filter-bar .filter-group {
    margin-bottom: 0px;
}

.w-100 { width: 100%; }

/* --- 2. Featured Journey --- */
.featured-tour-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.featured-tour-visual {
    position: relative;
    width: 55%;
    overflow: hidden;
}

.featured-tour-visual img,
.featured-tour-visual .hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-lux);
}

.featured-tour-card:hover .featured-tour-visual img,
.featured-tour-visual.is-playing .hover-video {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--brand-orange);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 4px;
    z-index: 3;
}

.featured-tour-info {
    width: 45%;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.tour-meta {
    display: flex;
    gap: 20px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-cyan);
    margin-bottom: 15px;
}

.tour-meta i {
    margin-right: 5px;
}

.tour-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 35px;
}

.tour-inclusions span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-bg-warm);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.featured-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 25px;
}

.price-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.price-amount {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-text-dark);
}

.price-amount small {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* --- 3. Tour Grid --- */
.tour-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    transition: opacity 0.3s ease;
}

.tour-packages-grid.filtering {
    opacity: 0.3;
    pointer-events: none;
}

/* Hidden Class for Load More functionality */
.hidden-package {
    display: none;
}

.tour-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.tour-card-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: block;
}

.tour-card-img img,
.tour-card-img .hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-lux);
    z-index: 0;
}

.tour-card:hover .tour-card-img img,
.tour-card.is-playing .hover-video {
    transform: scale(1.08);
}

.card-duration {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 3;
}

.tour-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.card-region { color: var(--color-text-muted); }
.card-style { color: var(--brand-orange); font-weight: 700; }

.tour-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.tour-card-title a { color: inherit; transition: color 0.3s ease; }
.tour-card:hover .tour-card-title a { color: var(--brand-cyan); }

.tour-card-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.card-price {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.card-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--brand-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.card-link i { transition: transform 0.3s ease; }
.tour-card:hover .card-link { color: var(--brand-orange); }
.tour-card:hover .card-link i { transform: translateX(5px); }

.tour-load-more {
    text-align: center;
    margin-top: 50px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .tour-filter-bar { flex-wrap: wrap; }
    .filter-group { flex: 1 1 45%; }
    .filter-action { flex: 1 1 100%; margin-top: 10px; }
    .featured-tour-card { flex-direction: column; }
    .featured-tour-visual { width: 100%; height: 350px; }
    .featured-tour-info { width: 100%; padding: 40px; }
    .tour-packages-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
}

@media (max-width: 768px) {
    .tour-packages-grid { grid-template-columns: 100%; gap: 30px; }
    .filter-group { flex: 1 1 100%; }
    .featured-footer { flex-direction: column; align-items: flex-start; gap: 20px; }
    .tour-inclusions span { font-size: 0.75rem; }
}

/* ==========================================================================
   TOUR PACKAGE INNER PAGE STYLES
   ========================================================================== */

/* --- Hero & Quick Facts --- */
.tour-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.tour-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 50px;
}

.tour-hero-location {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tour-hero-location i { color: var(--brand-orange); margin-right: 8px; }

.quick-facts-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px; /* Pulls the bar up over the hero image */
    padding: 0 20px;
}

.quick-facts-bar {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fact-item i {
    font-size: 1rem;
}

.fact-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 700;
    margin-bottom: 3px;
}

.fact-value {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

.fact-value small { font-size: 0.85rem; color: #888; }

/* --- Overview --- */
.sub-heading {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.mt-4 { margin-top: 40px; }

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.highlights-list li i {
    color: var(--brand-cyan);
    margin-top: 4px;
}

.visual-box {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.visual-box img,
.visual-box .hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.visual-box:hover img,
.visual-box.is-playing .hover-video {
    transform: scale(1.05);
}

/* --- Itinerary Accordion --- */
.bg-light { background-color: #fcfbf9; }

.itinerary-accordion {
    max-width: 90%;
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
}

.itinerary-item {
    border-bottom: 1px solid var(--color-border);
}

.itinerary-header {
    width: 100%;
    background: none;
    border: none;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.day-meta {
    display: flex;
    align-items: center;
    gap: 30px;
}

.day-number {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-cyan);
    width: 150px;
}

.day-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.itinerary-header:hover .day-title {
    color: var(--brand-orange);
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    transition: transform 0.4s ease;
}

.itinerary-header.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--brand-cyan);
}

.itinerary-body {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.itinerary-content {
    padding: 0 0 40px 180px;
}

.itinerary-stay, .itinerary-meals {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}
.itinerary-stay strong, .itinerary-meals strong {
    color: var(--color-text-dark);
}

/* --- Inclusions/Exclusions --- */
.inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.check-list { list-style: none; padding: 0; }
.check-list li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-list.included li i { color: #28a745; margin-top: 4px; }
.check-list.excluded li i { color: #dc3545; margin-top: 4px; }
.check-list.excluded li { color: #777; }


/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .quick-facts-bar { padding: 20px 30px; }
    .inc-exc-grid { grid-template-columns: 100%; gap: 40px; padding: 40px; }
}

@media (max-width: 768px) {
    .quick-facts-bar { flex-direction: column; align-items: flex-start; gap: 25px; }
    .day-meta { flex-direction: column; align-items: flex-start; gap: 5px; }
    .day-number { width: auto; }
    .itinerary-content { padding: 0 0 30px 0; }
}

.tour-hero-content .editorial-heading, .tour-cta-section .editorial-heading {
    margin-bottom: 30px;
    max-width: none;
}