/* ================================================
   JACK'S GOLF TRAVEL - Premium Cinematic Design
   ================================================ */

:root {
    --gold: #c9a96e;
    --gold-light: #e0c896;
    --gold-dark: #a07d44;
    --bg: #0c0c0c;
    --bg2: #111111;
    --bg3: #161616;
    --bg4: #1c1c1c;
    --text: #b0b0b0;
    --white: #f5f5f0;
    --muted: #666;
    --radius: 16px;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

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

::selection { background: var(--gold); color: var(--bg); }

html {
    scroll-behavior: auto;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: none; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    transition: transform 0.1s;
}

.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(201,169,110,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.3s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-follower.hover {
    width: 60px; height: 60px;
    border-color: var(--gold);
    background: rgba(201,169,110,0.08);
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
}

/* ===== CANVAS ===== */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader.done {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 1.2s var(--ease);
}

.preloader-inner { text-align: center; }

.pre-brand { margin-bottom: 24px; }

.pre-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 4px;
}

.pre-name span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(40deg);
    animation: preLetter 0.5s var(--ease) forwards;
}

.pre-name span:nth-child(1) { animation-delay: 0.2s; }
.pre-name span:nth-child(2) { animation-delay: 0.28s; }
.pre-name span:nth-child(3) { animation-delay: 0.36s; }
.pre-name span:nth-child(4) { animation-delay: 0.44s; }
.pre-name span:nth-child(5) { animation-delay: 0.52s; }
.pre-name span:nth-child(6) { animation-delay: 0.6s; }

.pre-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--gold);
}

.pre-sub span {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: preLetter 0.4s var(--ease) forwards;
}

.pre-sub span:nth-child(1) { animation-delay: 0.7s; }
.pre-sub span:nth-child(2) { animation-delay: 0.74s; }
.pre-sub span:nth-child(3) { animation-delay: 0.78s; }
.pre-sub span:nth-child(4) { animation-delay: 0.82s; }
.pre-sub span:nth-child(5) { animation-delay: 0.86s; }
.pre-sub span:nth-child(6) { animation-delay: 0.92s; }
.pre-sub span:nth-child(7) { animation-delay: 0.96s; }
.pre-sub span:nth-child(8) { animation-delay: 1.0s; }
.pre-sub span:nth-child(9) { animation-delay: 1.04s; }
.pre-sub span:nth-child(10) { animation-delay: 1.08s; }
.pre-sub span:nth-child(11) { animation-delay: 1.12s; }

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

.pre-line {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 0 auto 16px;
    transform-origin: left;
    animation: preLine 2s var(--ease) forwards;
}

@keyframes preLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.pre-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--muted);
    letter-spacing: 4px;
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 9000;
    padding: 24px 0;
    transition: all 0.6s var(--ease);
}

#navbar.scrolled {
    padding: 14px 0;
    background: rgba(12,12,12,0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9001;
}

.nav-logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1;
}

.nav-logo-divider {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    display: block;
}

.nav-logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-center {
    display: flex; gap: 36px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    overflow: hidden;
    transition: color 0.4s;
}

.nav-link span {
    display: inline-block;
    transition: transform 0.4s var(--ease);
}

.nav-link::after {
    content: attr(data-text);
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
    position: relative;
    padding: 12px 32px;
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 9001;
}

.nav-cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
    z-index: -1;
}

.nav-cta:hover { color: var(--bg); }
.nav-cta:hover .nav-cta-bg { transform: scaleX(1); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
    z-index: 9001;
}

.menu-bar {
    width: 30px; height: 1.5px;
    background: var(--white);
    transition: all 0.4s var(--ease);
}

.menu-toggle.active .menu-bar:first-child { transform: rotate(45deg) translate(3px, 3px); }
.menu-toggle.active .menu-bar:last-child { transform: rotate(-45deg) translate(3px, -3px); }

/* ===== FULLSCREEN MENU ===== */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 8999;
    pointer-events: none;
}

.fullscreen-menu.open { pointer-events: all; }

.menu-bg-cols {
    position: absolute;
    inset: 0;
    display: flex;
}

.menu-bg-col {
    flex: 1;
    background: var(--bg2);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s var(--ease);
}

