/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
    --ink:       #0f1923;
    --ink-soft:  #3a4a58;
    --ink-mute:  #6b7d8e;
    --paper:     #f7f4ef;
    --paper-2:   #eeeae3;
    --gold:      #c9993a;
    --gold-lt:   #e8c97a;
    --sky:       #1e4d8c;
    --sky-lt:    #3a7bc8;
    --white:     #ffffff;
    --shadow-sm: 0 2px 12px rgba(15,25,35,0.08);
    --shadow-md: 0 8px 32px rgba(15,25,35,0.12);
    --shadow-lg: 0 24px 64px rgba(15,25,35,0.18);
    --radius:    14px;
    --radius-sm: 8px;
    --trans:     0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    color: var(--ink);
    margin-bottom: 16px;
}
.section-sub {
    color: var(--ink-soft);
    font-size: 1.05rem;
    max-width: 580px;
    margin-bottom: 48px;
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background var(--trans), box-shadow var(--trans);
    padding: 0 24px;
}
.nav.scrolled {
    background: rgba(247,244,239,0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    transition: color var(--trans);
}
.nav.scrolled .nav-logo { color: var(--ink); }
.logo-icon {
    font-size: 1.5rem;
    display: inline-block;
    transform: rotate(-30deg);
    transition: transform 0.4s;
}
.nav-logo:hover .logo-icon { transform: rotate(0deg); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links > a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color var(--trans);
    letter-spacing: 0.3px;
}
.nav.scrolled .nav-links > a { color: var(--ink-soft); }
.nav-links > a:hover { color: var(--gold); }

/* Language selector */
.lang-selector { position: relative; }
.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    transition: all var(--trans);
    background: rgba(255,255,255,0.1);
}
.nav.scrolled .lang-btn {
    border-color: var(--paper-2);
    color: var(--ink);
    background: var(--white);
}
.lang-btn:hover { background: rgba(255,255,255,0.2); }
.nav.scrolled .lang-btn:hover { background: var(--paper-2); }
.lang-arrow { font-size: 10px; opacity: 0.7; }
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid var(--paper-2);
    z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background var(--trans);
    color: var(--ink);
}
.lang-option:hover { background: var(--paper); }
.lang-option.active { font-weight: 700; color: var(--gold); }

/* Mobile nav */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--trans);
}
.nav.scrolled .nav-hamburger span { background: var(--ink); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-parallax {
    position: absolute;
    inset: -10%;
    background-image:
        url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    transition: transform 0.1s linear;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(10,18,30,0.75) 0%,
        rgba(15,28,50,0.65) 50%,
        rgba(20,40,70,0.55) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 24px 60px;
    max-width: 780px;
    animation: heroFadeUp 1s ease both;
}
@keyframes heroFadeUp {
    from { opacity:0; transform: translateY(30px); }
    to   { opacity:1; transform: translateY(0); }
}
.hero-tag {
    display: inline-block;
    background: rgba(201,153,58,0.2);
    border: 1px solid rgba(201,153,58,0.5);
    color: var(--gold-lt);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 24px;
    animation: heroFadeUp 1s 0.2s ease both;
}
.hero-title {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    animation: heroFadeUp 1s 0.4s ease both;
}
.hero-title-accent { color: var(--gold-lt); }
.hero-sub {
    color: rgba(255,255,255,0.82);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    max-width: 560px;
    margin: 0 auto 36px;
    animation: heroFadeUp 1s 0.6s ease both;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(201,153,58,0.4);
    transition: all var(--trans);
    animation: heroFadeUp 1s 0.8s ease both;
}
.hero-cta:hover {
    background: #b8882a;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,153,58,0.5);
}
.cta-arrow { font-size: 1.2rem; transition: transform var(--trans); }
.hero-cta:hover .cta-arrow { transform: translateX(4px); }
.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll span {
    display: block;
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}
.hero-scroll span::after {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollBob 1.8s infinite;
}
@keyframes scrollBob {
    0%,100% { top: 5px; opacity:1; }
    100%     { top: 18px; opacity:0; }
}

/* ── Features strip ──────────────────────────────────────────────────────── */
.features-strip {
    background: var(--ink);
    padding: 20px 24px;
}
.features-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
}
.feature-icon { font-size: 1.1rem; }
.feature-divider {
    width: 1px; height: 24px;
    background: rgba(255,255,255,0.15);
}

