:root {
    --primary-color: #1a5f4a;
    --primary-dark: #134436;
    --primary-light: #2d7a62;
    --secondary-color: #c9a227;
    --secondary-light: #dbb93a;
    --accent-color: #e8c547;
    --dark-bg: #1a2634;
    --darker-bg: #0f1821;
    --light-bg: #f5f7f4;
    --cream-bg: #faf9f6;
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

p {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 36px;
    height: auto;
    border-radius: 4px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.brand-accent {
    color: var(--secondary-color);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

.navbar-toggler:hover .toggler-line {
    background-color: var(--secondary-color);
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light) !important;
    padding: 10px 18px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.dropdown-menu {
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--text-light);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 400;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.offcanvas {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.offcanvas-title {
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
}

.btn-close {
    filter: invert(1);
}

.offcanvas-body .nav-link {
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas-body .nav-link::after {
    display: none;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 50%, var(--darker-bg) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 38, 52, 0.9) 0%, rgba(26, 95, 74, 0.7) 50%, rgba(15, 24, 33, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--secondary-color);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--text-light);
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid var(--text-light);
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 1.5rem;
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.intro-section {
    background: linear-gradient(180deg, var(--cream-bg) 0%, var(--light-bg) 100%);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.intro-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-feature i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1rem;
}

.intro-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.intro-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.intro-image-badge .number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.intro-image-badge .label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.routes-section {
    background: var(--dark-bg);
    position: relative;
}

.routes-section .section-title,
.routes-section .section-desc {
    color: var(--text-light);
}

.routes-section .section-desc {
    opacity: 0.8;
}

.route-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.route-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
}

.route-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.route-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-card-image img {
    transform: scale(1.1);
}

.route-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--dark-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.route-card-content {
    padding: 25px;
}

.route-card-title {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.route-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.route-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.route-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.route-meta-item i {
    color: var(--secondary-color);
}

.route-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-card-link:hover {
    color: var(--secondary-light);
}

.route-card-link i {
    transition: transform 0.3s ease;
}

.route-card-link:hover i {
    transform: translateX(5px);
}

.tips-section {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--cream-bg) 100%);
}

.tip-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
}

.tip-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    margin-bottom: 20px;
}

.tip-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.tip-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/5e/Lake_Balaton_at_Balatonf%C3%BCred.jpg/1280px-Lake_Balaton_at_Balatonf%C3%BCred.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Lora', serif;
    font-style: italic;
}

.content-section {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.content-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.content-block p {
    color: var(--text-muted);
    line-height: 1.8;
}

.content-block ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-block ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-muted);
}

.content-block ul li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin: 30px 0;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-image figcaption {
    background: var(--light-bg);
    padding: 15px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.info-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.info-box h4 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.info-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.route-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item .value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-item .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Danube_near_Visegr%C3%A1d_2.jpg/1280px-Danube_near_Visegr%C3%A1d_2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-hero p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-intro {
    padding: 80px 0 40px;
    background: var(--cream-bg);
}

.contact-intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-cards-section {
    padding: 40px 0 80px;
    background: var(--cream-bg);
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    margin: 0 auto 25px;
}

.contact-card-icon i {
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
    word-break: break-word;
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.site-footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-light);
}

.footer-icon {
    width: 30px;
    height: auto;
}

.footer-brand .accent {
    color: var(--secondary-color);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.copyright,
.update-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 25px 0;
    z-index: 9998;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-text h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--secondary-color);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.policy-content {
    padding: 80px 0;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--primary-dark);
}

.policy-content p,
.policy-content li {
    color: var(--text-muted);
    line-height: 1.8;
}

.policy-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

.breadcrumb-nav {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 12px;
}

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
}

.sidebar-widget ul li a i {
    color: var(--primary-color);
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image {
        order: -1;
    }
    
    .route-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .intro-image img {
        height: 350px;
    }
    
    .intro-image-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }
    
    .route-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item .value {
        font-size: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .page-hero,
    .contact-hero {
        padding: 140px 0 60px;
    }
    
    .page-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1.2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .route-stats {
        grid-template-columns: 1fr;
    }
}
