.header {
    background-color: #005278 !important;
    position: fixed !important;
}

/* Գլխավոր Banner */
.route-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    margin-top: 80px; /* Header-ի չափով */
}

.route-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,82,120,0.7), rgba(0,0,0,0.4));
}

.route-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.route-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.route-hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Կպչուն (Sticky) Tabs */
.route-tabs {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 80px; /* Կպնում է Header-ի տակ */
    z-index: 100;
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--primary-blue, #005278);
}

.tab-btn.active {
    color: var(--primary-red, #e20001);
    border-bottom-color: var(--primary-red, #e20001);
}

/* Բովանդակություն */
.route-main-content {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: 500px;
}

.tab-section {
    display: none; /* Սկզբում թաքցնում ենք բոլորը */
    animation: fadeIn 0.5s ease;
}

.tab-section.active {
    display: block; /* Ցույց ենք տալիս ակտիվը */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-heading {
    color: var(--primary-blue, #005278);
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.section-desc {
    text-align: center;
    color: #555;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Տեսարժան վայրերի Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.place-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.place-card:hover {
    transform: translateY(-10px);
}

.place-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.place-info {
    padding: 20px;
}

.place-info h3 {
    color: var(--primary-blue, #005278);
    margin-bottom: 10px;
}

.place-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Կանոնների բլոկ */
.rules-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-blue, #005278);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.rules-box ul {
    list-style-type: disc;
    padding-left: 20px;
}

.rules-box li {
    margin-bottom: 15px;
    color: #444;
    font-size: 16px;
}