/* ============================================
   HALO GROUP — LUXURY TRAVEL
   Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg: #000000;
    --bg-dark: #080808;
    --gold: #c9a84c;
    --gold-light: #e0c068;
    --gold-grad: linear-gradient(90deg, #C89938 0%, #D3A74F 17%, #FFEC93 36%, #E4BF66 51%, #FED87E 68%, #C89938 85%, #956E0F 100%);
    --white: #ffffff;
    --grey: #888888;
    --grey-light: #aaaaaa;
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(15, 15, 15, 0.95);
    --trans: all 0.35s ease;
    --halo-sand: #c4a882;
    --halo-marina: #0d3b4c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-link,
.contact-copy a,
.footer-contact a,
.footer-links a {
    color: var(--halo-sand);
}

.contact-detail-link:hover,
.contact-copy a:hover,
.footer-contact a:hover,
.footer-links a:hover {
    color: var(--gold-light);
}

h1,
h2,
h3,
h4,
.serif-caps {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.serif-caps {
    font-variant: small-caps;
    letter-spacing: 0.04em;
}

.gold-text {
    color: var(--gold);
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.animate-fade {
    animation: fadeUp 1.1s ease forwards;
}

.animate-fade:nth-child(2) {
    animation-delay: 0.2s;
}

.animate-fade:nth-child(3) {
    animation-delay: 0.4s;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: 0 5%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 12px 40px -28px rgba(0, 0, 0, 0.55);
    transition: box-shadow 0.45s ease, height 0.35s ease;
    overflow: visible;
    isolation: isolate;
}

/* Frosted bar when past hero — keeps links readable over light/busy sections */
#navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(6, 6, 10, 0.92);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#navbar.scrolled::before {
    opacity: 1;
}

#navbar.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: 72px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
    border-bottom: none;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-left {
    justify-self: start;
    padding-right: 12px;
}

.nav-right {
    justify-self: end;
    padding-left: 12px;
}

.nav-left a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: var(--trans);
}

.nav-left a:hover {
    color: var(--gold);
}

.logo-center {
    justify-self: center;
    grid-column: 2;
    transition: var(--trans);
    padding: 0 clamp(12px, 2vw, 28px);
    flex-shrink: 0;
}

.logo-center img {
    height: 68px;
    width: auto;
    display: block;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* ══════════════════════════════════════════
   MOBILE SIDE MENU
══════════════════════════════════════════ */
.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #000;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.mobile-side-menu.active {
    right: 0;
}

.side-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 50px;
}

.close-menu {
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

.side-nav-links {
    list-style: none;
    padding: 0;
}

.side-nav-links li {
    margin-bottom: 25px;
}

.side-nav-links a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: var(--trans);
}

.side-nav-links a:hover {
    color: var(--gold);
}

.side-menu-footer {
    margin-top: auto;
}

.side-lang {
    color: var(--grey-light);
    margin-bottom: 20px;
}

.lang-switcher {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--grey-light);
    letter-spacing: 0.08em;
}

.btn-contact {
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--white);
    transition: var(--trans);
}

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

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 5% 80px;
    overflow: hidden;
    background: #000;
}

/* ══════════════════════════════════════════
   BACKGROUND LAYERS
══════════════════════════════════════════ */
.hero-bg-layers {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* plan.png — full hero coverage */
.hero-bg-plan {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('../images/plan.png') center center / cover no-repeat;
    z-index: 3;
    opacity: 1;
    pointer-events: none;
}

/* ── Sliding image base ── */
.hero-bg-slide {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: opacity;
}

/* hero1 */
.hero-bg-1 {
    background-image: url('../images/hero1.png');
}

.hero-bg-1.active {
    animation: heroFadeIn 1.2s ease forwards;
}

.hero-bg-1.exit {
    animation: heroFadeOut 0.8s ease forwards;
    animation-delay: 0s;
    opacity: 1;
}

/* hero2 */
.hero-bg-2 {
    background-image: url('../images/hero2.png');
}

.hero-bg-2.active {
    animation: heroFadeIn 1.2s ease forwards;
}

.hero-bg-2.exit {
    animation: heroFadeOut 0.8s ease forwards;
    animation-delay: 0s;
    opacity: 1;
}

/* Dark gradient overlay — above images, below content */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(rgba(0, 0, 0, 0.42) 0%,
            rgba(0, 0, 0, 0.58) 45%,
            rgba(0, 0, 0, 0.78) 100%);
    pointer-events: none;
}

