/* =============================================
   TRIVIMI TOURS INDONESIA — Luxury Design System
   Inspired by Aman Resorts, Four Seasons, Luxury Escapes
   ============================================= */

/* === Design Tokens === */
:root {
    /* Luxury Color Palette */
    --navy: #0A1628;
    --navy-light: #12233D;
    --navy-medium: #1A3050;
    --gold: #C9A96E;
    --gold-light: #D4B87C;
    --gold-dark: #A88B52;
    --warm-white: #FAF8F5;
    --cream: #F5F0EB;
    --ivory: #FFFFFF;
    --charcoal: #1A1A2E;
    --text-dark: #0A1628;
    --text-body: #3D4A5C;
    --text-muted: #7A8599;
    --text-light: #A0AAB8;
    --border-light: rgba(201,169,110,.2);
    --border-subtle: rgba(10,22,40,.08);

    /* Functional */
    --success: #2D8A6E;
    --danger: #C0392B;
    --warning: #E67E22;
    --info: #2980B9;

    /* Glassmorphism */
    --glass-bg: rgba(255,255,255,.08);
    --glass-border: rgba(255,255,255,.15);
    --glass-shadow: 0 8px 32px rgba(0,0,0,.12);

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.12);
    --shadow-gold: 0 4px 20px rgba(201,169,110,.3);

    /* Transitions */
    --ease-smooth: all .35s cubic-bezier(.4,0,.2,1);
    --ease-bounce: all .5s cubic-bezier(.34,1.56,.64,1);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--ease-smooth); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; outline: none; border: none; background: none; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.25; color: var(--text-dark); font-weight: 600; }
::selection { background: var(--gold); color: var(--navy); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-lg); }
@media(min-width:1440px) { .container { max-width: 1400px; } }
.text-center { text-align: center; }

/* === Preloader === */
.preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    width: 60px; height: 60px; border-radius: 16px;
    background: var(--gold); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 28px; font-weight: 700;
    margin: 0 auto var(--space-lg);
}
.preloader-bar {
    width: 120px; height: 2px; background: rgba(255,255,255,.1);
    border-radius: 2px; margin: 0 auto; overflow: hidden;
}
.preloader-bar-fill {
    height: 100%; width: 0; background: var(--gold);
    border-radius: 2px; animation: preloaderFill 1.5s ease forwards;
}
@keyframes preloaderFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: var(--space-lg) 0;
    transition: var(--ease-smooth);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10,22,40,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.15);
}
.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 var(--space-lg);
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
    display: flex; align-items: center; gap: var(--space-sm);
    text-decoration: none;
}
.nav-brand-letter {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--gold); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    transition: var(--ease-smooth);
}
.nav-brand:hover .nav-brand-letter { transform: scale(1.05); }
.nav-brand-text {
    font-family: var(--font-display); font-size: 18px; font-weight: 600;
    color: var(--ivory); letter-spacing: 2px;
}
.nav-links {
    display: flex; align-items: center; gap: var(--space-xl);
}
.nav-link {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75);
    letter-spacing: .5px; position: relative; padding: 4px 0;
    transition: var(--ease-smooth);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width .3s ease;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: var(--space-md); }