.fullscreen-menu.open .menu-bg-col { transform: scaleY(1); }
.fullscreen-menu.open .menu-bg-col:nth-child(2) { transition-delay: 0.05s; }
.fullscreen-menu.open .menu-bg-col:nth-child(3) { transition-delay: 0.1s; }
.fullscreen-menu.open .menu-bg-col:nth-child(4) { transition-delay: 0.15s; }
.fullscreen-menu.open .menu-bg-col:nth-child(5) { transition-delay: 0.2s; }

.menu-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    opacity: 0;
    transition: opacity 0.4s 0.4s;
}

.fullscreen-menu.open .menu-content { opacity: 1; }

.menu-links { display: flex; flex-direction: column; gap: 8px; }

.menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--white);
    padding: 8px 0;
    overflow: hidden;
    display: block;
    transition: color 0.3s;
}

.menu-link span {
    display: inline-block;
    transform: translateY(120%);
    transition: transform 0.6s var(--ease);
}

.fullscreen-menu.open .menu-link span { transform: translateY(0); }
.fullscreen-menu.open .menu-link:nth-child(2) span { transition-delay: 0.05s; }
.fullscreen-menu.open .menu-link:nth-child(3) span { transition-delay: 0.1s; }
.fullscreen-menu.open .menu-link:nth-child(4) span { transition-delay: 0.15s; }
.fullscreen-menu.open .menu-link:nth-child(5) span { transition-delay: 0.2s; }
.fullscreen-menu.open .menu-link:nth-child(6) span { transition-delay: 0.25s; }

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

.menu-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.menu-info p, .menu-socials a {
    font-size: 0.85rem;
    color: var(--muted);
    transition: color 0.3s;
}

.menu-socials { display: flex; gap: 24px; }
.menu-socials a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12,12,12,0.4) 0%, rgba(12,12,12,0.2) 30%, rgba(12,12,12,0.6) 70%, var(--bg) 100%),
        linear-gradient(90deg, rgba(12,12,12,0.5) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
}

.hero-tag-line { width: 40px; height: 1px; background: var(--gold); }

.hero-tag span {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 28px;
}

.title-line {
    overflow: hidden;
    line-height: 1.15;
}

.title-line span {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -1px;
}

.title-line em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
}

.hero-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--bg);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.5s var(--ease);
}

.hero-btn-primary:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(201,169,110,0.25);
}

.hero-btn-primary svg { transition: transform 0.4s var(--ease); }
.hero-btn-primary:hover svg { transform: translate(3px, -3px); }

.hero-btn-play {
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.play-circle {
    width: 56px; height: 56px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--ease);
}

.hero-btn-play:hover .play-circle {
    border-color: var(--gold);
    background: rgba(201,169,110,0.1);
    transform: scale(1.1);
}

.hero-btn-play:hover { color: var(--gold); }

.hero-bottom {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
}

.hero-stats { display: flex; gap: 48px; }

.hero-stat { text-align: left; }

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    display: block;
    line-height: 1;
}

.hero-stat-num::after { content: '+'; color: var(--gold); }

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll span {
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 4px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed; inset: 0;
    z-index: 50000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.5s var(--ease);
}

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

.modal-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.95);
}

.modal-body {
    position: relative;
    width: 80%;
    max-width: 1000px;
    transform: scale(0.9) translateY(40px);
    transition: transform 0.5s var(--ease);
}

.video-modal.active .modal-body { transform: scale(1) translateY(0); }

.modal-body video { width: 100%; border-radius: var(--radius); }

.modal-close {
    position: absolute;
    top: -50px; right: 0;
    background: none; border: none;
    color: var(--white);
    transition: color 0.3s;
}

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

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.marquee-track { overflow: hidden; }

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.marquee-dot {
    width: 6px !important;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.label-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.label-tag::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 36px; height: 1px;
    background: var(--gold);
}

.label-tag.light { color: rgba(255,255,255,0.7); }
.label-tag.light::before { background: rgba(255,255,255,0.4); }

.section-title { margin-bottom: 32px; }

.section-title .title-line span {
    font-size: clamp(2rem, 5vw, 3.8rem);
}