/* ══════════════════════════════════════════
   HERO CONTENT
══════════════════════════════════════════ */
.hero-content {
    position: relative;
    z-index: 6;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.hero h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 700;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.08;
    text-transform: capitalize;
    letter-spacing: -0.01em;
    max-width: 14ch;
}

.hero-lead {
    font-size: var(--halo-body-size, 1.05rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    line-height: var(--halo-body-lh, 1.75);
}

.hero p:not(.hero-lead):not(.halo-eyebrow) {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 620px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Location label */
.hero-location-label {
    position: absolute;
    bottom: 50px;
    left: 5%;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: uppercase;
    z-index: 6;
    opacity: 0.9;
}

/* ══════════════════════════════════════════
   BUTTON BASE
══════════════════════════════════════════ */
.btn {
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    transition: var(--trans);
}

/* BUTTON 1 — Explore Destinations */
.btn-gold-solid {
    background: var(--gold-grad);
    background-size: 200% auto;
    color: #000;
    border: none;
}

.btn-gold-solid:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 150, 50, 0.4);
}

/* BUTTON 2 — Plan Your Journey */
.btn-ghost {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--white);
    border: none;
    padding: 14px 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0;
    text-transform: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: border-color 0.3s ease, color 0.3s ease;
    z-index: 0;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(0, 0, 0, 0.30);
    z-index: -1;
    transition: height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 0;
}

.btn-ghost:hover::before {
    height: 100%;
}

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

/* ══════════════════════════════════════════
   NAV — Contact Us
══════════════════════════════════════════ */
.nav-contact {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid rgba(201, 153, 56, 0.6);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 3px;
    transition: color 0.4s ease;
    z-index: 0;
}

.nav-contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gold-grad);
    z-index: -1;
    transition: height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-contact:hover::before {
    height: 100%;
}

.nav-contact:hover {
    color: #000;
}

/* ══════════════════════════════════════════
   BLUR OVERLAY — Plan Your Journey click
══════════════════════════════════════════ */
.hero-blur-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 5;
    transition: height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

.hero-blur-overlay.show {
    height: 100%;
}

/* ══════════════════════════════════════════
   TRENDING DESTINATIONS
══════════════════════════════════════════ */
#trending {
    padding: 70px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.label-tag {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--halo-sand);
    border: 1px solid rgba(196, 168, 130, 0.35);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-title-left {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--white);
}

.title-underline {
    width: 60px;
    height: 2px;
    background: var(--halo-sand);
    margin-top: 14px;
}

/* Section entrance (halo-motion.js) */
.halo-section--pending {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.halo-section--pending.halo-section--in {
    opacity: 1;
    transform: translateY(0);
}

.halo-section--sand {
    padding-top: 90px;
    padding-bottom: 90px;
}

.link-underline {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 0.82rem;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--grey);
    transition: var(--trans);
}

.link-underline:hover {
    color: var(--gold);
    border-color: var(--gold);
}

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

.dest-card {
    position: relative;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color 0.45s ease, box-shadow 0.45s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.dest-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(13, 59, 76, 0.35) 55%, rgba(0, 0, 0, 0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
}

.dest-info {
    width: 100%;
}

.dest-info h3 {
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 5px;
}

.dest-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
}

/* ══════════════════════════════════════════
   FIND YOUR PERFECT TRAVEL STYLE
══════════════════════════════════════════ */
.style-scroll-wrapper {
    background: #000;
    position: relative;
}

.style-section {
    position: relative;
    height: 250vh;
    overflow: visible;
    padding-top: calc(50vh - 110px);
    box-sizing: border-box;
    background: #000;
}

.style-center-text {
    position: sticky;
    top: calc(50vh - 110px);
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 480px);
    text-align: center;
    z-index: 20;
    pointer-events: none;
    margin-top: 0;
    margin-bottom: 240px;
    isolation: isolate;
}

/* Soft vignette behind sticky heading — cards scroll underneath but never clash with text */
.style-center-text::before {
    content: '';
    position: absolute;
    inset: -72px -100px;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(ellipse 68% 62% at 50% 48%, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 42%, transparent 72%);
}

