@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;1,300&display=swap');

/* --- CSS variables for "Pathfinder" Interactive Story-Map Theme --- */
:root {
    --bg: #0D1117;
    --bg-card: #161B22;
    --bg-elevated: #1C2128;
    --fg: #E6EDF3;
    --fg-muted: #8B949E;
    --accent: #58A6FF;
    --accent-hover: #79B8FF;
    --accent-2: #F78166;
    --accent-3: #3FB950;
    --border: #30363D;
    --border-light: #21262D;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --sidebar-width: 240px;
    --max-width: 1200px;
}

/* --- Global Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'Nunito Sans', -apple-system, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--fg);
}

p {
    color: var(--fg-muted);
    font-weight: 300;
    font-size: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

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

.section {
    padding: 5rem 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-coral { color: var(--accent-2); }
.text-green { color: var(--accent-3); }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    margin-top: 0.75rem;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

/* --- Header (Terminal-Style Top Bar) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--fg);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.4rem;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.4rem 0.8rem;
    color: var(--fg-muted);
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.nav-link::before {
    content: '[';
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--accent);
}

.nav-link::after {
    content: ']';
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--accent);
}

.nav-link:hover::before,
.nav-link:hover::after,
.nav-link.active::before,
.nav-link.active::after {
    opacity: 1;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
    border-color: var(--border);
    background: var(--bg-card);
}

/* --- Burger Menu --- */
.burger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.4rem;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--accent);
    margin: 4px 0;
    transition: var(--transition-smooth);
}

/* --- Left Sidebar Navigation --- */
.sidebar-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    min-height: 100vh;
    padding-top: 64px;
}

.sidebar-nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - 64px);
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    padding: 2rem 1.25rem;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    transition: height 0.15s ease-out;
}

.sidebar-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fg-muted);
    margin-bottom: 1.25rem;
    padding-left: 0.75rem;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    color: var(--fg-muted);
    border-left: 2px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--accent);
    border-left-color: var(--accent);
    background: rgba(88, 166, 255, 0.05);
}

.sidebar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.sidebar-link.active .sidebar-dot {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.sidebar-main {
    margin-left: var(--sidebar-width);
}

/* --- Scrollytelling Story Panels --- */
.story-container {
    position: relative;
}

.story-bg {
    position: fixed;
    top: 64px;
    left: var(--sidebar-width);
    width: calc(100vw - var(--sidebar-width));
    height: calc(100vh - 64px);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.story-bg.active {
    opacity: 1;
}

.story-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,17,23,0.5) 0%,
        rgba(13,17,23,0.8) 50%,
        rgba(13,17,23,0.95) 100%
    );
}

.story-panel {
    position: relative;
    z-index: 1;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
}

.story-panel-content {
    max-width: 600px;
    background: rgba(22, 27, 34, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
}

.story-panel-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-panel-content p {
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* --- Hero (Terminal-Style) --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,17,23,0.6) 0%,
        rgba(13,17,23,0.85) 60%,
        var(--bg) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    text-align: left;
    font-family: 'Space Grotesk', monospace;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-terminal-bar {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dot.red { background: #FF5F56; }
.terminal-dot.yellow { background: #FFBD2E; }
.terminal-dot.green { background: #27C93F; }

.hero-terminal-text {
    font-size: 0.9rem;
    color: var(--accent);
    line-height: 1.6;
}

.hero-terminal-text .typed-text {
    display: inline;
}

.hero-terminal-text .cursor {
    display: inline-block;
    width: 8px;
    height: 1.1em;
    background: var(--accent);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}

.hero-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.7s 0.3s forwards;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeInUp 0.7s 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--fg-muted);
    max-width: 550px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeInUp 0.7s 0.7s forwards;
}

.hero-btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.7s 0.9s forwards;
}

/* --- Stat Bar (Dashboard Widgets) --- */
.stat-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 140px;
    border-radius: 6px;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(88,166,255,0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--fg);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* --- Glass Panel (Data Cards) --- */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(88,166,255,0.08);
    transform: translateY(-3px);
}

/* --- 4-Column Dashboard Grid --- */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.dashboard-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.widget-header {
    border-top: 3px solid var(--accent);
    padding: 1rem 1.25rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-header.coral { border-top-color: var(--accent-2); }
.widget-header.green { border-top-color: var(--accent-3); }

.widget-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fg-muted);
}

.widget-body {
    padding: 1rem 1.25rem 1.25rem;
}

/* --- Tours (Grid + Modal compatible) --- */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.tour-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.tour-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 24px rgba(88,166,255,0.1);
    transform: translateY(-3px);
}

.tour-image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-image {
    transform: scale(1.05);
}