.lang-switcher {
    display: flex; align-items: center; gap: 2px;
    background: rgba(255,255,255,.08); border-radius: var(--radius-full);
    padding: 3px;
}
.lang-opt {
    font-size: 11px; font-weight: 600; padding: 5px 10px;
    border-radius: var(--radius-full); color: rgba(255,255,255,.6);
    transition: var(--ease-smooth);
}
.lang-opt:hover { color: #fff; }
.lang-opt.active { background: var(--gold); color: var(--navy); }

.nav-cta {
    display: flex; align-items: center; gap: var(--space-sm);
    background: var(--gold); color: var(--navy);
    font-size: 13px; font-weight: 600; padding: 10px 20px;
    border-radius: var(--radius-full); letter-spacing: .3px;
    transition: var(--ease-smooth);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.nav-cta i { font-size: 11px; transition: transform .3s ease; }
.nav-cta:hover i { transform: translateX(3px); }

.nav-hamburger {
    display: none; flex-direction: column; gap: 5px; padding: 5px;
    cursor: pointer;
}
.nav-hamburger span {
    display: block; width: 24px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: var(--ease-smooth);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--ease-smooth);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
    text-align: center; transform: translateY(20px);
    transition: transform .4s ease .1s;
}
.mobile-menu.open .mobile-menu-inner { transform: translateY(0); }
.mobile-link {
    display: block; font-family: var(--font-display);
    font-size: 28px; font-weight: 500; color: rgba(255,255,255,.7);
    padding: var(--space-sm) 0; transition: var(--ease-smooth);
}
.mobile-link:hover { color: var(--gold); }
.mobile-lang {
    display: flex; justify-content: center; gap: var(--space-md);
    margin-top: var(--space-xl);
}
.mobile-lang-opt {
    font-size: 14px; font-weight: 600; color: rgba(255,255,255,.5);
    padding: 8px 16px; border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-full); transition: var(--ease-smooth);
}
.mobile-lang-opt.active { border-color: var(--gold); color: var(--gold); }
.mobile-cta-btn {
    display: inline-block; margin-top: var(--space-xl);
    background: var(--gold); color: var(--navy);
    font-size: 16px; font-weight: 600; padding: 14px 36px;
    border-radius: var(--radius-full); transition: var(--ease-smooth);
}
.mobile-cta-btn:hover { background: var(--gold-light); }
.mobile-overlay {
    position: fixed; inset: 0; z-index: 998;
    background: rgba(0,0,0,.5); opacity: 0; visibility: hidden;
    transition: var(--ease-smooth);
}
.mobile-overlay.show { opacity: 1; visibility: visible; }

@media(max-width:900px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
}

/* === Dark Breadcrumb (inner pages) === */
.breadcrumb-dark {
    background: var(--navy);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    padding-top: calc(70px + var(--space-lg));
    padding-bottom: var(--space-md);
}
.breadcrumb-dark .breadcrumb a:hover { color: var(--gold); }
.breadcrumb-dark .breadcrumb { font-size: 13px; font-weight: 500; letter-spacing: 0.3px; }
@media(max-width:900px) {
    .breadcrumb-dark { padding-top: calc(60px + var(--space-md)); }
}

/* === Hero Section === */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; background: var(--navy);
}
.hero-slides {
    position: absolute; inset: 0;
}
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,22,40,.4) 0%,
        rgba(10,22,40,.3) 40%,
        rgba(10,22,40,.7) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 800px;
    padding: 0 var(--space-lg);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    background: rgba(201,169,110,.15); border: 1px solid rgba(201,169,110,.3);
    padding: 8px 20px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 600; color: var(--gold);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: var(--space-lg);
}
.hero-badge i { font-size: 10px; }
.hero-title {
    font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600; color: #fff; line-height: 1.1;
    margin-bottom: var(--space-lg);
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,.8); font-weight: 300;
    max-width: 600px; margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}
.hero-buttons {
    display: flex; align-items: center; justify-content: center;
    gap: var(--space-md); flex-wrap: wrap;
}
.btn-primary-lux {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    background: var(--gold); color: var(--navy);
    font-size: 15px; font-weight: 600; padding: 16px 36px;
    border-radius: var(--radius-full); letter-spacing: .3px;
    transition: var(--ease-smooth); cursor: pointer;
    border: none;
}
.btn-primary-lux:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-primary-lux i { font-size: 12px; transition: transform .3s ease; }
.btn-primary-lux:hover i { transform: translateX(4px); }

.btn-outline-lux {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    background: transparent; color: #fff;
    font-size: 15px; font-weight: 500; padding: 16px 36px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,.3);
    letter-spacing: .3px; transition: var(--ease-smooth);
    cursor: pointer;
}
.btn-outline-lux:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,.05); }

.hero-dots {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: var(--space-sm);
}
.hero-dot {
    width: 30px; height: 3px; border-radius: 3px;
    background: rgba(255,255,255,.3); transition: var(--ease-smooth);
    cursor: pointer;
}
.hero-dot.active { background: var(--gold); width: 50px; }

/* Scroll Indicator */
.hero-scroll {
    position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
    z-index: 3; text-align: center; color: rgba(255,255,255,.5);
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px; height: 40px; background: rgba(255,255,255,.2);
    margin: 8px auto 0; position: relative; overflow: hidden;
}
.hero-scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 50%; background: var(--gold);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* === Section Styles === */
.section {
    padding: var(--space-5xl) 0;
    position: relative;
}
.section-alt { background: var(--ivory); }
.section-dark { background: var(--navy); color: rgba(255,255,255,.8); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-cream { background: var(--cream); }

.section-header {
    text-align: center; max-width: 650px;
    margin: 0 auto var(--space-3xl);
}
.section-tag {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    font-size: 12px; font-weight: 600; color: var(--gold);
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: var(--space-md);
}
.section-tag i { font-size: 10px; }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600; margin-bottom: var(--space-md);
    line-height: 1.2;
}
.section-desc {
    font-size: 16px; color: var(--text-muted);
    font-weight: 300; line-height: 1.8;
}
.section-dark .section-desc { color: rgba(255,255,255,.6); }
.section-dark .section-tag { color: var(--gold); }