.style-center-text__panel {
    position: relative;
    z-index: 1;
    padding: 36px 40px 32px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
}

.style-center-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.style-center-text p {
    font-size: var(--halo-body-size, 1.05rem);
    color: rgba(255, 255, 255, 0.72);
    line-height: var(--halo-body-lh, 1.75);
    max-width: 320px;
    margin: 12px auto 0;
    font-family: 'Inter', sans-serif;
}

.style-scattered {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.style-card {
    position: absolute;
    width: 260px;
    height: 305px;
    overflow: hidden;
    cursor: pointer;
    pointer-events: all;
    z-index: 2;
}

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

.style-card-label {
    position: absolute;
    bottom: 22px;
    left: 16px;
    z-index: 2;
}

.style-card-label h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.style-card--tl {
    top: 5%;
    left: 7%;
}

.style-card--tr {
    top: 3%;
    right: 4%;
}

.style-card--center {
    top: 52%;
    left: 50%;
    margin-left: -130px;
    z-index: 3;
}

/* Scrolling cards pass behind the fixed heading panel */
.style-card--scrolling {
    z-index: 2;
}

.style-card--bl {
    top: 65%;
    left: 12%;
}

.style-card--br {
    top: 78%;
    right: 5%;

}

/* ══════════════════════════════════════════
   WHY TRAVELERS CHOOSE HALO
══════════════════════════════════════════ */
#why {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.why-heading {
    text-align: center;
    margin-bottom: 55px;
}

.why-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.why-grid-4 {
    display: flex;
    gap: 14px;
    align-items: stretch;
    height: 420px;
}

.why-card {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:first-child {
    flex: 2.6;
}

.why-grid-4:has(.why-card:not(:first-child):hover) .why-card:first-child {
    flex: 1;
}

.why-card:hover {
    flex: 2.6;
}

.why-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.45s ease;
}

.why-bg--bw {
    filter: grayscale(100%) brightness(0.45);
}

.why-card:hover .why-bg {
    filter: grayscale(0%) brightness(0.7) !important;
}

.why-grid-4:has(.why-card:not(:first-child):hover) .why-card:first-child .why-bg {
    filter: grayscale(100%) brightness(0.45);
}

.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.82) 100%);
    z-index: 1;
}

.why-card-body {
    position: absolute;
    bottom: 26px;
    left: 22px;
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
}

.why-card-body h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-variant: small-caps;
    letter-spacing: 0.04em;
}

.why-card-body p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    max-width: 220px;
    white-space: normal;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.3s ease 0.15s, max-height 0.3s ease;
}

.why-card:first-child .why-card-body p,
.why-card:hover .why-card-body p {
    opacity: 1;
    max-height: 60px;
}

.why-grid-4:has(.why-card:not(:first-child):hover) .why-card:first-child .why-card-body p {
    opacity: 0;
    max-height: 0;
}

/* ══════════════════════════════════════════
   EXPERIENCES WORTH TRAVELING FOR
══════════════════════════════════════════ */
#experiences {
    padding: 70px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.experiences-heading {
    font-size: clamp(2rem, 3.8vw, 3rem);
    margin-bottom: 40px;
    line-height: 1.25;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

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

.exp-card {
    position: relative;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.exp-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 30%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0.88) 100%);
    z-index: 1;
    pointer-events: none;
}

.exp-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 18px 18px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.exp-location {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-variant: small-caps;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    display: block;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-card-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    font-variant: small-caps;
    letter-spacing: 0.03em;
}

.exp-plus {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 4px;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.exp-card:hover .exp-plus {
    opacity: 1;
    transform: scale(1);
}

/* ══════════════════════════════════════════
   POPULAR TRAVEL PACKAGES
══════════════════════════════════════════ */
#packages {
    padding: 90px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
        url('images/popular_travel_packages_bg.png') center/cover fixed;
}

.packages-heading {
    text-align: center;
    margin-bottom: 55px;
}

.packages-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #fff;
    font-variant: small-caps;
}

.packages-heading p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Inter', sans-serif;
}

.package-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1160px;
    margin: 0 auto;
}

.pkg-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.pkg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.55);
}

.pkg-card--featured {
    border-color: rgba(201, 168, 76, 0.5);
}

.pkg-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pkg-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.9);
    transform: scale(1.05);
    opacity: 0.27;
}

