:root {
    --primary: #C8922A;
    --primary-dark: #A0711A;
    --secondary: #0F1A2E;
    --text-light: #f8f9fa;
    --text-dark: #111;
    --text-muted: #8892b0;
    --bg-dark: #0F1A2E;
    --bg-light: #f7f4f0;
    --accent-teal: #1A7A6E;
    --accent-warm: #E8C08A;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* ── Header & Nav ── */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(15, 26, 46, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    opacity: 1;
}

/* ── Hamburger ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.bar {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

/* ── Hero ── */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1506059612708-99d6c258160e?auto=format&fit=crop&w=1920&q=80') no-repeat center center / cover;
    color: var(--text-light);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 26, 46, 0.9) 0%,
        rgba(15, 26, 46, 0.6) 55%,
        rgba(15, 26, 46, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ── Page Hero (sub-pages) ── */
.page-hero {
    position: relative;
    padding: 12rem 0 8rem;
    color: var(--text-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero--about       { background-image: url('https://images.unsplash.com/photo-1547452434-5ec2f69c8a09?auto=format&fit=crop&w=1920&q=80'); }
.page-hero--packages    { background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80'); }
.page-hero--destinations { background-image: url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=format&fit=crop&w=1920&q=80'); }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 26, 46, 0.75) 0%,
        rgba(15, 26, 46, 0.55) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    line-height: 1.75;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(200, 146, 42, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(200, 146, 42, 0.42);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.65);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
    border-color: var(--text-light);
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(200, 146, 42, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(200, 146, 42, 0.45);
}

/* ── Stats Bar ── */
.stats-bar {
    background: var(--bg-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.stats-bar .grid {
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    padding: 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--glass-border);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.73rem;
    letter-spacing: 2.5px;
    font-weight: 500;
}

/* ── Section Tag ── */
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: rgba(200, 146, 42, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(200, 146, 42, 0.2);
}

/* ── Services ── */
.services {
    padding: 8rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.section-header p {
    color: #666;
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.75;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-warm));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(200, 146, 42, 0.12);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.08), rgba(232, 192, 138, 0.12));
    border-radius: 18px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent-warm));
    transform: scale(1.08) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--secondary);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ── Process Section ── */
.process-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #edeae5 0%, var(--bg-light) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(200, 146, 42, 0.1);
}

.process-number {
    position: absolute;
    top: -10px;
    right: 14px;
    font-size: 7.5rem;
    font-weight: 700;
    color: rgba(200, 146, 42, 0.06);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.process-icon-wrap {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.process-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Featured Destinations ── */
.destinations-section {
    padding: 8rem 0;
    background: white;
}

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

.dest-card {
    position: relative;
    height: 290px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, var(--bg-dark), var(--accent-teal));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.22);
}

.dest-card .dest-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

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

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 46, 0.88) 0%, rgba(15, 26, 46, 0.1) 60%);
    transition: var(--transition);
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(to top, rgba(160, 113, 26, 0.8) 0%, rgba(15, 26, 46, 0.15) 55%);
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}

.dest-flag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.dest-flag img {
    width: 22px;
    height: auto;
    border-radius: 3px;
    display: block;
}

.dest-city {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.dest-country {
    font-size: 0.82rem;
    opacity: 0.72;
    margin-top: 0.15rem;
}

.dest-flight {
    font-size: 0.78rem;
    margin-top: 0.5rem;
    opacity: 0.6;
}

/* ── Region Destinations (destinations.html) ── */
.region-section {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.region-section:last-child {
    border-bottom: none;
}

.region-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.region-header h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.region-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 146, 42, 0.3), transparent);
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.region-dest-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.region-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(200, 146, 42, 0.12);
}

.region-dest-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--bg-dark), var(--accent-teal));
}

.region-dest-body {
    padding: 1rem 1.2rem;
}

.region-dest-flag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.4rem;
}

.region-dest-flag img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.region-dest-city {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.2;
}

.region-dest-country {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.1rem;
}

.region-dest-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 500;
}

/* ── Packages Section ── */
.packages-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.packages-category {
    margin-bottom: 6rem;
}

.packages-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.category-header h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 700;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--primary);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(200, 146, 42, 0.13);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.package-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--bg-dark), var(--accent-teal));
}

.package-body {
    padding: 1.8rem;
}

.package-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.package-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.package-tag {
    font-size: 0.78rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.package-price {
    margin-bottom: 1.4rem;
}

.price-from {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-per {
    font-size: 0.82rem;
    color: #888;
}

.package-features {
    list-style: none;
    margin-bottom: 1.6rem;
}

.package-features li {
    font-size: 0.88rem;
    color: #555;
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.package-features li.excluded::before {
    content: '✗';
    color: #ccc;
}

.package-features li.excluded {
    color: #aaa;
}

/* ── FAQ ── */
.faq-section {
    padding: 6rem 0 8rem;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.6rem;
}

.faq-item p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
}

/* ── CTA Section ── */
.cta-section {
    padding: 4rem 0 8rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem;
    border-radius: 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.09) 0%, transparent 65%);
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,0,0,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.88;
    position: relative;
    z-index: 1;
}

.cta-card .btn {
    position: relative;
    z-index: 1;
}

/* ── About Story ── */
.story-section {
    padding: 8rem 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.story-text p {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.story-img-block {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark), var(--accent-teal));
}

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

.story-img-block:first-child {
    height: 260px;
}

.story-img-block:nth-child(2) {
    height: 200px;
    margin-top: 3rem;
}

.story-img-block:nth-child(3) {
    height: 200px;
}