/* === Stats Section === */
.stats-section {
    background: var(--navy);
    padding: var(--space-3xl) 0;
    position: relative;
}
.stats-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl); text-align: center;
}
.stat-item {}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700; color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 14px; color: rgba(255,255,255,.6);
    margin-top: var(--space-sm); font-weight: 300;
    letter-spacing: .5px;
}

/* === Services / Why Cards === */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}
.lux-card {
    background: var(--ivory);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--border-subtle);
    transition: var(--ease-smooth);
    position: relative; overflow: hidden;
}
.lux-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--gold);
    transform: scaleX(0); transition: transform .4s ease;
}
.lux-card:hover::before { transform: scaleX(1); }
.lux-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lux-card-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--gold); margin-bottom: var(--space-lg);
}
.lux-card h3 {
    font-family: var(--font-display); font-size: 20px;
    margin-bottom: var(--space-md); font-weight: 600;
}
.lux-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* Glass Card Variant */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: var(--ease-smooth);
}
.glass-card:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--gold);
    transform: translateY(-4px);
}

/* === Experience / Journey Cards === */
.experiences-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: var(--space-xl);
}
.experience-card {
    border-radius: var(--radius-lg);
    overflow: hidden; background: var(--ivory);
    box-shadow: var(--shadow-sm);
    transition: var(--ease-smooth);
}
.experience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.experience-card-img {
    position: relative; height: 280px; overflow: hidden;
}
.experience-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
}
.experience-card:hover .experience-card-img img { transform: scale(1.06); }
.experience-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,.4), transparent);
}
.experience-card-duration {
    position: absolute; top: var(--space-md); left: var(--space-md);
    background: rgba(10,22,40,.7); backdrop-filter: blur(10px);
    color: var(--gold); font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: var(--radius-full);
    letter-spacing: .5px;
}
.experience-card-body {
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
}
.experience-card-body h3 {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 600; margin-bottom: var(--space-sm);
}
.experience-card-body p {
    font-size: 15px; color: var(--text-muted); line-height: 1.7;
    margin-bottom: var(--space-lg);
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.experience-card-actions {
    display: flex; align-items: center; gap: var(--space-md);
}
.btn-learn-more {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    font-size: 14px; font-weight: 600; color: var(--navy);
    border-bottom: 2px solid var(--gold); padding-bottom: 2px;
    transition: var(--ease-smooth);
}
.btn-learn-more:hover { color: var(--gold); }
.btn-learn-more i { font-size: 11px; transition: transform .3s ease; }
.btn-learn-more:hover i { transform: translateX(3px); }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: #25D366;
    padding: 8px 16px; border-radius: var(--radius-full);
    border: 1px solid rgba(37,211,102,.3);
    transition: var(--ease-smooth);
}
.btn-whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; }

/* === Gallery === */
.gallery-filters {
    display: flex; align-items: center; justify-content: center;
    gap: var(--space-sm); margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}
.gallery-filter-btn {
    font-size: 14px; font-weight: 500; padding: 8px 20px;
    border-radius: var(--radius-full); color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    transition: var(--ease-smooth);
}
.gallery-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.gallery-filter-btn.active {
    background: var(--navy); color: var(--gold);
    border-color: var(--navy);
}

.gallery-masonry {
    columns: 3; column-gap: var(--space-lg);
}
.gallery-masonry-item {
    break-inside: avoid; margin-bottom: var(--space-lg);
    border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer; position: relative;
}
.gallery-masonry-item img {
    width: 100%; display: block;
    transition: transform .5s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-masonry-item::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(10,22,40,0); transition: background .3s ease;
    display: flex; align-items: center; justify-content: center;
}
.gallery-masonry-item:hover::after { background: rgba(10,22,40,.3); }