.pkg-inner {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.20);
}

.pkg-top-section {
    background: rgba(0, 0, 0, 0.45);
    padding: 20px 22px 22px;
}

.pkg-top-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.pkg-days-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.72rem;
    font-family: 'Inter', sans-serif;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    letter-spacing: 0.04em;
}

.pkg-popular-badge {
    background: var(--gold-grad);
    color: #000;
    font-size: 0.68rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.04em;
}

.pkg-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.pkg-price span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.pkg-bottom-section {
    padding: 22px 22px 26px;
}

.pkg-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    font-variant: small-caps;
    line-height: 1.15;
    margin-bottom: 8px;
}

.pkg-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Inter', sans-serif;
    margin-bottom: 18px;
    line-height: 1.5;
}

.pkg-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    letter-spacing: 0.05em;
    background: var(--gold-grad);
    background-size: 200% auto;
    color: #000;
    border: none;
    cursor: pointer;
    margin-bottom: 22px;
    transition: background-position 0.5s ease, box-shadow 0.3s ease;
}

.pkg-btn:hover {
    background-position: right center;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
}

.pkg-includes-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-variant: small-caps;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 13px;
}

.pkg-includes ul {
    list-style: none;
}

.pkg-includes li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.pkg-includes li .fas.fa-check {
    color: #c9a84c;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   GALLERY — OVAL CONVEYOR
══════════════════════════════════════════ */
#gallery {
    background: #000;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.gallery-wrap {
    position: relative;
    width: 100%;
}

#galleryCanvas {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.gallery-center-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    font-variant: small-caps;
    letter-spacing: 0.03em;
    text-shadow: 0 0 40px #000, 0 0 80px #000, 0 2px 6px #000;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
#testimonials {
    padding: 90px 5% 90px;
    overflow: visible;
    background: #030303;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-heading {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.2;
}

.reviews-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.review-card {
    position: relative;
    padding: 32px 28px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(201, 168, 76, 0.12);
    pointer-events: none;
}

.review-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.review-card--featured {
    border-color: rgba(201, 168, 76, 0.35);
    background: linear-gradient(165deg, rgba(201, 168, 76, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review-card__stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.review-card__tag {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--halo-sand);
    border: 1px solid rgba(196, 168, 130, 0.3);
    padding: 4px 10px;
    border-radius: 20px;
}

.review-card__quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    margin: 0;
    flex: 1;
}

.review-card--featured .review-card__quote {
    font-size: 1.28rem;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201, 168, 76, 0.4);
    flex-shrink: 0;
}

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

.review-card__author strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #fff;
    font-weight: 500;
}

.review-card__author span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.footer-brand img {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 16px;
}

.halo-section-blend {
    position: relative;
}

.halo-section-blend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
    pointer-events: none;
    z-index: 1;
}

.halo-scroll-cue--hero {
    bottom: 22px;
    z-index: 8;
}

.exp-card::after {
    background: linear-gradient(transparent 25%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.88) 100%);
}

.style-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

section,
.halo-section--sand,
.contact-section,
#testimonials {
    transition: background 0.9s ease, box-shadow 0.9s ease;
}

.style-scroll-wrapper,
#why,
#experiences,
#packages {
    box-shadow: inset 0 60px 80px -60px rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
    .reviews-showcase {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .review-card--featured {
        transform: none;
    }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 5% 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    font-size: 0.8rem;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 22px;
    font-family: 'Inter', sans-serif;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--trans);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey-light);
    font-size: 0.82rem;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.footer-contact li .fas {
    color: var(--gold);
    width: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--grey);
    text-decoration: none;
    font-size: 0.78rem;
    transition: var(--trans);
    font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy,
.footer-chat {
    color: var(--grey);
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
    .style-card--bl {
        left: 50px;
    }

    .style-card--br {
        right: 50px;
    }
}

