@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600&display=swap');

/* --- CSS variables for "Meridian" Brutalist Dashboard Theme --- */
:root {
    --bg: #000000;
    --bg-card: #0A0A0A;
    --bg-elevated: #111111;
    --fg: #F0F0F0;
    --fg-muted: #777777;
    --accent: #CCFF00;
    --accent-hover: #DDFF44;
    --accent-2: #FF3366;
    --accent-3: #00E5FF;
    --border: #333333;
    --border-heavy: #555555;
    --card-shadow: none;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1300px;
}

/* --- 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: 'Work 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-mono {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--fg);
}

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

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

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

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: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

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

.section {
    padding: 4rem 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-pink { color: var(--accent-2); }
.text-cyan { color: var(--accent-3); }
.text-gold { color: var(--accent); }

.section-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.section-title::before {
    content: '// ';
    color: var(--fg-muted);
    font-weight: 300;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 0.75rem;
}

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

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

/* --- Header (Terminal Tab Bar) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg);
    border-bottom: 3px solid var(--accent);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(0,0,0,0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-icon {
    font-size: 1.2rem;
}

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

.nav-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.5rem 0.75rem;
    color: var(--fg-muted);
    text-decoration: none;
    border: 1px solid transparent;
    border-bottom: none;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::before { content: '['; margin-right: 0.15rem; }
.nav-link::after { content: ']'; margin-left: 0.15rem; }

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

/* Glitch hover effect */
.nav-link:hover {
    animation: glitch 0.15s ease;
}

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

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

/* --- Terminal Hero Header --- */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 56px;
}

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

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

.hero-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    margin: 0 auto 2rem;
    text-align: left;
    max-width: 650px;
    font-family: 'JetBrains Mono', monospace;
}

.hero-terminal-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 0.3rem;
}

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

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

.terminal-title {
    font-size: 0.65rem;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-terminal-text {
    font-size: 0.85rem;
    line-height: 1.8;
}

.hero-terminal-text .prompt {
    color: var(--accent);
}

.hero-terminal-text .cmd {
    color: var(--fg);
}

.hero-terminal-text .output {
    color: var(--fg-muted);
}

.hero-terminal-text .highlight {
    color: var(--accent-2);
}

.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-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeInUp 0.5s 0.3s forwards;
}

.hero-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.5s 0.5s forwards;
}

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg);
    box-shadow: 0 0 20px rgba(204,255,0,0.3);
}

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

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(204,255,0,0.15);
}

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

.glass-panel:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(204,255,0,0.05);
    transform: translateY(-2px);
}

/* --- 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);
    overflow: hidden;
}

.widget-stripe {
    height: 3px;
    background: var(--accent);
}

.widget-stripe.pink { background: var(--accent-2); }
.widget-stripe.cyan { background: var(--accent-3); }

.widget-header {
    padding: 0.75rem 1rem 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--fg-muted);
}

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

/* --- Stat Bar --- */
.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* --- Tour Data Table --- */
.tours-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.tours-table thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fg-muted);
    font-weight: 500;
}

.tours-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.tours-table tbody tr:hover {
    background: var(--bg-elevated);
}

.tours-table td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

.tours-table .td-name {
    color: var(--fg);
    font-weight: 500;
    max-width: 300px;
}