/* === Why Choose Section === */
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}
.why-card {
    text-align: center; padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    transition: var(--ease-smooth);
}
.why-card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(201,169,110,.4);
    transform: translateY(-4px);
}
.why-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--navy);
    margin: 0 auto var(--space-lg);
    transition: var(--ease-smooth);
}
.why-card:hover .why-icon { transform: scale(1.1); box-shadow: var(--shadow-gold); }
.why-card h3 {
    font-family: var(--font-display); font-size: 18px;
    margin-bottom: var(--space-md); font-weight: 600; color: #fff;
}
.why-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* === Brand Story Section === */
.brand-story {
    background: var(--cream);
}
.brand-story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl); align-items: center;
}
.brand-values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.value-card {
    text-align: center; padding: var(--space-xl);
    border-radius: var(--radius-lg); background: var(--ivory);
    border: 1px solid var(--border-subtle);
    transition: var(--ease-smooth);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.value-card-number {
    font-family: var(--font-display); font-size: 36px;
    font-weight: 700; color: var(--gold); line-height: 1;
}
.value-card h4 {
    font-size: 16px; margin: var(--space-md) 0 var(--space-sm);
    font-weight: 600;
}
.value-card p { font-size: 13px; color: var(--text-muted); }

/* Timeline */
.timeline {
    position: relative; max-width: 700px; margin: 0 auto;
    padding-left: 40px;
}
.timeline::before {
    content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--gold), var(--border-subtle));
}
.timeline-item {
    position: relative; margin-bottom: var(--space-2xl);
    padding-left: var(--space-xl);
}
.timeline-dot {
    position: absolute; left: -32px; top: 5px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--gold); border: 3px solid var(--warm-white);
    box-shadow: 0 0 0 3px var(--gold);
}
.timeline-item h4 {
    font-family: var(--font-display); font-size: 18px;
    font-weight: 600; margin-bottom: var(--space-xs);
}
.timeline-item p { font-size: 15px; color: var(--text-muted); }

/* === Contact === */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}
.contact-info-cards {
    display: flex; flex-direction: column; gap: var(--space-lg);
}
.contact-info-card {
    display: flex; align-items: flex-start; gap: var(--space-lg);
    padding: var(--space-xl); border-radius: var(--radius-lg);
    background: var(--ivory); border: 1px solid var(--border-subtle);
    transition: var(--ease-smooth);
}
.contact-info-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-info-icon {
    width: 50px; height: 50px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 20px; flex-shrink: 0;
}
.contact-info-card h4 {
    font-size: 14px; font-weight: 600; margin-bottom: 4px;
    font-family: var(--font-body);
}
.contact-info-card p { font-size: 15px; color: var(--text-muted); }
.contact-info-card a { color: var(--text-dark); }
.contact-info-card a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-card {
    background: var(--ivory); border-radius: var(--radius-lg);
    padding: var(--space-2xl); border: 1px solid var(--border-subtle);
}
.form-group { margin-bottom: var(--space-lg); }
.form-label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--text-dark); margin-bottom: var(--space-sm);
    letter-spacing: .5px;
}
.form-input, .form-textarea {
    width: 100%; padding: 14px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 15px; color: var(--text-dark);
    background: var(--warm-white);
    transition: var(--ease-smooth);
}
.form-input:focus, .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,.1);
    outline: none;
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    background: var(--navy); color: var(--gold);
    font-size: 15px; font-weight: 600; padding: 16px 36px;
    border-radius: var(--radius-full); border: none;
    cursor: pointer; transition: var(--ease-smooth);
    width: 100%; justify-content: center;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }
.form-msg {
    padding: 12px 16px; border-radius: var(--radius-md);
    font-size: 14px; font-weight: 500; margin-top: var(--space-md);
}
.form-msg.success { background: rgba(45,138,110,.1); color: var(--success); }
.form-msg.error { background: rgba(192,57,43,.1); color: var(--danger); }

/* Google Maps */
.contact-map {
    border-radius: var(--radius-lg); overflow: hidden;
    height: 300px; margin-top: var(--space-xl);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* === Journey Detail === */
.journey-hero {
    position: relative; height: 70vh; min-height: 500px;
    overflow: hidden; background: var(--navy);
}
.journey-hero img {
    width: 100%; height: 100%; object-fit: cover;
}
.journey-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,.8), rgba(10,22,40,.2));
}
.journey-hero-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: var(--space-3xl) var(--space-lg);
}
.journey-hero-content h1 {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff; font-weight: 600; margin-bottom: var(--space-md);
}
.journey-hero-content .journey-duration {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    color: var(--gold); font-size: 15px; font-weight: 500;
}
.journey-content {
    max-width: 800px; margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}