/* ── Packages ────────────────────────────────────────────────────────────── */
.packages {
    padding: 100px 0;
    background: var(--paper);
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pkg-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 2px solid transparent;
    position: relative;
    transition: all var(--trans);
    box-shadow: var(--shadow-sm);
}
.pkg-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.pkg-card.active {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(201,153,58,0.2);
}
.pkg-card-featured {
    background: var(--ink);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}
.pkg-card-featured:hover { transform: scale(1.04) translateY(-4px); }
.pkg-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.pkg-top { text-align: center; margin-bottom: 24px; }
.pkg-icon { font-size: 2.2rem; margin-bottom: 10px; }
.pkg-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.pkg-card-featured .pkg-name { color: var(--white); }
.pkg-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.pkg-price::before { content: ''; }
.pkg-tagline { font-size: 0.82rem; color: var(--ink-mute); }
.pkg-card-featured .pkg-tagline { color: rgba(255,255,255,0.5); }
.pkg-features {
    border-top: 1px solid var(--paper-2);
    padding-top: 20px;
    margin-bottom: 24px;
}
.pkg-card-featured .pkg-features { border-color: rgba(255,255,255,0.1); }
.pkg-features li {
    font-size: 0.9rem;
    color: var(--ink-soft);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pkg-card-featured .pkg-features li { color: rgba(255,255,255,0.75); }
.pkg-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
    flex-shrink: 0;
}
.pkg-select-btn {
    width: 100%;
    padding: 13px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--paper-2);
    color: var(--ink);
    transition: all var(--trans);
    letter-spacing: 0.3px;
}
.pkg-card-featured .pkg-select-btn {
    background: var(--gold);
    color: var(--white);
}
.pkg-select-btn:hover { background: var(--gold); color: var(--white); }
.pkg-card-featured .pkg-select-btn:hover { background: #b8882a; }

/* ── How it works ────────────────────────────────────────────────────────── */
.how-it-works {
    padding: 100px 0;
    background: var(--ink);
}
.how-it-works .section-label { color: var(--gold); }
.how-it-works .section-title { color: var(--white); }
.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 32px 20px;
}
.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    margin-bottom: -8px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 16px; }
.step h3 { color: var(--white); margin-bottom: 10px; }
.step p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.step-arrow {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.4;
    flex-shrink: 0;
}

/* ── Destinations ────────────────────────────────────────────────────────── */
.destinations { padding: 100px 0; background: var(--paper-2); }
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.dest-card {
    background: var(--dest-bg);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--trans);
    box-shadow: var(--shadow-sm);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-emoji { font-size: 2.4rem; margin-bottom: 12px; }
.dest-name  { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.dest-country { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--paper); }
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.test-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--trans);
}
.test-card:hover { box-shadow: var(--shadow-md); }
.test-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.test-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
    width: 40px; height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800;
    flex-shrink: 0;
}
.test-name  { font-size: 0.9rem; font-weight: 700; }
.test-trip  { font-size: 0.8rem; color: var(--ink-mute); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--ink); padding: 60px 24px 0; }
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); max-width: 260px; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color var(--trans); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pkg-card-featured { transform: none; }
    .pkg-card-featured:hover { transform: translateY(-4px); }
    .dest-grid   { grid-template-columns: repeat(2,1fr); }
    .test-grid   { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .steps-grid  { flex-direction: column; align-items: center; }
    .step-arrow  { transform: rotate(90deg); }
    .nav-links   { display: none; }
    .nav-hamburger { display: flex; }
    .footer-inner { flex-direction: column; gap: 32px; }
}
@media (max-width: 580px) {
    .dest-grid { grid-template-columns: 1fr; }
    .features-inner { flex-direction: column; gap: 0; }
    .feature-divider { width: 40px; height: 1px; }
}

/* ── Mobile nav open ─────────────────────────────────────────────────────── */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    z-index: 99;
}
.nav-links.mobile-open > a { color: var(--ink); font-size: 1rem; }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Selection color ─────────────────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--white); }