.section-head { margin-bottom: 32px; }
.section-head.center { text-align: center; }
.section-head.center .label-tag { padding-left: 0; }
.section-head.center .label-tag::before { display: none; }

/* ===== INTRO / ABOUT ===== */
.intro-section {
    padding: 160px 0;
    position: relative;
    z-index: 1;
}

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

.intro-left { position: relative; }

.intro-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.intro-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.intro-img-wrap:hover img { transform: scale(1.05); }

.intro-img-reveal {
    position: absolute;
    inset: 0;
    background: var(--bg);
    z-index: 2;
    transform-origin: top;
}

.intro-img-small {
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid var(--bg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.intro-img-small img { width: 100%; height: 100%; object-fit: cover; }
.intro-img-small .intro-img-reveal { transform-origin: bottom; }

.intro-right { padding: 40px 0; }

.intro-desc {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 48px;
}

.intro-features { display: flex; flex-direction: column; gap: 0; }

.intro-feat {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s var(--ease);
}

.intro-feat:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.intro-feat:hover { padding-left: 12px; }

.feat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    width: 40px;
}

.feat-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.feat-content p { font-size: 0.88rem; color: var(--muted); }

/* ===== OUR WORLDS / DESTINATIONS ===== */
.worlds-section {
    padding: 160px 0;
    position: relative;
    z-index: 1;
}

.worlds-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.world-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg2);
    transition: transform 0.6s var(--ease);
}

.world-card:hover { transform: translateY(-8px); }

.world-img {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.world-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

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

.world-info {
    padding: 28px 28px 24px;
}

.world-location {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.world-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}

.world-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--muted);
}

.world-arrow {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.5s var(--ease);
}

.world-card:hover .world-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== CINEMATIC / EXPERIENCES ===== */
.cinematic-section {
    position: relative;
    padding: 200px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.cinematic-video-wrap {
    position: absolute; inset: 0;
}

.cinematic-video-wrap video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.cinematic-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(12,12,12,0.7) 30%, rgba(12,12,12,0.8) 70%, var(--bg) 100%);
}

.cinematic-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.cinematic-content .label-tag { padding-left: 0; }
.cinematic-content .label-tag::before { display: none; }

.cinematic-title .title-line span { color: var(--white); }

.cinematic-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}

.exp-cards-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.exp-float-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.5s var(--ease);
}

.exp-float-card:hover {
    background: rgba(201,169,110,0.08);
    border-color: rgba(201,169,110,0.2);
    transform: translateY(-12px);
}

.efc-icon { font-size: 2.5rem; margin-bottom: 20px; }

.exp-float-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}