.journey-story {
    font-size: 18px; line-height: 1.9; color: var(--text-body);
}
.journey-story p { margin-bottom: var(--space-xl); }
.journey-highlights {
    margin: var(--space-3xl) 0;
}
.journey-highlights h3 {
    font-family: var(--font-display); font-size: 24px;
    margin-bottom: var(--space-xl);
}
.highlight-list {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
}
.highlight-item {
    display: flex; align-items: center; gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--ivory); border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}
.highlight-item i { color: var(--gold); font-size: 16px; }
.highlight-item span { font-size: 15px; font-weight: 500; }
.journey-cta {
    text-align: center; padding: var(--space-3xl);
    background: var(--navy);
    border-radius: var(--radius-lg);
    margin: var(--space-3xl) 0;
}
.journey-cta h3 {
    font-family: var(--font-display); font-size: 28px;
    color: #fff; margin-bottom: var(--space-md);
}
.journey-cta p {
    color: rgba(255,255,255,.6); font-size: 16px;
    margin-bottom: var(--space-xl);
}
.journey-cta .btn-primary-lux { font-size: 16px; padding: 18px 40px; }

/* ═══════════════════════════════════════════════════════════ */
/* LUXURY TRUST SECTION                                       */
/* ═══════════════════════════════════════════════════════════ */
.trust-section {
    background: var(--warm-white);
    padding: 80px 0;
    border-top: 1px solid var(--border-subtle);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.trust-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.trust-icon { font-size: 28px; color: var(--gold); margin-bottom: 4px; }
.trust-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.trust-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}
@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
    .trust-number { font-size: 32px; }
}
@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .trust-section { padding: 48px 0; }
}

/* ═══════════════════════════════════════════════════════════ */
/* CLIENT STORIES — PREMIUM LUXURY CAROUSEL                   */
/* ═══════════════════════════════════════════════════════════ */

/* Section */
.stories-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.stories-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stories-section .section-title { color: #fff; }
.stories-section .section-desc { color: rgba(255,255,255,.5); }

/* Carousel Shell */
.stories-carousel {
    position: relative;
    padding: 0 0 56px;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
}
.stories-track {
    display: flex;
    transition: transform .65s cubic-bezier(.25,.8,.25,1);
    will-change: transform;
    cursor: grab;
}
.stories-track.grabbing { cursor: grabbing; }

/* Slide */
.stories-slide {
    flex: 0 0 calc(33.3333% - 19px);
    max-width: calc(33.3333% - 19px);
    min-width: 0;
    margin-right: 28px;
    opacity: 0;
    transform: translateY(24px);
    animation: storySlideIn .7s ease forwards;
}
.stories-slide:nth-child(1) { animation-delay: .05s; }
.stories-slide:nth-child(2) { animation-delay: .15s; }
.stories-slide:nth-child(3) { animation-delay: .25s; }
.stories-slide:nth-child(4) { animation-delay: .35s; }
.stories-slide:nth-child(5) { animation-delay: .45s; }
.stories-slide:nth-child(6) { animation-delay: .55s; }

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

/* Card */
.story-card {
    position: relative;
    height: 100%;
}
.story-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(201,169,110,.12), transparent 50%, rgba(201,169,110,.06));
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}
.story-card:hover .story-card-glow { opacity: 1; }

.story-card-inner {
    position: relative;
    z-index: 1;
    background: rgba(18,35,61,.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 20px;
    padding: 36px 32px 32px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    transition: transform .45s cubic-bezier(.25,.8,.25,1),
                box-shadow .45s ease,
                border-color .45s ease;
}
.story-card:hover .story-card-inner {
    transform: translateY(-6px);
    border-color: rgba(201,169,110,.18);
    box-shadow:
        0 20px 60px rgba(0,0,0,.25),
        0 0 40px rgba(201,169,110,.06);
}

/* Card Top Row */
.story-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}
.story-card-stars {
    display: flex;
    gap: 3px;
}
.story-card-stars .fas.fa-star { color: var(--gold); font-size: 13px; }
.story-card-stars .far.fa-star { color: rgba(201,169,110,.2); font-size: 13px; }
.story-card-quote-icon {
    color: rgba(201,169,110,.12);
    font-size: 26px;
    transition: color .4s ease;
}
.story-card:hover .story-card-quote-icon { color: rgba(201,169,110,.3); }

