:root {
    --primary: #005D8A;
    --primary-dark: #00456B;
    --secondary: #FFC107;
    --secondary-dark: #E6AD00;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --white: #FFFFFF;
    --success: #28A745;
    --blue-accent: #0074D9;
}

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

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

.site-header .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.site-header .nav-link:hover {
    background-color: var(--light-gray);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3.5rem 0;
    position: relative;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.hero p.lead {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 1.5rem;
}

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

.hero .breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.hero .breadcrumb-item.active {
    color: rgba(255,255,255,0.6);
}

.hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* TOC */
.toc {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

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

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

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

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

.toc a:hover {
    text-decoration: underline;
}

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

.content-section h2 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--secondary);
    font-size: 1.6rem;
}

.content-section h3 {
    color: var(--primary);
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 1.5rem 0;
}

.pricing-table th {
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table tr:nth-child(even) {
    background-color: #e8f2fb;
}

.pricing-table td {
    padding: 0.85rem 1rem;
    border-top: 1px solid var(--light-gray);
}

.price-value {
    font-weight: 700;
    color: var(--primary);
}

/* Season Table */
.season-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 1.5rem 0;
}

.season-table th {
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.season-table td {
    padding: 0.85rem 1rem;
    border-top: 1px solid var(--light-gray);
}

.season-low { background-color: #d4edda; }
.season-mid { background-color: #fff3cd; }
.season-high { background-color: #f8d7da; }

/* Ticket Cards */
.ticket-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.ticket-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-green { background-color: #d4edda; color: #155724; }
.badge-blue { background-color: #e8f2fb; color: var(--primary); }
.badge-orange { background-color: #fff3cd; color: #856404; }

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 1.75rem;
}

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

/* Tip Cards */
.tip-card {
    display: flex;
    margin-bottom: 1.25rem;
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.tip-number {
    background-color: var(--secondary);
    color: var(--dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.tip-content h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

/* Info Card */
.info-card {
    background-color: #e8f2fb;
    border-left: 4px solid var(--primary);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

.info-card h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* FAQ */
.accordion-item {
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--light);
    color: var(--primary);
    font-weight: 600;
    padding: 1.1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: #e8f2fb;
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
}

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

/* Hero Image */
.hero-img {
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Internal Links */
.internal-links a {
    display: inline-block;
    margin: 0.25rem 0.5rem 0.25rem 0;
    padding: 0.5rem 1rem;
    background-color: #e8f2fb;
    color: var(--primary);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.internal-links a:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 3rem 2.5rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
}

.cta-section h2 {
    color: white;
    border-bottom: none;
    padding-bottom: 0;
}

/* Map */
#map {
    height: 400px;
    border-radius: 0.75rem;
    z-index: 1;
}

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

.site-footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.site-footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 0.4rem;
}

.footer-links ul li a {
    font-size: 0.9rem;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 1000;
    border: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero h1 { font-size: 1.8rem; }
    .content-section { padding: 2rem 1.5rem; }
}

@media (max-width: 767.98px) {
    .hero { padding: 2.5rem 0; }
    .hero h1 { font-size: 1.5rem; }
    .content-section { padding: 1.5rem 1rem; }
    .tip-card { flex-direction: column; }
    .tip-number { margin-right: 0; margin-bottom: 0.75rem; }
    #map { height: 300px; }
}

@media (max-width: 575.98px) {
    .pricing-table th,
    .pricing-table td,
    .season-table th,
    .season-table td {
        padding: 0.65rem 0.5rem;
        font-size: 0.875rem;
    }
}