.tour-provider-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.tour-provider-badge.viator { background-color: #ff5a5f; color: #fff; }
.tour-provider-badge.headout { background-color: #ec1943; color: #fff; }

.tour-price-tag {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    background: var(--bg);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.25rem 0.6rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    z-index: 2;
}

.tour-info { padding: 1.25rem; }

.tour-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
}

.tour-rating { display: flex; align-items: center; gap: 0.2rem; color: #f1c40f; }
.tour-reviews { color: var(--fg-muted); }
.tour-duration { color: var(--fg-muted); }

.tour-features {
    list-style: none;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.tour-features li {
    font-size: 0.8rem;
    color: var(--fg-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.tour-features li::before {
    content: '›';
    color: var(--accent);
    font-weight: 700;
}

.tour-button { width: 100%; }

/* --- Floating Bottom CTA Bar --- */
.bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-cta.visible {
    transform: translateY(0);
}

.bottom-cta-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: var(--fg-muted);
}

/* --- Tours Modal Overlay --- */
.tours-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,17,23,0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.tours-modal-overlay.active {
    display: flex;
}

.tours-modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2rem;
}

.tours-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.tours-modal-close {
    background: none;
    border: 1px solid var(--border);
    color: var(--fg-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.tours-modal-close:hover {
    color: var(--accent-2);
    border-color: var(--accent-2);
}

/* --- Collapsible Detail Panels --- */
.collapsible-panel {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.collapsible-header {
    padding: 1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: var(--fg);
    background: var(--bg-card);
    transition: var(--transition-smooth);
}

.collapsible-header::-webkit-details-marker { display: none; }

.collapsible-header::after {
    content: '▸';
    color: var(--accent);
    transition: transform 0.3s ease;
}

.collapsible-panel[open] .collapsible-header::after {
    transform: rotate(90deg);
}

.collapsible-body {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
}

/* --- Category Filter Bar (Field Notes) --- */
.filter-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--fg-muted);
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(88,166,255,0.08);
}

/* --- Field Notes Blog Cards --- */
.field-notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.field-note-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.field-note-card:hover {
    border-color: var(--accent);
}

.field-note-tags {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.field-note-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.4rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--fg-muted);
}

.field-note-meta {
    font-size: 0.75rem;
    color: var(--fg-muted);
    margin-top: 0.75rem;
}

/* --- Split Section (backward compat) --- */
.split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.split-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.split-image { transition: var(--transition-smooth); }
.split-image-container:hover .split-image { transform: scale(1.03); }

.split-badge {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: rgba(88,166,255,0.08);
    border: 1px solid rgba(88,166,255,0.2);
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.split-content h2 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.split-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.feature-card {
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.feature-icon { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; display: inline-flex; }
.feature-title { font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--fg); }
.feature-desc { font-size: 0.85rem; }

/* --- Transport Grid --- */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.transport-card {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.transport-icon-box {
    background: rgba(88,166,255,0.08);
    border: 1px solid rgba(88,166,255,0.2);
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
}

.transport-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.transport-details {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-top: 1px solid var(--border);
    padding-top: 0.6rem;
}

.transport-detail-item {
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
}

.transport-detail-item span:first-child { color: var(--fg-muted); }
.transport-detail-item span:last-child { font-weight: 500; color: var(--fg); }

/* --- Pricing --- */
.pricing-flex {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.pricing-card {
    flex: 1;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
}

.pricing-card.featured { border-color: var(--accent); }

.pricing-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: var(--bg);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.pricing-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.pricing-title { font-size: 1.5rem; margin-bottom: 0.3rem; }

.pricing-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.pricing-amount span { font-size: 0.85rem; color: var(--fg-muted); font-weight: 300; }

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.pricing-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.pricing-list-check { color: var(--accent-3); font-weight: bold; }

/* --- FAQ --- */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-summary {
    padding: 1rem 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    color: var(--fg);
}

.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after { content: '▸'; color: var(--accent); transition: transform 0.3s ease; }
.faq-item[open] .faq-summary::after { transform: rotate(90deg); }
.faq-item[open] .faq-summary { border-bottom: 1px solid var(--border); color: var(--accent); }

.faq-answer { padding: 1.25rem; }

/* --- Weather Widget --- */
.weather-widget-section {
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.om-weather-widget {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.weather-loading { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--fg-muted); }

.weather-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

.weather-data { width: 100%; display: flex; justify-content: space-around; align-items: center; opacity: 0; animation: fadeIn 0.5s forwards; }
.weather-temp { font-size: 2.5rem; font-weight: 700; color: var(--fg); }
.weather-info { text-align: left; }
.weather-info .city { font-size: 1rem; font-weight: 600; color: var(--accent); }
.weather-info .desc { font-size: 0.8rem; text-transform: capitalize; color: var(--fg-muted); }
.weather-stats { font-size: 0.75rem; color: var(--fg-muted); text-align: right; }

/* --- Map --- */
.map-container {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    height: 400px;
}

/* --- Info Points --- */
.info-points { list-style: none; margin-top: 1.25rem; }
.info-point { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem; }
.info-point-bullet { color: var(--accent); font-weight: bold; font-size: 1rem; margin-top: 0.1rem; }
.info-point-text strong { color: var(--fg); }

/* --- Image Credits --- */
.image-credit {
    font-size: 0.6rem;
    color: var(--fg-muted);
    opacity: 0.4;
    text-align: right;
    margin-top: 0.25rem;
    font-weight: 300;
    transition: var(--transition-smooth);
}
.image-credit a { text-decoration: underline; color: inherit; }
.image-credit:hover { opacity: 1; color: var(--accent); }

/* --- Footer --- */
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
    font-size: 0.85rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo { margin-bottom: 1rem; }

.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--fg);
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--fg-muted); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; color: var(--fg-muted); }
.footer-contact-icon { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    color: var(--fg-muted);
    font-size: 0.75rem;
}

/* --- Keyframes --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { to { opacity: 1; } }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
    .sidebar-layout { grid-template-columns: 1fr; }
    .sidebar-nav { display: none; }
    .sidebar-main { margin-left: 0; }
    .story-bg { left: 0; width: 100vw; }
    .burger { display: block; }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border);
        z-index: 1000;
    }

    .nav-menu.active { left: 0; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; gap: 2rem; }
    .split-content { order: -1; }
    .transport-grid { grid-template-columns: 1fr; }
    .pricing-flex { flex-direction: column; }
    .tours-grid { grid-template-columns: 1fr; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .field-notes-grid { grid-template-columns: 1fr; }
    .stat-bar { grid-template-columns: 1fr; }
    .story-panel { padding: 2rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
}