/* Quote Text */
.story-card-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,.82);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Divider */
.story-card-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}
.story-card-divline {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,.2), transparent);
}
.story-card-divdot {
    color: var(--gold);
    font-size: 6px;
    opacity: .5;
}

/* Author */
.story-card-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.story-card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201,169,110,.4);
    flex-shrink: 0;
    transition: border-color .3s ease;
}
.story-card:hover .story-card-avatar { border-color: var(--gold); }
.story-card-avatar-ph {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-light), var(--navy-medium));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    border: 2px solid rgba(201,169,110,.4);
    flex-shrink: 0;
    transition: border-color .3s ease;
}
.story-card:hover .story-card-avatar-ph { border-color: var(--gold); }
.story-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.story-card-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-body);
}
.story-card-country {
    font-size: 12px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
}
.story-card-country i { font-size: 10px; }
.story-card-company {
    font-size: 12px;
    color: rgba(255,255,255,.35);
}

/* ── Arrows ─────────────────────────────────────── */
.stories-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10,22,40,.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201,169,110,.15);
    color: var(--gold);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 10;
}
.stories-arrow:hover {
    background: rgba(201,169,110,.12);
    border-color: rgba(201,169,110,.35);
    transform: translateY(-50%) scale(1.06);
}
.stories-arrow:active { transform: translateY(-50%) scale(.96); }
.stories-arrow-prev { left: -24px; }
.stories-arrow-next { right: -24px; }
.stories-arrow:disabled {
    opacity: .3;
    cursor: not-allowed;
}

/* ── Dots ───────────────────────────────────────── */
.stories-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.stories-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,.25);
    background: transparent;
    cursor: pointer;
    transition: all .35s ease;
    padding: 0;
}
.stories-dot:hover {
    border-color: rgba(201,169,110,.5);
}
.stories-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(201,169,110,.35);
    transform: scale(1.2);
}

/* ── Empty State ────────────────────────────────── */
.stories-empty {
    text-align: center;
    padding: 80px 20px;
}
.stories-empty-icon {
    font-size: 40px;
    color: rgba(201,169,110,.2);
    margin-bottom: 20px;
}
.stories-empty p {
    font-size: 16px;
    color: rgba(255,255,255,.3);
    font-style: italic;
    font-family: var(--font-display);
}

/* ── Responsive ─────────────────────────────────── */
@media (min-width: 1440px) {
    .stories-slide {
        flex: 0 0 calc(33.3333% - 19px);
        max-width: calc(33.3333% - 19px);
    }
}
@media (max-width: 1199px) {
    .stories-slide {
        flex: 0 0 calc(50% - 14px);
        max-width: calc(50% - 14px);
    }
    .stories-arrow-prev { left: -12px; }
    .stories-arrow-next { right: -12px; }
}
@media (max-width: 767px) {
    .stories-slide {
        flex: 0 0 calc(100% - 0px);
        max-width: 100%;
    }
    .story-card-inner { padding: 28px 24px 24px; min-height: 280px; }
    .story-card-text { font-size: 15px; -webkit-line-clamp: 6; }
    .stories-arrow { width: 40px; height: 40px; font-size: 14px; }
    .stories-arrow-prev { left: 4px; }
    .stories-arrow-next { right: 4px; }
    .stories-carousel { padding: 0 0 48px; }
}

/* === Footer === */
.footer {
    background: var(--navy);
    padding: var(--space-4xl) 0 var(--space-xl);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}
.footer-logo {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}
.footer-logo-letter {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--gold); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 18px; font-weight: 700;
}
.footer-logo-text {
    font-family: var(--font-display); font-size: 16px; font-weight: 600;
    color: #fff; letter-spacing: 2px;
}
.footer-tagline {
    font-size: 14px; color: rgba(255,255,255,.5);
    line-height: 1.7; margin-bottom: var(--space-lg);
    max-width: 300px;
}
.footer-social {
    display: flex; gap: var(--space-sm);
}
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: 16px;
    transition: var(--ease-smooth);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-links-col h4 {
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    color: #fff; margin-bottom: var(--space-lg); letter-spacing: .5px;
}
.footer-links-col ul li { margin-bottom: var(--space-sm); }
.footer-links-col ul li a {
    font-size: 14px; color: rgba(255,255,255,.5);
    transition: var(--ease-smooth);
}
.footer-links-col ul li a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: var(--space-xl);
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }

