:root {
    --primary-color: #0056b3;
    --secondary-color: #17a2b8;
    --accent-color: #ffc107;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    background-color: #fff !important;
    border-bottom: 3px solid var(--primary-color);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 2px solid var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0 2rem;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Hero CTA Buttons */
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-hero-primary {
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--accent-color);
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    background-color: #ffca2c;
    border-color: #ffca2c;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.btn-hero-secondary {
    background-color: rgba(255,255,255,0.08);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #ffffff;
    transition: all 0.2s ease;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.content-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-section h3 {
    color: var(--dark-color);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Info Boxes */
.info-box {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

.danger-box {
    background: #f8d7da;
    border-left: 4px solid var(--danger-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 5px 5px 0;
}

/* Price Table */
.price-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 1.5rem 0;
}

.price-table table {
    margin-bottom: 0;
}

.price-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
}

.price-table td {
    padding: 0.75rem 1rem;
}

.price-table tr:nth-child(even) {
    background: var(--light-bg);
}

/* Quick Links */
.quick-links {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    position: sticky;
    top: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.quick-links h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.cta-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover,
.btn-cta-secondary:focus {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Tunnel-Alternative-Box */
.tunnel-alt-box {
    background: #eef4fb;
    border-left: 4px solid var(--secondary-color, #0d6efd);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 6px 6px 0;
}

.tunnel-alt-box h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.tunnel-alt-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.tunnel-alt-link:hover,
.tunnel-alt-link:focus {
    color: var(--secondary-color, #0a58ca);
    border-bottom-color: currentColor;
}

/* Related Links */
.related-links {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.related-links h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.link-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

/* Image styles */
.content-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.content-img.img-float-right {
    max-width: 300px;
    float: right;
    margin-left: 1rem;
}

/* Stay22 Widget */
.stay22-widget {
    border-radius: 8px;
    overflow: hidden;
}

.stay22-iframe {
    border: 0;
}

.img-credit {
    font-size: 0.75rem;
    color: #6c757d;
    text-align: right;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

/* Map */
#map {
    height: 400px;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .price-table {
        overflow-x: auto;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .quick-links {
        position: static;
        margin-bottom: 2rem;
    }

    .content-img.img-float-right {
        float: none;
        max-width: 100%;
        margin-left: 0;
    }

    #map {
        height: 300px;
    }
}

/* Print Styles */
@media print {
    .navbar, .quick-links, .cta-section, footer {
        display: none;
    }

    .content-section {
        box-shadow: none;
        border: 1px solid #000;
        page-break-inside: avoid;
    }
}

/* Accessibility */
.skip-link:focus {
    position: absolute;
    top: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem;
    z-index: 1000;
}