.tours-table .td-provider {
    color: var(--accent-2);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.tours-table .td-rating {
    color: #f1c40f;
}

.tours-table .td-price {
    color: var(--accent);
    font-weight: 700;
}

.tours-table .td-action .btn {
    padding: 0.35rem 0.8rem;
    font-size: 0.65rem;
}

/* Also support standard tour card grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.tour-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(204,255,0,0.05);
    transform: translateY(-2px);
}

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

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

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

.tour-provider-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.15rem 0.4rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.tour-provider-badge.viator { background: var(--accent-2); color: #fff; }
.tour-provider-badge.headout { background: #ec1943; color: #fff; }

.tour-price-tag {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: var(--bg);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.2rem 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.tour-info { padding: 1rem; }

.tour-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
    min-height: 2.4rem;
    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.6rem;
    font-size: 0.7rem;
}

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

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

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

.tour-features li::before {
    content: '>';
    color: var(--accent);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.tour-button { width: 100%; }

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

.feature-card {
    padding: 1.5rem;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    transition: var(--transition-smooth);
}

.feature-card:nth-child(2) { border-top-color: var(--accent-2); }
.feature-card:nth-child(3) { border-top-color: var(--accent-3); }

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(204,255,0,0.05);
}

.feature-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: inline-flex; }

.feature-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--fg);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.feature-desc { font-size: 0.8rem; }

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

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

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

.split-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(204,255,0,0.06);
    border: 1px solid rgba(204,255,0,0.2);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.split-content h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.8rem;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.split-content p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

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

.transport-icon-box {
    background: rgba(204,255,0,0.06);
    border: 1px solid rgba(204,255,0,0.15);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.transport-content h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

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

.transport-detail-item {
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
}

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

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

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

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

.pricing-card-badge {
    position: absolute;
    top: -1px;
    right: 1rem;
    background: var(--accent);
    color: var(--bg);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.pricing-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.pricing-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

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

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

.pricing-list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

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

/* --- Intel Briefing (Classified Document Style) --- */
.classified-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.classified-stamp {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-2);
    border: 2px solid var(--accent-2);
    padding: 0.2rem 0.5rem;
    transform: rotate(3deg);
}

.classified-block h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

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

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

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

.faq-summary::before {
    content: '> ';
    color: var(--accent);
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-summary::after {
    content: '[+]';
    color: var(--fg-muted);
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}

.faq-item[open] .faq-summary::after { content: '[-]'; color: var(--accent); }
.faq-item[open] .faq-summary { border-bottom: 1px solid var(--border); color: var(--accent); }

.faq-answer {
    padding: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--fg-muted);
    line-height: 1.7;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    right: -6px;
    background: var(--bg);
    border: 2px solid var(--accent);
    top: 25px;
    z-index: 1;
    /* No border-radius → square dots for brutalist feel */
}

.timeline-left { left: 0; }
.timeline-right { left: 50%; }
.timeline-right::after { left: -6px; }

.timeline-content {
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.timeline-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 0.3rem;
    display: block;
}

.timeline-content h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

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

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

.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);
    animation: spin 1s infinite linear;
    /* Square spinner */
}

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

/* --- Map --- */
.map-container {
    overflow: hidden;
    border: 1px solid var(--border);
    height: 400px;
    filter: grayscale(0.5) contrast(1.2);
}

/* --- Info Points --- */
.info-points { list-style: none; margin-top: 1rem; }
.info-point { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.5rem; }
.info-point-bullet { color: var(--accent); font-weight: bold; font-family: 'JetBrains Mono', monospace; }
.info-point-text strong { color: var(--fg); }

/* --- Image Credits --- */
.image-credit {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    color: var(--fg-muted);
    opacity: 0.35;
    text-align: right;
    margin-top: 0.2rem;
    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);
    border-top: 3px solid var(--accent);
    padding: 3rem 0 1.5rem;
    font-size: 0.85rem;
}

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

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

.footer-heading {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--accent);
    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.4rem; }
.footer-links a { color: var(--fg-muted); font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item { display: flex; gap: 0.5rem; margin-bottom: 0.4rem; color: var(--fg-muted); font-size: 0.8rem; }
.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-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- 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; }
}

@keyframes glitch {
    0% { clip-path: inset(0 0 0 0); }
    25% { clip-path: inset(10% 0 60% 0); transform: translateX(-2px); }
    50% { clip-path: inset(40% 0 20% 0); transform: translateX(2px); }
    75% { clip-path: inset(70% 0 5% 0); transform: translateX(-1px); }
    100% { clip-path: inset(0 0 0 0); transform: translateX(0); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-bar { grid-template-columns: repeat(2, 1fr); }
    .burger { display: block; }

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

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

    .tours-table { font-size: 0.7rem; }
    .tours-table td, .tours-table th { padding: 0.5rem 0.6rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 1.8rem; word-break: break-word; }
    .section-title { font-size: 1.5rem; word-break: break-word; }
    .features-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; gap: 1.5rem; }
    .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; }
    .stat-bar { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }

    /* Hide table on very small screens, show card view */
    .tours-table-wrapper { overflow-x: auto; }

    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 22px; }
    .timeline-right { left: 0%; }
}