.exp-float-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ===== HORIZONTAL GALLERY ===== */
.hgallery-section {
    padding: 60px 0 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hgallery-wrap {
    overflow: hidden;
    padding: 20px 0;
}

.hgallery-track {
    display: flex;
    gap: 20px;
    padding: 0 40px;
    cursor: grab;
}

.hgallery-track:active { cursor: grabbing; }

.hgallery-item {
    flex-shrink: 0;
    width: 420px;
    height: calc(100vh - 280px);
    max-height: 520px;
    min-height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.hgallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

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

.hgallery-item span {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px 24px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
}

.hgallery-item:hover span { transform: translateY(0); }

/* ===== PACKAGES ===== */
.packages-section {
    padding: 160px 0;
    background: var(--bg2);
    position: relative;
    z-index: 1;
}

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

.pkg-item {
    background: var(--bg3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 48px 36px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.pkg-item:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-8px);
}

.pkg-item.featured {
    border-color: rgba(201,169,110,0.3);
    background: linear-gradient(180deg, rgba(201,169,110,0.06), var(--bg3));
}

.pkg-featured-tag {
    position: absolute;
    top: 0; right: 0;
    padding: 8px 24px;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0 var(--radius) 0 var(--radius);
}

.pkg-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.pkg-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pkg-currency {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.pkg-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.pkg-per {
    font-size: 0.85rem;
    color: var(--muted);
}

.pkg-list {
    list-style: none;
    margin-bottom: 36px;
}

.pkg-list li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-left: 20px;
    position: relative;
}

.pkg-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 6px; height: 6px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.pkg-btn {
    display: block;
    text-align: center;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.pkg-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
    z-index: 0;
}

.pkg-btn span { position: relative; z-index: 1; }

.pkg-btn:hover { color: var(--bg); border-color: var(--gold); }
.pkg-btn:hover::before { transform: scaleX(1); }

.pkg-btn.gold {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.pkg-btn.gold::before { background: var(--gold-light); }

/* ===== QUOTE ===== */
.quote-section {
    position: relative;
    padding: 200px 0;
    overflow: hidden;
    z-index: 1;
}

.quote-parallax-img {
    position: absolute; inset: -100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-overlay {
    position: absolute; inset: 0;
    background: rgba(12,12,12,0.8);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.5;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 32px;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ===== REVIEWS ===== */
.reviews-section {
    padding: 160px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar { display: none; }

.review-card {
    flex-shrink: 0;
    width: 380px;
    scroll-snap-align: start;
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 40px;
    transition: all 0.5s var(--ease);
}

.review-card:hover {
    border-color: rgba(201,169,110,0.2);
    transform: translateY(-6px);
}

.review-stars { margin-bottom: 20px; font-size: 1rem; }

.review-card > p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 28px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    font-weight: 700;
    font-size: 0.85rem;
}

.review-author strong {
    color: var(--white);
    font-size: 0.9rem;
    display: block;
}

.review-author span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 160px 0;
    background: var(--bg2);
    position: relative;
    z-index: 1;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 48px;
}

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

.contact-detail {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cd-label {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.cd-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
}

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-field {
    position: relative;
    margin-bottom: 32px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.4s;
}

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

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.field-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.5s var(--ease);
}

.form-field input:focus ~ .field-line,
.form-field select:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
    width: 100%;
}

.form-field select { cursor: pointer; appearance: none; }
.form-field textarea { resize: vertical; min-height: 80px; }

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--gold);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.5s var(--ease);
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(201,169,110,0.25);
}

.submit-btn svg { transition: transform 0.4s var(--ease); }
.submit-btn:hover svg { transform: translate(3px, -3px); }

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 0;
    background: var(--bg);
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.fl-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1;
}

.fl-divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    display: block;
}

.fl-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-brand > p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
}

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--muted);
    padding: 5px 0;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 0.8rem; }
.footer-links a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.btt {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 52px; height: 52px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.btt.visible { opacity: 1; visibility: visible; }

.btt:hover {
    background: var(--gold);
    color: var(--bg);
    transform: translateY(-4px);
}

/* ===== INNER PAGES ===== */

/* Page Hero Banner */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0.5) 50%, var(--bg) 100%),
        linear-gradient(90deg, rgba(12,12,12,0.6) 0%, transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.page-hero-content .label-tag { margin-bottom: 16px; }

.page-hero-title {
    margin-bottom: 16px;
}

.page-hero-title .title-line span {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-hero-desc {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 560px;
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 1px;
}

.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .bc-sep { color: var(--gold); }

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 140px 0;
    position: relative;
    z-index: 1;
}

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

.about-story-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-story-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.about-story-img:hover img { transform: scale(1.05); }

.about-story-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.4;
}

.about-story-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-values {
    padding: 140px 0;
    background: var(--bg2);
    position: relative;
    z-index: 1;
}

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

.value-card {
    background: var(--bg3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 48px 32px;
    transition: all 0.5s var(--ease);
}

.value-card:hover {
    border-color: rgba(201,169,110,0.2);
    transform: translateY(-8px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
}

.about-team {
    padding: 140px 0;
    position: relative;
    z-index: 1;
}

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

.team-card {
    text-align: center;
}

.team-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--bg2);
}

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

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