@media (max-width: 992px) {
    .style-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }

    .style-scattered {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 30px;
    }

    .style-card,
    .style-card--tl,
    .style-card--tr,
    .style-card--center,
    .style-card--bl,
    .style-card--br {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin-left: 0 !important;
        width: 100%;
        height: auto;
        transform: none !important;
        display: block;
        margin: 0 auto !important;
    }

    .style-card img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .style-center-text {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 40px;
        width: 100%;
        padding: 0 5%;
        pointer-events: all;
    }

    .style-center-text::before {
        display: none;
    }

    .style-center-text__panel {
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .style-card-label h4 {
        font-size: 2.2rem;
    }

    .why-grid-4 {
        flex-direction: column;
        height: auto;
    }

    .why-card,
    .why-card:first-child,
    .why-card:hover {
        flex: none;
        height: 260px;
    }

    .why-grid-4:has(.why-card:not(:first-child):hover) .why-card:first-child {
        flex: none;
    }

    .why-card-body {
        white-space: normal;
    }

    .why-card-body p {
        opacity: 1;
        max-height: 60px;
    }

    .exp-grid-3 {
        grid-template-columns: 1fr;
    }

    .package-grid-3 {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

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

    .testimonial-card--center {
        transform: none;
    }

    .slider-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 0 5%;
        height: 80px;
        background: rgba(0, 0, 0, 0.95);
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .nav-left,
    .lang-switcher {
        display: none;
    }

    .logo-center {
        justify-self: center;
        grid-column: 2;
        margin: 0;
    }

    .logo-center img {
        height: 45px !important;
        width: auto !important;
        display: block;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-self: end;
        grid-column: 3;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-contact {
        display: none;
    }

    .nav-contact {
        padding: 6px 16px;
        font-size: 0.78rem;
    }

    .hero {
        padding-top: 130px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-location-label {
        font-size: 1.8rem;
        bottom: 25px;
        left: 5%;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 30px auto 0;
        gap: 15px;
    }

    .hero-bg-plan {
        width: 90%;
        right: -15%;
        top: 0;
        height: 50%;
        opacity: 0.5;
    }

    .destination-grid-3 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dest-card {
        height: 400px;
    }

    .dest-info h3 {
        font-size: 2.2rem;
    }

    .style-section {
        min-height: auto;
        padding: 60px 5%;
    }

    .style-card,
    .style-card--tl,
    .style-card--tr,
    .style-card--center,
    .style-card--bl,
    .style-card--br {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        transform: none !important;
    }

    .style-card img {
        width: 100%;
        height: auto !important;
        display: block;
        object-fit: contain !important;
    }

    .style-center-text {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        transform: none;
        margin: 20px 0 50px;
        order: -1;
        padding: 0 5%;
    }

    #gallery {
        padding: 40px 0;
    }

    .gallery-wrap {
        min-height: 250px;
    }

    .gallery-center-text {
        width: 90%;
        top: 50%;
    }

    .gallery-center-text h2 {
        font-size: 1.6rem;
    }

    #galleryCanvas {
        height: 450px !important;
    }

    .footer-main {
        flex-direction: column;
        gap: 45px;
        text-align: center !important;
    }

    .footer-brand {
        margin: 0 auto;
        text-align: center;
    }

    .footer-brand p {
        text-align: center;
        margin: 0 auto 20px;
    }

    .footer-social {
        justify-content: center;
    }

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

    .footer-contact ul {
        padding: 0;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        justify-content: center;
        gap: 20px;
    }

    .section-header-split {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .style-center-text h2 {
        font-size: 2.2rem;
    }
}

.contact-section {
    padding: 90px 8%;
    background: linear-gradient(165deg, #0a0a0a 0%, #050505 100%);
    color: #fff;
    position: relative;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.contact-copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-copy p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--halo-sand) !important;
}

.contact-detail-link i {
    color: var(--gold);
    width: 16px;
}

.contact-form--luxury {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 6px;
    padding: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.contact-field span {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--halo-sand);
    font-family: 'Inter', sans-serif;
}

.contact-form--luxury input,
.contact-form--luxury select,
.contact-form--luxury textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-form--luxury input:focus,
.contact-form--luxury select:focus,
.contact-form--luxury textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.contact-form--luxury select {
    cursor: pointer;
    color-scheme: dark;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    background-size: 12px 8px;
}

.contact-form--luxury select option {
    background-color: #0a0a0a;
    color: #f5f0e8;
}

.contact-form--luxury select option:checked,
.contact-form--luxury select option:hover {
    background-color: #1c1c1c;
    color: #fff;
}

.contact-form--luxury textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__submit {
    width: 100%;
    margin-top: 8px;
}

.contact-feedback {
    font-size: 14px;
    color: var(--gold);
}

@media (max-width: 768px) {
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }
}