.story-img-block:nth-child(4) {
    height: 260px;
    margin-top: -3rem;
}

/* ── About Panel ── */
.about-panel {
    background: var(--bg-dark);
    padding: 5rem 0;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.panel-item {
    padding: 1.5rem;
    border-right: 1px solid var(--glass-border);
}

.panel-item:last-child {
    border-right: none;
}

.panel-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
    line-height: 1;
}

.panel-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ── Timeline ── */
.timeline-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-dot {
    grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-empty {
    grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-empty {
    grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    text-align: left;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 0 0 6px rgba(200, 146, 42, 0.12);
    position: relative;
    z-index: 1;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.timeline-content {
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.timeline-date {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
}

/* ── Values ── */
.values-section {
    padding: 8rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 146, 42, 0.1);
}

.value-number {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.93rem;
    color: #666;
    line-height: 1.7;
}

/* ── Terms ── */
.terms-section {
    padding: 6rem 0 8rem;
    background: white;
}

.terms-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4rem;
    align-items: start;
}

.terms-nav {
    position: sticky;
    top: 6rem;
}

.terms-nav h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 1rem;
}

.terms-nav ul {
    list-style: none;
}

.terms-nav li {
    margin-bottom: 0.5rem;
}

.terms-nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: var(--transition);
    display: block;
    padding: 0.3rem 0;
}

.terms-nav a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.terms-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 3rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.07);
}

.terms-content h2:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.terms-content p {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-content ul li {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.terms-content strong {
    color: var(--secondary);
    font-weight: 600;
}

/* ── Footer ── */
footer {
    background: #050b14;
    color: white;
    padding: 6rem 0 2rem;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    margin-bottom: 4rem;
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.3px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Service planner link ── */
.service-planner-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.service-planner-link:hover { color: var(--accent-warm); }

/* ── Packages callout ── */
.planner-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-dark);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.planner-callout-body {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.planner-callout-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 0.1rem;
}

.planner-callout-body strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.planner-callout-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    max-width: 480px;
}

/* ── Trip Planner ── */
.planner-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.planner-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.planner-intro h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
    margin: 0.5rem 0 1rem;
}

.planner-intro p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
}

.planner-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.planner-pillar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.planner-pillar-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.planner-pillar h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.planner-pillar p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.planner-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 700px;
    margin: 3rem auto 0;
}

.planner-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 0.6rem;
}

.planner-progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 0%;
    transition: width 0.4s ease;
}

.planner-step-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.planner-step { display: none; }
.planner-step.active { display: block; }

.planner-step h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.planner-step-sub {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: -1rem;
    margin-bottom: 1.25rem;
}

.planner-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.planner-opt {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.planner-opt:hover {
    border-color: var(--primary);
    background: rgba(200, 146, 42, 0.1);
}

.planner-opt.selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 600;
}

.planner-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    padding: 1rem;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 2rem;
    outline: none;
    transition: var(--transition);
}

.planner-textarea:focus { border-color: var(--primary); }
.planner-textarea::placeholder { color: var(--text-muted); }

.planner-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

/* Result screen */
.planner-result-match {
    background: rgba(200, 146, 42, 0.1);
    border: 1.5px solid var(--primary);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.planner-result-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.planner-result-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.planner-result-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.planner-result-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-warm);
}

.planner-result-summary {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    line-height: 2;
    color: var(--text-muted);
}

.planner-result-summary strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.25rem;
}

.planner-send-btn {
    display: block;
    width: 100%;
    text-align: center;
}

.planner-restart {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    background: none;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.planner-restart:hover { color: var(--text-light); }

/* ── Mobile ── */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .story-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .timeline::before { display: none; }
    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        grid-column: 1;
    }
    .timeline-item .timeline-empty { display: none; }
    .terms-grid {
        grid-template-columns: 1fr;
    }
    .terms-nav {
        position: static;
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 26, 46, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 1.5rem 2rem 2rem;
        gap: 0.75rem;
        border-top: 1px solid var(--glass-border);
        box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    }

    .nav-links.mobile-open { display: flex; }

    .nav-links a.btn {
        display: block;
        text-align: center;
        margin-top: 0.5rem;
    }

    .hero h1 {
        font-size: 2.6rem;
        letter-spacing: -0.5px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-bar .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2n)::after { display: none; }

    .process-grid { grid-template-columns: 1fr; }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-card { height: 220px; }

    .values-grid { grid-template-columns: 1fr; }

    .panel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .panel-item:nth-child(2n) { border-right: none; }
    .panel-item:nth-child(1),
    .panel-item:nth-child(2) {
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 2rem;
    }

    .footer-grid { grid-template-columns: 1fr; }

    .cta-card {
        padding: 3rem 1.5rem;
    }

    .cta-card h2 { font-size: 2rem; }

    .section-header h2 { font-size: 2rem; }

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

    .faq-grid { grid-template-columns: 1fr; }

    .packages-grid { grid-template-columns: 1fr; }

    .region-grid { grid-template-columns: repeat(2, 1fr); }

    .planner-card { padding: 1.75rem 1.25rem; }

    .planner-opt { font-size: 0.875rem; padding: 0.65rem 1rem; }

    .planner-step h3 { font-size: 1.2rem; }

    .planner-pillars { grid-template-columns: 1fr; }

    .planner-intro h2 { font-size: 1.8rem; }

    .planner-callout {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 480px) {
    .dest-grid { grid-template-columns: 1fr; }
    .region-grid { grid-template-columns: 1fr; }
}