/* ═══════════════════════════════════════════════════════════ */
/* PREMIUM FLOATING CONTACT CENTER                            */
/* ═══════════════════════════════════════════════════════════ */
.contact-hub {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
}

/* Contact Hub Panel */
.contact-hub-panel {
    position: absolute; bottom: 70px; right: 0;
    width: 320px; background: rgba(10,22,40,.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(201,169,110,.15);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(201,169,110,.08);
    overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(10px) scale(.95);
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.contact-hub-panel.open {
    opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}
.contact-hub-header {
    padding: 18px 20px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-hub-title {
    font-family: var(--font-display); font-size: 16px;
    font-weight: 600; color: #fff;
}
.contact-hub-close {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; transition: var(--ease-smooth);
    border: none; cursor: pointer;
}
.contact-hub-close:hover { background: rgba(255,255,255,.1); color: #fff; }

.contact-hub-body { padding: 8px; }
.contact-hub-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px; border-radius: 12px;
    transition: var(--ease-smooth); cursor: pointer;
}
.contact-hub-item:hover { background: rgba(255,255,255,.06); }
.contact-hub-icon {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.contact-hub-info { flex: 1; min-width: 0; }
.contact-hub-label {
    display: block; font-size: 14px; font-weight: 600;
    color: #fff;
}
.contact-hub-desc {
    display: block; font-size: 12px;
    color: rgba(255,255,255,.4); margin-top: 2px;
}
.contact-hub-arrow {
    color: rgba(255,255,255,.2); font-size: 11px;
    transition: var(--ease-smooth);
}
.contact-hub-item:hover .contact-hub-arrow { color: rgba(255,255,255,.5); transform: translateX(3px); }

/* Trigger Button */
.contact-hub-triggers {
    display: flex; justify-content: flex-end;
}
.contact-hub-trigger {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #C9A96E, #A88B52);
    color: var(--navy); font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(201,169,110,.4);
    transition: var(--ease-smooth);
    border: none; cursor: pointer;
    position: relative;
}
.contact-hub-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(201,169,110,.5);
}
.contact-hub-trigger.active {
    background: linear-gradient(135deg, #0A1628, #1A3050);
    color: #C9A96E;
}
.contact-hub-trigger-pulse {
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(201,169,110,.3);
    animation: hubPulse 2s ease infinite;
}
.contact-hub-trigger.active .contact-hub-trigger-pulse { display: none; }
@keyframes hubPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════ */
/* COMMUNICATION MODALS (LINE & WeChat)                       */
/* ═══════════════════════════════════════════════════════════ */
.comm-modal {
    position: fixed; inset: 0; z-index: 9998;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: all .3s ease;
}
.comm-modal.open { opacity: 1; visibility: visible; }
.comm-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(10,22,40,.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.comm-modal-content {
    position: relative; z-index: 1;
    background: rgba(10,22,40,.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(201,169,110,.15);
    border-radius: 24px;
    padding: 40px 32px 32px;
    max-width: 420px; width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(201,169,110,.08);
    transform: translateY(20px) scale(.95);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.comm-modal.open .comm-modal-content {
    transform: translateY(0) scale(1);
}
.comm-modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: var(--ease-smooth);
    border: none; cursor: pointer;
}
.comm-modal-close:hover { background: rgba(255,255,255,.1); color: #fff; }
.comm-modal-icon {
    width: 64px; height: 64px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 20px;
}
.comm-modal-title {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 600; color: #fff; margin-bottom: 12px;
}
.comm-modal-message {
    font-size: 15px; color: rgba(255,255,255,.55);
    line-height: 1.7; margin-bottom: 28px;
}
.comm-modal-actions {
    display: flex; flex-direction: column; gap: 10px;
}
.comm-modal-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 24px; border-radius: 14px;
    font-size: 14px; font-weight: 600;
    transition: var(--ease-smooth); cursor: pointer;
    border: none; font-family: inherit;
}
.comm-modal-btn-primary {
    background: #25D366; color: #fff;
    box-shadow: 0 4px 15px rgba(37,211,102,.3);
}
.comm-modal-btn-primary:hover {
    background: #1DA851;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.comm-modal-btn-secondary {
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.1);
}
.comm-modal-btn-secondary:hover {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
}

.back-to-top {
    position: fixed; bottom: 24px; left: 24px; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; border: 1px solid rgba(201,169,110,.3);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: var(--ease-smooth);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); }

/* === Lightbox === */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10,22,40,.95); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: var(--ease-smooth);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-close, .lb-prev, .lb-next {
    position: absolute; background: none; color: #fff;
    font-size: 24px; padding: 10px;
    opacity: .6; transition: opacity .3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 8px; }

/* === Alert / Messages === */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 14px; font-weight: 500;
    margin-bottom: var(--space-lg);
}
.alert-success { background: rgba(45,138,110,.1); color: var(--success); border: 1px solid rgba(45,138,110,.2); }
.alert-error { background: rgba(192,57,43,.1); color: var(--danger); border: 1px solid rgba(192,57,43,.2); }

/* === Breadcrumb === */
.breadcrumb {
    display: flex; align-items: center; gap: var(--space-sm);
    font-size: 13px; color: var(--text-muted);
    padding: var(--space-md) 0;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-light); }

/* === Responsive === */
@media(max-width:1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
    .brand-story-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
    .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
    .section { padding: var(--space-3xl) 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .experiences-grid { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 2; }
    .brand-values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .highlight-list { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-masonry { columns: 1; }
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .btn-primary-lux, .btn-outline-lux { width: 100%; justify-content: center; }
    .contact-hub-panel { width: 280px; right: -8px; }
    .comm-modal-content { padding: 32px 24px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   v3.0 NEW STYLES — Legal, FAQ, Blog, Destinations, Breadcrumbs
   ═══════════════════════════════════════════════════════════════ */

/* === Breadcrumb === */
.breadcrumb { display:flex; align-items:center; gap:6px; padding:14px 0; font-size:13px; flex-wrap:wrap; }
.breadcrumb a { color:var(--text-muted); transition:color .2s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb .sep { color:var(--text-light); margin:0 2px; }

/* === Legal Pages (Privacy & Terms) === */
.legal-content h2 {
    font-size: 20px;
    color: var(--navy);
    margin: var(--space-2xl) 0 var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border-subtle);
}
.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}
.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}
.legal-content ul li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}
.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* === FAQ Accordion === */
.faq-accordion {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--ivory);
}
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    transition: background .2s;
    font-family: var(--font-body);
}
.faq-question:hover { background: rgba(201,169,110,.03); }
.faq-question[aria-expanded="true"] { color: var(--gold-dark); }
.faq-icon {
    transition: transform .3s ease;
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
}
.faq-answer.open {
    max-height: 500px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--text-body);
}