.team-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-stats {
    padding: 100px 0;
    background: var(--bg2);
    position: relative;
    z-index: 1;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num span { color: var(--gold); }

.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== DESTINATIONS PAGE ===== */
.dest-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.dest-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.dest-filter-btn {
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    background: transparent;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.dest-filter-btn:hover,
.dest-filter-btn.active {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

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

.dest-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.6s var(--ease);
}

.dest-card:hover { transform: translateY(-8px); border-color: rgba(201,169,110,0.15); }

.dest-card-img {
    height: 280px;
    overflow: hidden;
}

.dest-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

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

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

.dest-card-region {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.dest-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.dest-card-body p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.dest-card-meta {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.dest-card-meta span {
    font-size: 0.78rem;
    color: var(--text);
}

.dest-card-meta span strong {
    color: var(--white);
}

.dest-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===== EXPERIENCES PAGE ===== */
.exp-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.exp-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.exp-block:last-child { margin-bottom: 0; }

.exp-block.reverse { direction: rtl; }
.exp-block.reverse > * { direction: ltr; }

.exp-block-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.exp-block-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.exp-block-img:hover img { transform: scale(1.05); }

.exp-block-text .label-tag { margin-bottom: 16px; }

.exp-block-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.exp-block-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.exp-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.exp-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
}

.exp-feat-item::before {
    content: '';
    width: 8px; height: 8px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== GALLERY PAGE ===== */
.gallery-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    columns: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 1s var(--ease);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

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

.gallery-item-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}

.contact-info-card:hover {
    border-color: rgba(201,169,110,0.2);
}

.contact-info-icon {
    width: 48px; height: 48px;
    background: rgba(201,169,110,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-info-card h4 {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1.5;
}

.contact-form-wrap {
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 48px;
}

.contact-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 36px;
}

.map-section {
    height: 400px;
    background: var(--bg2);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}

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

.map-placeholder p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--muted);
}

/* Generic CTA button (used on inner pages) */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--bg);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.5s var(--ease);
    border: none;
    font-family: 'Inter', sans-serif;
}

.cta-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(201,169,110,0.25);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1px solid rgba(201,169,110,0.4);
    background: transparent;
    color: var(--gold);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.5s var(--ease);
    font-family: 'Inter', sans-serif;
}

.cta-btn-outline:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

/* ===== RESPONSIVE ===== */

