﻿.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px
}

.route-divider {
    height: 2px;
    opacity: .25
}

.kv {
    display: flex;
    gap: .5rem;
    align-items: center
}

    .kv .k {
        min-width: 160px;
        color: #6c757d
    }

.badge-soft {
    --bs-bg-opacity: .15
}

    .badge-soft.bg-success {
        background-color: rgba(25,135,84,.15) !important;
        color: #198754
    }

    .badge-soft.bg-warning {
        background-color: rgba(255,193,7,.2) !important;
        color: #664d03
    }

    .badge-soft.bg-danger {
        background-color: rgba(220,53,69,.15) !important;
        color: #dc3545
    }

    .badge-soft.bg-secondary {
        background-color: rgba(108,117,125,.15) !important;
        color: #6c757d;
    }

@media print {
    /* Renkler */
    body {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

        /* Önce her şeyi gizle */
        body * {
            visibility: hidden !important;
        }

    /* Sadece içerik alanını görünür yap */
    #printArea, #printArea * {
        visibility: visible !important;
    }

    #printArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    /* Layout elemanlarını kesin gizle (display + visibility) */
    header, #header, .header, .header-body, .sticky-header,
    footer, #footer, .footer, .footer-copyright,
    nav, .navbar, .main-nav, .breadcrumb, .page-header,
    .top-bar, .sidebar, .scroll-to-top, .back-to-top,
    .cookiebar, .cookie-notice, .modal, .offcanvas,
    .card-header, .card-footer, .toolbar, .page-title,
    .no-print {
        display: none !important;
        visibility: hidden !important;
    }

    /* Kart gölgelerini kaldır */
    .card {
        box-shadow: none !important;
    }
}

/* Razor içinde @page yazmak için @@page kullanılır */
@page {
    margin: 12mm;
}

/* =============================================
   DETAIL PAGES - VipTime Design
   (Transfer Route & Page/Article Details)
   ============================================= */

/* Hero Section */
.vt-page-hero {
    background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
    padding: 4rem 0 3rem;
    position: relative;
}

.vt-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: .85rem;
}

.vt-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .2s;
}

.vt-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.vt-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, .6);
}

.vt-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

.vt-page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0 .5rem;
    line-height: 1.2;
}

.vt-page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

/* Article Card */
.vt-article-card {
    background: #fff;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border: 1px solid #e2e8f0;
}

.vt-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: .9rem;
    color: #64748b;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.vt-article-meta time,
.vt-article-meta .vt-article-author {
    display: flex;
    align-items: center;
}

.vt-article-meta i {
    color: var(--primary, #0891b2);
}

.vt-article-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.vt-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.vt-article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
}

.vt-article-content h2,
.vt-article-content h3,
.vt-article-content h4 {
    color: #1e293b;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.vt-article-content h2 {
    font-size: 1.75rem;
}

.vt-article-content h3 {
    font-size: 1.5rem;
}

.vt-article-content h4 {
    font-size: 1.25rem;
}

.vt-article-content p {
    margin-bottom: 1.25rem;
}

.vt-article-content ul,
.vt-article-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.vt-article-content li {
    margin-bottom: .5rem;
}

.vt-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.vt-article-content a {
    color: var(--primary, #0891b2);
    text-decoration: underline;
    transition: color .2s;
}

.vt-article-content a:hover {
    color: var(--secondary, #0e7490);
}

.vt-article-share {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.vt-article-share strong {
    color: #1e293b;
}

/* Sidebar CTA */
.vt-sidebar-cta {
    margin-top: 1.5rem;
}

.vt-sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary, #0891b2), var(--secondary, #0e7490));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s, box-shadow .25s;
}

.vt-sidebar-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 145, 178, .3);
}

/* Transfer Route Specific Styles */
.pricing-highlight {
    background: linear-gradient(135deg, rgba(8,145,178,.05), rgba(6,182,212,.08)) !important;
    border: 1px solid rgba(8,145,178,.2);
}

.location-content .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.location-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.location-content h3 i {
    color: var(--primary, #0891b2);
    margin-right: .5rem;
}

.location-content ul {
    list-style: none;
    padding-left: 0;
}

.location-content ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.location-content ul li i.bi-arrow-right {
    position: absolute;
    left: 0;
    top: .25rem;
    color: var(--primary, #0891b2);
}

.location-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1rem;
}

/* CTA Box for Transfer Routes */
.bg-primary.border-radius-2 {
    background: linear-gradient(135deg, var(--primary, #0891b2), var(--secondary, #0e7490)) !important;
    border-radius: 18px !important;
}

/* FAQ Accordion in Transfer Route */
.custom-accordion-style-1 .card {
    border: 0;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
}

.custom-accordion-style-1 .card:last-child {
    border-bottom: 0;
}

.custom-accordion-style-1 .card-header {
    background: transparent;
    border: 0;
    padding: 0;
}

.custom-accordion-style-1 .accordion-toggle {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: color .2s;
}

.custom-accordion-style-1 .accordion-toggle:not(.collapsed) {
    color: var(--primary, #0891b2);
}

.custom-accordion-style-1 .card-body {
    padding: 0 0 1.5rem 0;
    font-size: .95rem;
    line-height: 1.7;
    color: #64748b;
}

/* Responsive */
@media (max-width: 767.98px) {
    .vt-page-hero-title {
        font-size: 2rem;
    }

    .vt-article-card {
        padding: 1.5rem;
    }

    .vt-article-meta {
        gap: 1rem;
    }

    .vt-article-content {
        font-size: .95rem;
    }

    .vt-article-content h2 {
        font-size: 1.5rem;
    }

    .vt-article-content h3 {
        font-size: 1.25rem;
    }

    .vt-article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