/* === Blog Grid === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
@media(max-width:768px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ivory);
    border: 1px solid var(--border-subtle);
    transition: all .35s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,110,.15);
}
.blog-card-link { display: block; text-decoration: none; }
.blog-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px 24px 24px; }
.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: .5px;
}
.blog-card-title {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.35;
    font-family: var(--font-display);
}
.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}
.blog-card-read {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s ease;
}
.blog-card:hover .blog-card-read { gap: 10px; }

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: var(--space-2xl);
}
.blog-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-body);
    transition: all .2s;
}
.blog-page-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.blog-page-info {
    font-size: 14px;
    color: var(--text-muted);
}

/* Blog Article Content */
.blog-article-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-body);
}
.blog-article-content h2 {
    font-size: 22px;
    color: var(--navy);
    margin: var(--space-2xl) 0 var(--space-md);
}
.blog-article-content h3 {
    font-size: 18px;
    color: var(--navy);
    margin: var(--space-xl) 0 var(--space-sm);
}
.blog-article-content p {
    margin-bottom: var(--space-lg);
}
.blog-article-content ul, .blog-article-content ol {
    padding-left: 24px;
    margin-bottom: var(--space-lg);
}
.blog-article-content li {
    margin-bottom: 6px;
    line-height: 1.7;
}
.blog-article-content img {
    border-radius: var(--radius-md);
    margin: var(--space-xl) 0;
}
.blog-article-content blockquote {
    border-left: 3px solid var(--gold);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    background: var(--cream);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-muted);
}

/* === Destinations Grid === */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}
@media(max-width:768px) { .destinations-grid { grid-template-columns: 1fr; } }

.dest-card {
    display: block;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ivory);
    border: 1px solid var(--border-subtle);
    transition: all .35s ease;
}
.dest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,110,.15);
}
.dest-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.dest-card:hover .dest-card-img img { transform: scale(1.08); }
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .3s ease;
}
.dest-card:hover .dest-card-overlay { opacity: 1; }
.dest-card-cta {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dest-card-body { padding: 20px 24px 24px; }
.dest-card-title {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 6px;
    font-family: var(--font-display);
}
.dest-card-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