/* ---------- Tablet Landscape / Small Desktop ---------- */
@media (max-width: 1024px) {
    .container { padding: 0 28px; }
    .nav-inner { padding: 0 28px; }
    .nav-center { display: none; }
    .nav-cta { display: none; }
    .menu-toggle { display: flex; }

    /* Hero */
    .hero-content { padding: 0 28px; }
    .hero-bottom { right: 28px; }
    .hero-bottom-row { gap: 32px; }
    .hero-btn-primary { padding: 14px 32px; font-size: 0.8rem; }

    /* Sections */
    .intro-grid { grid-template-columns: 1fr; gap: 60px; }
    .worlds-grid { grid-template-columns: repeat(2, 1fr); padding: 0 28px; }
    .exp-cards-row { grid-template-columns: repeat(2, 1fr); padding: 0 28px; }
    .pkg-row { grid-template-columns: repeat(2, 1fr); }
    .contact-wrap { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .hgallery-item { width: 340px; }

    /* Inner pages */
    .page-hero-content { padding: 0 28px; }
    .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-block { grid-template-columns: 1fr; gap: 40px; }
    .exp-block.reverse { direction: ltr; }
    .gallery-grid { columns: 2; }
    .contact-page-grid { grid-template-columns: 1fr; }
}

/* ---------- Tablet Portrait ---------- */
@media (max-width: 768px) {
    /* Sections padding */
    .intro-section, .worlds-section, .hgallery-section,
    .packages-section, .reviews-section, .contact-section { padding: 100px 0; }
    .quote-section { padding: 120px 0; }

    /* Hero */
    .hero { padding-bottom: 60px; min-height: 600px; }
    .hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 28px; margin-top: 36px; }
    .hero-actions { gap: 24px; }
    .hero-stats { gap: 32px; }
    .hero-stat-num { font-size: 2rem; }
    .hero-desc { margin-bottom: 24px; font-size: 0.95rem; }
    .hero-title { margin-bottom: 20px; }
    .title-line span { font-size: clamp(2.4rem, 8vw, 4rem) !important; }

    /* Sections */
    .intro-img-small { right: -20px; bottom: -40px; width: 150px; height: 200px; }
    .worlds-grid { grid-template-columns: 1fr; }
    .world-img { height: 280px; }
    .exp-cards-row { grid-template-columns: 1fr 1fr; }
    .pkg-row { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hgallery-item { width: 300px; }
    .menu-footer { flex-direction: column; gap: 20px; }
    .review-card { width: 320px; }

    /* Inner pages */
    .page-hero { height: 40vh; min-height: 320px; }
    .page-hero-title .title-line span { font-size: clamp(2rem, 6vw, 3.5rem); }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-grid { grid-template-columns: 1fr; }
    .about-story, .about-values, .about-team, .dest-section, .exp-section, .gallery-section, .contact-page { padding: 80px 0; }
    .exp-block { margin-bottom: 80px; }
    .contact-form-wrap { padding: 32px; }

    /* Gallery section when pinned */
    .hgallery-section { padding: 50px 0 20px; }
    .section-head { margin-bottom: 24px; }
    .section-title .title-line span { font-size: clamp(1.8rem, 5vw, 2.8rem); }
}

/* ---------- Mobile ---------- */
@media (max-width: 480px) {
    .container { padding: 0 20px; }

    /* Hero */
    .hero { padding-bottom: 40px; min-height: 100vh; min-height: 100svh; }
    .hero-content { padding: 0 20px; }
    .hero-tag { margin-bottom: 20px; }
    .hero-tag span { font-size: 0.65rem; letter-spacing: 3px; }
    .hero-title { margin-bottom: 16px; }
    .title-line span { font-size: clamp(2rem, 10vw, 3rem) !important; }
    .hero-desc { font-size: 0.88rem; margin-bottom: 20px; max-width: 100%; }
    .hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 28px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-btn-primary { padding: 14px 28px; font-size: 0.78rem; }
    .play-circle { width: 46px; height: 46px; }
    .hero-btn-play { font-size: 0.78rem; }
    .hero-stats { gap: 24px; }
    .hero-stat-num { font-size: 1.8rem; }
    .hero-stat-label { font-size: 0.6rem; letter-spacing: 2px; }
    .hero-bottom { right: 20px; bottom: 20px; }
    .hero-scroll { display: none; }

    /* Sections */
    .exp-cards-row { grid-template-columns: 1fr; padding: 0 20px; }
    .worlds-grid { padding: 0 20px; }
    .hgallery-item { width: 280px; }
    .hgallery-section { padding: 40px 0 16px; }

    /* Cinematic */
    .cinematic-section { padding: 120px 0 80px; }
    .cinematic-desc { font-size: 0.92rem; }

    /* Packages */
    .pkg-item { padding: 36px 24px; }
    .pkg-amount { font-size: 2.8rem; }

    /* Contact */
    .contact-desc { font-size: 0.9rem; }
    .submit-btn { padding: 14px 36px; font-size: 0.8rem; }

    /* Quote */
    .quote-section { padding: 80px 0; }
    .quote-text { font-size: clamp(1.2rem, 4vw, 1.6rem); }
    .quote-mark { font-size: 5rem; }

    /* Reviews */
    .review-card { width: 280px; padding: 28px; }

    /* Footer */
    .footer { padding: 60px 0 0; }
    .fl-name { font-size: 1.4rem; }
    .footer-col h5 { margin-bottom: 14px; }

    /* Inner pages */
    .page-hero-content { padding: 0 20px; }
    .page-hero { height: 35vh; min-height: 280px; padding-bottom: 40px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-num { font-size: 2.5rem; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .gallery-grid { columns: 1; }
    .dest-filter-btn { padding: 8px 16px; font-size: 0.72rem; }
    .map-section { height: 280px; }
}

/* ---------- Very Small Mobile ---------- */
@media (max-width: 360px) {
    .container { padding: 0 16px; }
    .hero-content { padding: 0 16px; }
    .hero { padding-bottom: 32px; }
    .title-line span { font-size: 1.8rem !important; }
    .hero-desc { font-size: 0.82rem; }
    .hero-btn-primary { padding: 12px 24px; font-size: 0.72rem; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 1.5rem; }
    .worlds-grid { padding: 0 16px; }
    .exp-cards-row { padding: 0 16px; }
    .hgallery-item { width: 240px; }
    .pkg-item { padding: 28px 20px; }
    .pkg-amount { font-size: 2.2rem; }
    .review-card { width: 260px; padding: 24px; }
}
