:root {
    --primary: #002868;
    --primary-dark: #001A4A;
    --accent: #EF2B2D;
    --accent-dark: #C41E20;
    --success: #28A745;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --border: #DEE2E6;
    --white: #FFFFFF;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    line-height: 1.7;
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-header .navbar-brand {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.4rem;
}

.site-header .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--primary);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(0,40,104,0.92) 0%, rgba(239,43,45,0.85) 100%),
                url('../images/geirangerfjord-norwegen.webp') center/cover;
    color: var(--white);
    padding: 4rem 0 3rem;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
    background: transparent;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Route Stats */
.route-stats {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
    border-top: 4px solid var(--accent);
}

.stat-box {
    text-align: center;
    padding: 1rem;
}

.stat-box i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* TOC */
.toc {
    background: var(--light);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.toc h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.toc ol {
    margin: 0;
    padding-left: 1.2rem;
}

.toc li {
    margin-bottom: 0.4rem;
}

.toc a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.toc a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Section Headings */
.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

/* Day Cards */
.day-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.day-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.day-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.day-route {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.day-route i { color: var(--accent); }

.distance-badge {
    background: var(--light);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-left: auto;
    font-weight: 500;
    color: var(--gray);
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.highlights-list li {
    padding: 0.35rem 0 0.35rem 1.5rem;
    position: relative;
}

.highlights-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Image Cards */
.route-image {
    border-radius: 10px;
    overflow: hidden;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.route-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.route-image figcaption {
    padding: 0.5rem 1rem;
    background: var(--light);
    font-size: 0.8rem;
    color: var(--gray);
}

/* Tips Box */
.tip-box {
    background: linear-gradient(135deg, #FFF9C4, var(--white));
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #FFD54F;
}

.tip-box h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Cost Table */
.cost-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cost-table thead {
    background: var(--primary);
    color: var(--white);
}

.cost-table th { padding: 0.75rem 1rem; font-weight: 600; }
.cost-table td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--border); }

.cost-total {
    background: var(--light);
    font-weight: 700;
    font-size: 1.05rem;
}

/* Map */
#route-map {
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

/* FAQ */
.faq-section .accordion-button {
    font-weight: 600;
    color: var(--primary);
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(0,40,104,0.05);
    color: var(--primary);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--primary);
}

/* Footer */
footer {
    background: #1a2d42;
    color: var(--white);
    padding: 3rem 0 1rem;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover { color: var(--white); }

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2E86AB 0%, #1B4965 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(27,73,101,0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 2.5rem 0 2rem; }
    .hero h1 { font-size: 1.6rem; }
    .route-stats { margin-top: -1.5rem; padding: 1rem; }
    .day-route { flex-direction: column; align-items: flex-start; }
    .distance-badge { margin-left: 0; }
    .route-image img { height: 200px; }
    #route-map { height: 300px; }
    .sticky-cta { bottom: 10px; right: 10px; padding: 0.75rem 1rem; font-size: 0.9rem; }
}

/* Print */
@media print {
    .site-header, footer, .cta-section, .sticky-cta, #route-map { display: none; }
    .day-card { page-break-inside: avoid; }
}
